A.S.R.S.
\ +Automatic Storage Retrieval System
\ +Audit Log
\ +Time | +User | +Source | +Order | +
---|---|---|---|
[req_order.time] | +[req_order.user] | +[req_order.title] | +[req_order.details] | +
[P.name] |
Contents
\Survivors | PP | " dat += "
Aliens | PP | " dat += "
Survivors | ||
Potency | [grown_seed.potency] |
Not loadable: some tiles are missing their turfs or areas.
" - if(bad_paths.len) + if(length(bad_paths)) html += "Bad paths:
Bad keys:
[GLOB.tagger_locations[i]] | " if (i%4==0) diff --git a/code/modules/shuttle/computer.dm b/code/modules/shuttle/computer.dm index 2b3407fa9414..a8ca94ba0aa5 100644 --- a/code/modules/shuttle/computer.dm +++ b/code/modules/shuttle/computer.dm @@ -364,9 +364,14 @@ icon_state = "terminal" req_access = list() breakable = FALSE + unslashable = TRUE + unacidable = TRUE ///If true, the lifeboat is in the process of launching, and so the code will not allow another launch. var/launch_initiated = FALSE +/obj/structure/machinery/computer/shuttle/lifeboat/ex_act(severity) + return + /obj/structure/machinery/computer/shuttle/lifeboat/attack_hand(mob/user) . = ..() var/obj/docking_port/mobile/crashable/lifeboat/lifeboat = SSshuttle.getShuttle(shuttleId) @@ -382,7 +387,13 @@ return var/mob/living/carbon/human/human_user = user - if(!(ACCESS_MARINE_SENIOR in human_user.wear_id?.access) && !(ACCESS_MARINE_DROPSHIP in human_user.wear_id?.access)) + var/obj/item/card/id/card = human_user.get_idcard() + + if(!card) + to_chat(user, SPAN_NOTICE("[src]'s screen says \"Unauthorized access. Please inform your supervisor\".")) + return + + if(!(ACCESS_MARINE_SENIOR in card.access) && !(ACCESS_MARINE_DROPSHIP in card.access)) to_chat(user, SPAN_NOTICE("[src]'s screen says \"Unauthorized access. Please inform your supervisor\".")) return diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm index 08a35b83071d..a28f65ce475d 100644 --- a/code/modules/shuttle/computers/dropship_computer.dm +++ b/code/modules/shuttle/computers/dropship_computer.dm @@ -314,7 +314,7 @@ var/original_evilution = hive.evolution_bonus hive.override_evilution(XENO_HIJACK_EVILUTION_BUFF, TRUE) if(hive.living_xeno_queen) - var/datum/action/xeno_action/onclick/grow_ovipositor/ovi_ability = get_xeno_action_by_type(hive.living_xeno_queen, /datum/action/xeno_action/onclick/grow_ovipositor) + var/datum/action/xeno_action/onclick/grow_ovipositor/ovi_ability = get_action(hive.living_xeno_queen, /datum/action/xeno_action/onclick/grow_ovipositor) ovi_ability.reduce_cooldown(ovi_ability.xeno_cooldown) addtimer(CALLBACK(hive, TYPE_PROC_REF(/datum/hive_status, override_evilution), original_evilution, FALSE), XENO_HIJACK_EVILUTION_TIME) diff --git a/code/modules/shuttle/docking.dm b/code/modules/shuttle/docking.dm index aa9f4d6ad470..df89ee5bdf42 100644 --- a/code/modules/shuttle/docking.dm +++ b/code/modules/shuttle/docking.dm @@ -64,7 +64,7 @@ var/list/new_hidden_turfs if(hidden) new_hidden_turfs = list() - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) CHECK_TICK var/turf/oldT = old_turfs[i] if(old_turfs[oldT] & MOVE_TURF) @@ -135,7 +135,7 @@ old_turfs[oldT] = move_mode /obj/docking_port/mobile/proc/takeoff(list/old_turfs, list/new_turfs, list/moved_atoms, rotation, movement_direction, old_dock, area/underlying_old_area) - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) var/turf/oldT = old_turfs[i] var/turf/newT = new_turfs[i] var/move_mode = old_turfs[oldT] @@ -162,12 +162,12 @@ var/new_parallax_dir = FALSE if(istype(new_dock, /obj/docking_port/stationary/transit)) new_parallax_dir = preferred_direction - for(var/i in 1 to areas_to_move.len) + for(var/i in 1 to length(areas_to_move)) CHECK_TICK var/area/internal_area = areas_to_move[i] internal_area.afterShuttleMove(new_parallax_dir) //areas - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) CHECK_TICK if(!(old_turfs[old_turfs[i]] & MOVE_TURF)) continue @@ -175,7 +175,7 @@ var/turf/newT = new_turfs[i] newT.afterShuttleMove(oldT, rotation) //turfs - for(var/i in 1 to moved_atoms.len) + for(var/i in 1 to length(moved_atoms)) CHECK_TICK var/atom/movable/moved_object = moved_atoms[i] if(QDELETED(moved_object)) @@ -187,12 +187,12 @@ underlying_old_area.lateShuttleMove() - for(var/i in 1 to areas_to_move.len) + for(var/i in 1 to length(areas_to_move)) CHECK_TICK var/area/internal_area = areas_to_move[i] internal_area.lateShuttleMove() - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) CHECK_TICK if(!(old_turfs[old_turfs[i]] & MOVE_CONTENTS | MOVE_TURF)) continue @@ -200,7 +200,7 @@ var/turf/newT = new_turfs[i] newT.lateShuttleMove(oldT) - for(var/i in 1 to moved_atoms.len) + for(var/i in 1 to length(moved_atoms)) CHECK_TICK var/atom/movable/moved_object = moved_atoms[i] if(QDELETED(moved_object)) diff --git a/code/modules/shuttle/on_move.dm b/code/modules/shuttle/on_move.dm index 7a9f032be444..934e3c353618 100644 --- a/code/modules/shuttle/on_move.dm +++ b/code/modules/shuttle/on_move.dm @@ -64,7 +64,7 @@ All ShuttleMove procs go here var/shuttle_boundary = baseturfs.Find(/turf/baseturf_skipover/shuttle) if(!shuttle_boundary) CRASH("A turf queued to move via shuttle somehow had no skipover in baseturfs. [src]([type]):[loc]") - var/depth = baseturfs.len - shuttle_boundary + 1 + var/depth = length(baseturfs) - shuttle_boundary + 1 newT.CopyOnTop(src, 1, depth, TRUE) return TRUE @@ -76,7 +76,7 @@ All ShuttleMove procs go here var/shuttle_boundary = baseturfs.Find(/turf/baseturf_skipover/shuttle) if(shuttle_boundary) - oldT.ScrapeAway(baseturfs.len - shuttle_boundary + 1) + oldT.ScrapeAway(length(baseturfs) - shuttle_boundary + 1) if(rotation) shuttleRotate(rotation) //see shuttle_rotate.dm diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index fc4b0ccd2ee9..4a990ea7d1ae 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -469,13 +469,13 @@ . = ..() if(!id) - id = "[SSshuttle.mobile.len]" + id = "[length(SSshuttle.mobile)]" if(name == "shuttle") - name = "shuttle[SSshuttle.mobile.len]" + name = "shuttle[length(SSshuttle.mobile)]" shuttle_areas = list() var/list/all_turfs = return_ordered_turfs(x, y, z, dir) - for(var/i in 1 to all_turfs.len) + for(var/i in 1 to length(all_turfs)) var/turf/curT = all_turfs[i] var/area/cur_area = get_area(curT) if(istype(cur_area, area_type)) @@ -693,7 +693,7 @@ if(!underlying_area) underlying_area = new underlying_area_type(null) - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) var/turf/oldT = old_turfs[i] if(!oldT || !istype(oldT.loc, area_type)) continue @@ -706,7 +706,7 @@ var/list/baseturf_cache = oldT.baseturfs for(var/k in 1 to length(baseturf_cache)) if(ispath(baseturf_cache[k], /turf/baseturf_skipover/shuttle)) - oldT.ScrapeAway(baseturf_cache.len - k + 1) + oldT.ScrapeAway(length(baseturf_cache) - k + 1) break qdel(src, force=TRUE) @@ -745,7 +745,7 @@ var/list/ripple_turfs = list() - for(var/i in 1 to L0.len) + for(var/i in 1 to length(L0)) var/turf/T0 = L0[i] var/turf/T1 = L1[i] if(!T0 || !T1) @@ -819,7 +819,7 @@ set_idle() /obj/docking_port/mobile/proc/check_effects() - if(!ripples.len) + if(!length(ripples)) if((mode == SHUTTLE_PREARRIVAL)) var/tl = timeLeft(1) if(tl <= SHUTTLE_RIPPLE_TIME) diff --git a/code/modules/shuttle/shuttle_rotate.dm b/code/modules/shuttle/shuttle_rotate.dm index e8e93a040889..b78ea85c7c3c 100644 --- a/code/modules/shuttle/shuttle_rotate.dm +++ b/code/modules/shuttle/shuttle_rotate.dm @@ -25,6 +25,14 @@ If ever any of these procs are useful for non-shuttles, rename it to proc/rotate pixel_x = oldPY pixel_y = (oldPX*(-1)) + +/* ***********************************Object rotate procs*********************************** */ + +/obj/vehicle/multitile/shuttleRotate(rotation, params) + params &= ~ROTATE_OFFSET + return ..() + + /* ***********************************Turf rotate procs*********************************** */ /turf/closed/mineral/shuttleRotate(rotation, params) diff --git a/code/modules/shuttles/marine_ferry.dm b/code/modules/shuttles/marine_ferry.dm index 14787fccb388..bd4a08716954 100644 --- a/code/modules/shuttles/marine_ferry.dm +++ b/code/modules/shuttles/marine_ferry.dm @@ -44,7 +44,7 @@ if(!LAZYLEN(locs_land)) return TRUE - if(!main_doors.len && !controls.len) + if(!length(main_doors) && !length(controls)) var/turf/T_src = pick(locs_dock) var/list/turfs = get_shuttle_turfs(T_src, info_datums) for(var/turf/T in turfs) @@ -164,7 +164,7 @@ var/int_rot = locs_move[T_int] var/turf/T_trg var/trg_rot - if(!locs_land.len) // We check here as well to make sure that the order of operations/lag/changing it after launch. Wont mess this up. + if(!length(locs_land)) // We check here as well to make sure that the order of operations/lag/changing it after launch. Wont mess this up. transit_gun_mission = 1 if(transit_gun_mission)//gun mission makes you land back where you started. @@ -349,7 +349,7 @@ for(var/turf/TU in SSoldshuttle.shuttle_controller.locs_crash[target_section]) if(istype(get_area(TU), /area/almayer/hallways/hangar)) crash_turfs += TU - if(crash_turfs.len) T_trg = pick(crash_turfs) + if(length(crash_turfs)) T_trg = pick(crash_turfs) else message_admins("no crash turf found in Almayer Hangar, contact coders.") break diff --git a/code/modules/shuttles/shuttle_console.dm b/code/modules/shuttles/shuttle_console.dm index 0e9303d13583..502d7c1ffde4 100644 --- a/code/modules/shuttles/shuttle_console.dm +++ b/code/modules/shuttles/shuttle_console.dm @@ -238,7 +238,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls) return if(istype(shuttle, /datum/shuttle/ferry/marine)) var/datum/shuttle/ferry/marine/s = shuttle - if(!s.locs_land.len && !s.transit_gun_mission) + if(!length(s.locs_land) && !s.transit_gun_mission) to_chat(usr, SPAN_WARNING("There is no suitable LZ for this shuttle. Flight configuration changed to fire-mission.")) s.transit_gun_mission = 1 if(shuttle.moving_status == SHUTTLE_IDLE) //Multi consoles, hopefully this will work diff --git a/code/modules/surgery/face.dm b/code/modules/surgery/face.dm deleted file mode 100644 index 7d13c0ed5675..000000000000 --- a/code/modules/surgery/face.dm +++ /dev/null @@ -1,174 +0,0 @@ -//Procedures in this file: Facial reconstruction surgery -////////////////////////////////////////////////////////////////// -// FACE SURGERY // -////////////////////////////////////////////////////////////////// - -/datum/surgery/face_fix - name = "Facial Reconstruction" - possible_locs = list("mouth") - invasiveness = list(SURGERY_DEPTH_SURFACE) - pain_reduction_required = PAIN_REDUCTION_HEAVY - required_surgery_skill = SKILL_SURGERY_TRAINED - steps = list( - /datum/surgery_step/facial_incision, - /datum/surgery_step/mend_vocals, - /datum/surgery_step/pull_skin, - /datum/surgery_step/cauterize/close_facial_incision, - ) - -/datum/surgery/face_fix/can_start(mob/user, mob/living/carbon/patient, obj/limb/L, obj/item/tool) - var/obj/limb/head/H = L - return H && H.disfigured - -//------------------------------------ - -/datum/surgery_step/facial_incision - name = "Make Facial Incision" - desc = "make facial incisions" - tools = SURGERY_TOOLS_INCISION - time = 4 SECONDS - -/datum/surgery_step/facial_incision/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start to cut open [target]'s face and neck with \the [tool]."), - SPAN_NOTICE("[user] starts to cut open your face and neck with \the [tool]."), - SPAN_NOTICE("[user] starts to cut open [target]'s face and neck with \the [tool].")) - - log_interact(user, target, "[key_name(user)] began to cut open [key_name(target)]'s face and neck with \the [tool].") - target.custom_pain("Your face is being cut apart!", 1) - -/datum/surgery_step/facial_incision/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You finish opening incisions on [target]'s face and neck."), - SPAN_NOTICE("[user] finishes opening incisions on your face and neck."), - SPAN_NOTICE("[user] finishes opening incisions on [target]'s face and neck.")) - - target.incision_depths[target_zone] = SURGERY_DEPTH_SHALLOW - log_interact(user, target, "[key_name(user)] cut open [key_name(target)]'s face and neck with \the [tool].") - -/datum/surgery_step/facial_incision/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_DANGER("Your hand slips, slicing [target]'s throat wth \the [tool]!"), - SPAN_DANGER("[user]'s hand slips, slicing [target]'s throat wth \the [tool]!"), - SPAN_DANGER("[user]'s hand slips, slicing [target]'s throat wth \the [tool]!")) - - log_interact(user, target, "[key_name(user)] failed to cut open [key_name(target)]'s face and neck with \the [tool].") - - target.apply_damage(40, BRUTE, target_zone) - target.losebreath += 20 - user.add_blood(target.get_blood_color(), BLOOD_BODY|BLOOD_HANDS) - return FALSE - -//------------------------------------ - -/datum/surgery_step/mend_vocals - name = "Mend Vocal Cords" - desc = "mend the vocal cords" - tools = SURGERY_TOOLS_PINCH - time = 3 SECONDS - -/datum/surgery_step/mend_vocals/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start mending [target]'s vocal cords with \the [tool]."), - SPAN_NOTICE("[user] starts to mend your vocal cords with \the [tool]."), - SPAN_NOTICE("[user] starts to mend [target]'s vocal cords with \the [tool].")) - - log_interact(user, target, "[key_name(user)] began to mend [key_name(target)]'s vocal cords with \the [tool].") - target.custom_pain("The insides of your throat are being pinched and pulled at!", 1) - -/datum/surgery_step/mend_vocals/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You mend [target]'s vocal cords."), - SPAN_NOTICE("[user] mends your vocal cords."), - SPAN_NOTICE("[user] mends [target]'s vocal cords.")) - - log_interact(user, target, "[key_name(user)] mended [key_name(target)]'s vocal cords with \the [tool].") - -/datum/surgery_step/mend_vocals/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, clamping [user]'s trachea shut for a moment with \the [tool]!"), - SPAN_DANGER("[user]'s hand slips, clamping your trachea shut for a moment with \the [tool]!"), - SPAN_WARNING("[user]'s hand slips, clamping [target]'s trachea shut for a moment with \the [tool]!")) - - log_interact(user, target, "[key_name(user)] failed to mend [key_name(target)]'s vocal cords with \the [tool].") - - target.losebreath += 10 - return FALSE - -//------------------------------------ - -/datum/surgery_step/pull_skin - name = "Reconstruct Facial Features" - desc = "reconstruct the face" - tools = SURGERY_TOOLS_PRY_DELICATE - time = 3 SECONDS - -/datum/surgery_step/pull_skin/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start pulling the skin on [target]'s face back into shape with \the [tool]."), - SPAN_NOTICE("[user] starts to pull the skin on your face back into shape with \the [tool]."), - SPAN_NOTICE("[user] starts to pull the skin on [target]'s face back into shape with \the [tool].")) - - log_interact(user, target, "[key_name(user)] began to pull the skin on [key_name(target)]'s face back in place with \the [tool].") - target.custom_pain("Your face hurts!", 1) - -/datum/surgery_step/pull_skin/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You reconstruct [target]'s facial features."), - SPAN_NOTICE("[user] reconstructs your facial features."), - SPAN_NOTICE("[user] reconstructs [target]'s facial features.")) - - log_interact(user, target, "[key_name(user)] pulled the skin on [key_name(target)]'s face back in place with \the [tool].") - -/datum/surgery_step/pull_skin/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, tearing skin on [target]'s face with \the [tool]!"), - SPAN_WARNING("[user]'s hand slips, tearing skin on your face with \the [tool]!"), - SPAN_WARNING("[user]'s hand slips, tearing skin on [target]'s face with \the [tool]!")) - - log_interact(user, target, "[key_name(user)] failed to pull the skin on [key_name(target)]'s face back in place with \the [tool].") - - target.apply_damage(10, BRUTE, target_zone) - return FALSE - -//------------------------------------ - -/datum/surgery_step/cauterize/close_facial_incision - name = "Close Facial Incisions" - desc = "close the facial incisions" - time = 5 SECONDS - -/datum/surgery_step/cauterize/close_facial_incision/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You begin to cauterize the incisions on [target]'s face and neck with \the [tool]."), - SPAN_NOTICE("[user] begins to cauterize the incisions on your face and neck with \the [tool]."), - SPAN_NOTICE("[user] begins to cauterize the incisions on [target]'s face and neck with \the [tool].")) - - target.custom_pain("Your face is being burned!", 1) - - log_interact(user, target, "[key_name(user)] began to cauterize [key_name(target)]'s face and neck with \the [tool].") - -/datum/surgery_step/cauterize/close_facial_incision/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You cauterize the incisions on [target]'s face and neck."), - SPAN_NOTICE("[user] cauterizes the incisions on your face and neck."), - SPAN_NOTICE("[user] cauterizes the incision on [target]'s face and neck.")) - - log_interact(user, target, "[key_name(user)] cauterized [key_name(target)]'s face and neck with \the [tool], ending [surgery].") - - target.incision_depths[target_zone] = SURGERY_DEPTH_SURFACE - surgery.affected_limb.remove_all_bleeding(TRUE) - var/obj/limb/head/H = surgery.affected_limb - H.disfigured = FALSE - H.owner.name = H.owner.get_visible_name() - -/datum/surgery_step/cauterize/close_facial_incision/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, leaving a small burn on [target]'s face!"), - SPAN_WARNING("[user]'s hand slips, leaving a small burn on your face!"), - SPAN_WARNING("[user]'s hand slips, leaving a small burn on [target]'s face!")) - - log_interact(user, target, "[key_name(user)] failed to cauterize [key_name(target)]'s face and neck with \the [tool].") - - target.apply_damage(5, BURN, target_zone) - return FALSE diff --git a/code/modules/surgery/surgery_initiator.dm b/code/modules/surgery/surgery_initiator.dm index 706b28d0e94e..1158088e83e6 100644 --- a/code/modules/surgery/surgery_initiator.dm +++ b/code/modules/surgery/surgery_initiator.dm @@ -7,7 +7,6 @@ /proc/initiate_surgery_moment(obj/item/tool, mob/living/carbon/target, obj/limb/affecting, mob/living/user) if(!tool && !(affecting.status & LIMB_UNCALIBRATED_PROSTHETIC)) return FALSE - var/target_zone = user.zone_selected var/list/available_surgeries = list() var/list/valid_steps = list() //Steps that could be performed, if we had the right tool. @@ -45,6 +44,7 @@ //Lying and self-surgery checks. if(surgeryloop.lying_required && target.body_position != LYING_DOWN) continue + if(!surgeryloop.self_operable && target == user) continue @@ -58,12 +58,16 @@ if(affecting.status & LIMB_DESTROYED) continue else - if(!(affecting.status & LIMB_DESTROYED)) - continue - if(affecting.parent && affecting.parent.status & LIMB_DESTROYED) - continue + if(ishuman(target))//otherwise breaks when trying to op xeno + if(!(affecting.status & LIMB_DESTROYED) && ishuman(target)) + continue + + if(affecting.parent && affecting.parent.status & LIMB_DESTROYED && ishuman(target)) + continue + if(surgeryloop.requires_bodypart_type && !(affecting.status & surgeryloop.requires_bodypart_type)) continue + else if(surgeryloop.requires_bodypart) //mob with no limb in surgery zone when we need a limb continue @@ -71,7 +75,6 @@ if(!surgeryloop.can_start(user, target, affecting, tool)) continue - //Tool checks. var/datum/surgery_step/current_step = GLOB.surgery_step_list[surgeryloop.steps[1]] @@ -84,9 +87,7 @@ continue else continue - available_surgeries[surgeryloop.name] = surgeryloop //Add it to the list. - if(!length(available_surgeries)) if(!tool) return FALSE @@ -96,15 +97,16 @@ to_chat(user, SPAN_WARNING("You can't perform surgery on the same \ [target_zone == "r_hand"||target_zone == "l_hand" ? "hand":"arm"] you're using!")) return FALSE - if(!length(valid_steps)) - var/limbname = affecting?.status & LIMB_DESTROYED ? "the stump of [target]'s [affecting.display_name]" : "[target]'s [parse_zone(target_zone)]" - if(target.incision_depths[target_zone] != SURGERY_DEPTH_SURFACE) - to_chat(user, SPAN_WARNING("You don't know of any operations you could perform in the [target.incision_depths[target_zone]] incision on [limbname].")) - else - to_chat(user, SPAN_WARNING("You don't know of any operations you could begin on [limbname].")) - return FALSE - + if(ishuman(target)) + var/limbname = affecting?.status & LIMB_DESTROYED ? "the stump of [target]'s [affecting.display_name]" : "[target]'s [parse_zone(target_zone)]" + if(target.incision_depths[target_zone] != SURGERY_DEPTH_SURFACE) + to_chat(user, SPAN_WARNING("You don't know of any operations you could perform in the [target.incision_depths[target_zone]] incision on [limbname].")) + else + to_chat(user, SPAN_WARNING("You don't know of any operations you could begin on [limbname].")) + return FALSE + if(isxeno(target)) + to_chat(user, SPAN_WARNING("You don't know any operations you could perform on this body part of a xenomorph.")) var/hint_msg for(var/datum/surgery_step/current_step as anything in valid_steps) if(hint_msg) @@ -114,7 +116,8 @@ hint_msg += ", [current_step.desc]" else hint_msg = "You can't [current_step.desc] with \the [tool]" - to_chat(user, SPAN_WARNING("[hint_msg].")) + if(!isnull(hint_msg)) + to_chat(user, SPAN_WARNING("[hint_msg].")) return FALSE var/datum/surgery/surgeryinstance @@ -159,7 +162,6 @@ return TRUE if(!surgeryinstance.can_start(user, target, affecting, tool)) return TRUE - var/datum/surgery/procedure = new surgeryinstance.type(target, target_zone, affecting) #ifdef DEBUG_SURGERY_INIT message_admins("[procedure.name] started.") diff --git a/code/modules/surgery/surgery_procedure.dm b/code/modules/surgery/surgery_procedure.dm index 8620c557eb4b..1ec72ae77673 100644 --- a/code/modules/surgery/surgery_procedure.dm +++ b/code/modules/surgery/surgery_procedure.dm @@ -73,6 +73,7 @@ if(!user.action_busy) //Otherwise, assume it's the same person. to_chat(user, SPAN_WARNING("Someone is already performing surgery on [target]'s [affected_limb.display_name]!")) return FALSE + return TRUE //So that you don't poke them with a tool you're already using. if(user.action_busy) @@ -93,7 +94,6 @@ if(lying_required && target.body_position != LYING_DOWN) to_chat(user, SPAN_WARNING("[user == target ? "You need" : "[target] needs"] to be lying down for this operation!")) return FALSE - if(user == target) if(!self_operable) to_chat(user, SPAN_WARNING("You can't perform this operation on yourself!")) @@ -102,7 +102,6 @@ to_chat(user, SPAN_WARNING("You can't perform surgery on the same \ [user.zone_selected == "r_hand"||user.zone_selected == "l_hand" ? "hand":"arm"] you're using!")) return FALSE - var/datum/surgery_step/current_step = GLOB.surgery_step_list[steps[status]] if(current_step) if(current_step.attempt_step(user, target, user.zone_selected, tool, src, repeating)) //First, try this step. diff --git a/code/modules/surgery/surgery_toggle.dm b/code/modules/surgery/surgery_toggle.dm index b9ca3ca93311..973d1c5b682f 100644 --- a/code/modules/surgery/surgery_toggle.dm +++ b/code/modules/surgery/surgery_toggle.dm @@ -18,6 +18,7 @@ // Called when the action is clicked on. /datum/action/surgery_toggle/action_activate() + . = ..() if(owner.mob_flags & SURGERY_MODE_ON) button.icon_state = "template" owner.mob_flags &= ~SURGERY_MODE_ON diff --git a/code/modules/surgery/xeno.dm b/code/modules/surgery/xeno.dm new file mode 100644 index 000000000000..d3175a2f78d5 --- /dev/null +++ b/code/modules/surgery/xeno.dm @@ -0,0 +1,237 @@ +//Research stuff to extract stuff from xenomorphs for goodies. In other words, to extract useful material that could be used to upgrade marines etc. + +/datum/surgery/xenomorph + name = "Experimental Harvesting Surgery" + invasiveness = list(SURGERY_DEPTH_SURFACE) + required_surgery_skill = SKILL_SURGERY_TRAINED + possible_locs = list("head") + target_mobtypes = list(/mob/living/carbon/xenomorph) + steps = list( + /datum/surgery_step/xenomorph/cut_exoskeleton, + /datum/surgery_step/xenomorph/open_exoskeleton, + /datum/surgery_step/xenomorph/severe_connections, + /datum/surgery_step/xenomorph/remove_organ, + ) + lying_required = FALSE + requires_bodypart_type = NONE + requires_bodypart = FALSE + +/datum/surgery/xenomorph/can_start(mob/user, mob/living/carbon/xenomorph/patient, obj/limb/L, obj/item/tool) + if(islarva(patient) || isfacehugger(patient)) + to_chat(user, SPAN_DANGER("This race is probably too small to have a mature organ worthy to extract...")) + return FALSE + if((patient.tier > 2 || isqueen(patient)) && !istype(tool, /obj/item/tool/surgery/scalpel/laser/advanced)) + to_chat(user, SPAN_DANGER("Chitin of this kind is too thick for an ordinary tool, you would need something special.")) + return FALSE + if(patient.stat == DEAD && !patient.organ_removed) + return TRUE + return FALSE + +/datum/surgery_step/xenomorph/cut_exoskeleton + name = "Cut Exoskeleton Carapace" + desc = "cut the carapace open" + tools = list( + /obj/item/tool/surgery/scalpel/laser/advanced = SURGERY_TOOL_MULT_IDEAL, + /obj/item/tool/surgery/circular_saw = SURGERY_TOOL_MULT_IDEAL, + /obj/item/weapon/twohanded/fireaxe = SURGERY_TOOL_MULT_SUBOPTIMAL, + /obj/item/weapon/sword/machete = SURGERY_TOOL_MULT_SUBOPTIMAL, + /obj/item/tool/hatchet = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/tool/kitchen/knife/butcher = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/attachable/bayonet = SURGERY_TOOL_MULT_BAD_SUBSTITUTE, + ) + + time = 4 SECONDS + preop_sound = 'sound/handling/clothingrustle1.ogg' + success_sound = 'sound/handling/bandage.ogg' + failure_sound = 'sound/surgery/organ2.ogg' + +/datum/surgery_step/xenomorph/cut_exoskeleton/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/circular_saw || tool_type == /obj/item/tool/surgery/scalpel/laser/advanced) + user.affected_message(target, + SPAN_NOTICE("You start to cut [target.caste_type] carapace apart using [tool], carefully, trying to prevent acid leaks."), + SPAN_NOTICE("[user] starts to cut your carapace apart using [tool], carefully, trying to prevent acid leaks."), + SPAN_NOTICE("[user] starts to cut [target.caste_type] carapace. [tool], carefully, trying to prevent acid leaks.")) + else + user.affected_message(target, + SPAN_NOTICE("You start to [pick("smash", "crack", "break")] [target.caste_type] carapace apart using [tool], Recklessly, with acid splashing on you!"), + SPAN_NOTICE("[user] starts to [pick("smash", "crack", "break")] your carapace apart using [tool], recklessly splashing acid everywhere!"), + SPAN_NOTICE("[user] starts to [pick("smash", "crack", "break")] [target.caste_type] carapace with [tool], recklessly splashing acid everywhere!")) + //we dont really need log interact since we're working with dead body... I hope + +/datum/surgery_step/xenomorph/cut_exoskeleton/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/circular_saw) + user.affected_message(target, + SPAN_NOTICE("You succesfully cut through [target.caste_type] carapace apart using [tool]."), + SPAN_NOTICE("[user] successfully cuts through your carapace using [tool]."), + SPAN_NOTICE("[user] successfully cuts [target.caste_type] carapace using [tool].")) + else + user.affected_message(target, + SPAN_NOTICE("You successfully destroy [target.caste_type] carapace into bits and pieces using [tool]."), + SPAN_NOTICE("[user] successfully destroys your carapace into bits and pieces using [tool]."),, + SPAN_NOTICE("[user] successfully destroys [target.caste_type] carapace into bits and pieces using [tool].")) + for(var/mob/living/carbon/human/victim in orange(1, target)) + if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) + continue + to_chat(victim, SPAN_HIGHDANGER("You are covered in acid as you feel agonizing pain!")) + victim.apply_damage(rand(75, 125), BURN) // you WILL wear biosuit. + playsound(victim, "acid_sizzle", 25, TRUE) + animation_flash_color(victim, "#FF0000") + +/datum/surgery_step/xenomorph/cut_exoskeleton/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_WARNING("Your hand slips, failing to cut [target.caste_type] carapace apart using [tool]!"), + SPAN_WARNING("[user]'s hand slips, failing to cut your carapace apart using [tool]!"), + SPAN_WARNING("[user] hand slips, failing to cut [target.caste_type] carapace using [tool]!")) + return FALSE + +/datum/surgery_step/xenomorph/open_exoskeleton + name = "Pry exoskeleton open" + desc = "open the exoskeleton in the incision" + tools = SURGERY_TOOLS_PRY_ENCASED + time = 2 SECONDS + preop_sound = 'sound/surgery/retractor1.ogg' + success_sound = 'sound/surgery/retractor2.ogg' + failure_sound = 'sound/surgery/organ1.ogg' + +/datum/surgery_step/xenomorph/open_exoskeleton/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_NOTICE("You start to pry [target.caste_type] carapace open using [tool]"), + SPAN_NOTICE("[user] starts to pry your carapace open with [tool] very carefully"), + SPAN_NOTICE("[user] starts to pry [target.caste_type] carapace open with [tool] very carefully")) + +/datum/surgery_step/xenomorph/open_exoskeleton/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/retractor) + user.affected_message(target, + SPAN_NOTICE("You hold [target.caste_type] carapace and exoskeleton open using [tool], exposing [target.caste_type] vital organs"), + SPAN_NOTICE("[user] holds your carapace and exoskeleton open with [tool], exposing [target.caste_type] vital organs "), + SPAN_NOTICE("[user] holds [target.caste_type] carapace and exoskeleton open with [tool], exposing [target.caste_type] vital organs ")) + else + user.affected_message(target, + SPAN_NOTICE("You hold [target.caste_type] carapace open using [tool] like a medieval doctor, exposing [target.caste_type] vital organs"), + SPAN_NOTICE("[user] starts to open your carapace with [tool] very carefully"), + SPAN_NOTICE("[user] starts to open [target.caste_type] carapace with [tool] very carefully")) + +/datum/surgery_step/xenomorph/open_exoskeleton/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_WARNING("Your hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!"), + SPAN_WARNING("[user] hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!"), + SPAN_WARNING("[user] hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!")) + for(var/mob/living/carbon/human/victim in orange(1, target)) + if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) + continue + to_chat(victim, SPAN_DANGER("You are covered in blood gushing out from [target.caste_type]")) + victim.apply_damage(rand(50, 75), BURN) // still dangerous + playsound(victim, "acid_sizzle", 25, TRUE) + animation_flash_color(victim, "#FF0000") + return FALSE + +/datum/surgery_step/xenomorph/severe_connections + name = "Sever Organ Connections" + desc = "detach tubes and connections from organ" + tools = list( + /obj/item/tool/surgery/scalpel = SURGERY_TOOL_MULT_IDEAL, + /obj/item/tool/surgery/scalpel/pict_system = SURGERY_TOOL_MULT_IDEAL, + /obj/item/attachable/bayonet = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/tool/kitchen/knife = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/shard = SURGERY_TOOL_MULT_AWFUL, + ) + time = 4 SECONDS + preop_sound = 'sound/surgery/scalpel1.ogg' + success_sound = 'sound/surgery/scalpel2.ogg' + failure_sound = 'sound/surgery/organ2.ogg' + +/datum/surgery_step/xenomorph/severe_connections/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_NOTICE("You start to sever [target.caste_type] organ links using [tool], with confidence"), + SPAN_NOTICE("[user] start to sever your organ links using [tool], with confidence"), + SPAN_NOTICE("[user] starts to sever [target.caste_type] organ links using [tool], with confidence")) + +/datum/surgery_step/xenomorph/severe_connections/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/scalpel || tool_type == /obj/item/tool/surgery/scalpel/pict_system) + user.affected_message(target, + SPAN_NOTICE("You severed [target.caste_type] connections and links to vital organs using [tool]"), + SPAN_NOTICE("[user] severed your connections and links to vital organs using [tool]"), + SPAN_NOTICE("[user] severed [target.caste_type] connections and links to vital organs using [tool]")) + else + user.affected_message(target, + SPAN_NOTICE("You rip [target.caste_type] connections and links to vital organs apart using [tool]"), + SPAN_NOTICE("[user] rips your connections and links to vital organs apart using [tool]"), + SPAN_NOTICE("[user] rips [target.caste_type] connections and links to vital organs apart using [tool]")) + +/datum/surgery_step/xenomorph/severe_connections/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_WARNING("Your hand slips, damaging one of [target.caste_type] [pick("arteries", "viens")], gushing acid blood everywhere!"), + SPAN_WARNING("[user] hand slips, damaging one of your [pick("arteries", "viens")], gushing acid blood everywhere!"), + SPAN_WARNING("[user] hand slips, damaging one of [target.caste_type] [pick("arteries", "viens")], gushing acid blood everywhere!")) + for(var/mob/living/carbon/human/victim in orange(1, target)) + if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) + continue + to_chat(victim, SPAN_DANGER("You are covered in blood gushing out from [target.caste_type]")) + victim.apply_damage(rand(50, 75), BURN) // not SO dangerous but still is + playsound(victim, "acid_sizzle", 25, TRUE) + animation_flash_color(victim, "#FF0000") + +/datum/surgery_step/xenomorph/remove_organ + name = "Remove Xenomorph Organ" + desc = "grab a hold of it and pull the organ out" + accept_hand = TRUE + tools = list( + /obj/item/tool/surgery/hemostat = SURGERY_TOOL_MULT_IDEAL, + /obj/item/tool/wirecutters = SURGERY_TOOL_MULT_SUBOPTIMAL, + /obj/item/tool/kitchen/utensil/fork = SURGERY_TOOL_MULT_SUBSTITUTE, + )//shamelessly taken from embryo code + time = 3 SECONDS + preop_sound = 'sound/surgery/scalpel1.ogg' + success_sound = 'sound/surgery/scalpel2.ogg' + failure_sound = 'sound/surgery/organ2.ogg' + +/datum/surgery_step/xenomorph/remove_organ/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool) + user.affected_message(target, + SPAN_NOTICE("You start to get a firm grip on the [target.caste_type] organ using [tool] "), + SPAN_NOTICE("[user] start to get a firm grip on your insides using [tool]"), + SPAN_NOTICE("[user] starts to get a firm grip on the [target.caste_type] organ using [tool] ")) + else + user.affected_message(target, + SPAN_NOTICE("You start to get a firm grip on the [target.caste_type] organ"), + SPAN_NOTICE("[user] starts to get a firm grip on your insides"), + SPAN_NOTICE("[user] starts to get a firm grip on the [target.caste_type] organ")) + +/datum/surgery_step/xenomorph/remove_organ/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool) + user.affected_message(target, + SPAN_NOTICE("You pulled the [target.caste_type] organ out using [tool]"), + SPAN_NOTICE("[user] pulled your organ out using [tool]"), + SPAN_NOTICE("[user] pulled the [target.caste_type] organ out using [tool]")) + else + if(istype(user.wear_suit, /obj/item/clothing/suit/bio_suit)) + user.affected_message(target, + SPAN_NOTICE("You pulled the [target.caste_type] organ out!"), + SPAN_NOTICE("[user] pulles your insides out!"), + SPAN_NOTICE("[user] pulled the [target.caste_type] organ out.")) + else + user.affected_message(target, + SPAN_NOTICE("You burn your hands as you pulled the [target.caste_type] organ out!"), + SPAN_NOTICE("[user] burns their hands as they pulled your insides out!"), + SPAN_NOTICE("[user] burns [user.p_their()] hands as [user.p_they()] pulled the [target.caste_type] organ out.")) + user.emote("pain") + if(user.hand) + user.apply_damage(rand(30,50), BURN, "l_hand") + else + user.apply_damage(rand(30,50), BURN, "r_hand") + playsound(user, "acid_sizzle", 25, TRUE) + animation_flash_color(user, "#FF0000") + var/obj/item/organ/xeno/organ = locate() in target + if(!isnull(organ)) + organ.forceMove(target.loc) + target.organ_removed = TRUE + target.update_wounds() + +/datum/surgery_step/xenomorph/remove_organ/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool) + user.affected_message(target, + SPAN_NOTICE("You fail to pull the [target.caste_type] organ out using [tool]"), + SPAN_NOTICE("[user] fails to pull your organ out using [tool]"), + SPAN_NOTICE("[user] fails to pull the [target.caste_type] organ out using [tool]")) + return FALSE + diff --git a/code/modules/teleporters/teleporter.dm b/code/modules/teleporters/teleporter.dm index d3596cf3e9ea..21b362d85822 100644 --- a/code/modules/teleporters/teleporter.dm +++ b/code/modules/teleporters/teleporter.dm @@ -29,12 +29,12 @@ var/list/turf/source_turfs = locations[location_source] var/list/turf/dest_turfs = locations[location_dest] - if(!source_turfs || source_turfs.len == 0) + if(!LAZYLEN(source_turfs)) log_debug("Invalid source location ID [location_source] handed to teleporter [id]. Error code: TELEPORTER_3") log_admin("Invalid source location ID [location_source] handed to teleporter [id]. Tell the devs. Error code: TELEPORTER_3") return FALSE - if(!dest_turfs || dest_turfs.len == 0) + if(!LAZYLEN(dest_turfs)) log_debug("Invalid destination location ID [location_dest] handed to teleporter [id]. Error code: TELEPORTER_3") log_admin("Invalid destination location ID [location_dest] handed to teleporter [id]. Tell the devs. Error code: TELEPORTER_3") return FALSE diff --git a/code/modules/teleporters/teleporter_console.dm b/code/modules/teleporters/teleporter_console.dm index 88384578a939..f1d3a74b902e 100644 --- a/code/modules/teleporters/teleporter_console.dm +++ b/code/modules/teleporters/teleporter_console.dm @@ -175,7 +175,7 @@ if(SSmapping.configs[GROUND_MAP].map_name != MAP_CORSAT) // Bad style, but I'm leaving it here for now until someone wants to add a teleporter to another map return - if(GLOB.teleporters.len) // already made the damn thing + if(length(GLOB.teleporters)) // already made the damn thing return var/datum/teleporter/corsat/teleporter = new diff --git a/code/modules/tgchat/to_chat.dm b/code/modules/tgchat/to_chat.dm index d9f96912f8c8..00996e341d34 100644 --- a/code/modules/tgchat/to_chat.dm +++ b/code/modules/tgchat/to_chat.dm @@ -29,6 +29,14 @@ if(target == world) target = GLOB.clients + var/list/true_targets = list() + if(target == GLOB.admins) + for(var/admin in target) + var/client/admin_client = CLIENT_FROM_VAR(admin) + if(CLIENT_IS_STAFF(admin_client)) + true_targets += admin_client + target = true_targets + // Build a message var/message = list() if(type) message["type"] = type diff --git a/code/modules/tgs/README.md b/code/modules/tgs/README.md index 6319028d8106..35ca73d7e9a8 100644 --- a/code/modules/tgs/README.md +++ b/code/modules/tgs/README.md @@ -1,6 +1,6 @@ # DMAPI Internals -This folder should be placed on it's own inside a codebase that wishes to use the TGS DMAPI. Warranty void if modified. +This folder should be placed on its own inside a codebase that wishes to use the TGS DMAPI. Warranty void if modified. - [includes.dm](./includes.dm) is the file that should be included by DM code, it handles including the rest. - The [core](./core) folder includes all code not directly part of any API version. diff --git a/code/modules/tgs/v5/api.dm b/code/modules/tgs/v5/api.dm index 95b8edd3ee5c..05d0dee25b3c 100644 --- a/code/modules/tgs/v5/api.dm +++ b/code/modules/tgs/v5/api.dm @@ -50,7 +50,9 @@ version = null // we want this to be the TGS version, not the interop version // sleep once to prevent an issue where world.Export on the first tick can hang indefinitely + TGS_DEBUG_LOG("Starting Export bug prevention sleep tick. time:[world.time] sleep_offline:[world.sleep_offline]") sleep(world.tick_lag) + TGS_DEBUG_LOG("Export bug prevention sleep complete") var/list/bridge_response = Bridge(DMAPI5_BRIDGE_COMMAND_STARTUP, list(DMAPI5_BRIDGE_PARAMETER_MINIMUM_SECURITY_LEVEL = minimum_required_security_level, DMAPI5_BRIDGE_PARAMETER_VERSION = api_version.raw_parameter, DMAPI5_PARAMETER_CUSTOM_COMMANDS = ListCustomCommands(), DMAPI5_PARAMETER_TOPIC_PORT = GetTopicPort())) if(!istype(bridge_response)) diff --git a/code/modules/tgui_panel/telemetry.dm b/code/modules/tgui_panel/telemetry.dm index 4ef1f06bfac0..bd49596aa19a 100644 --- a/code/modules/tgui_panel/telemetry.dm +++ b/code/modules/tgui_panel/telemetry.dm @@ -85,7 +85,7 @@ var/list/row = telemetry_connections[i] // Check for a malformed history object - if (!row || row.len < 3 || (!row["ckey"] || !row["address"] || !row["computer_id"])) + if (LAZYLEN(row) < 3 || (!row["ckey"] || !row["address"] || !row["computer_id"])) continue /* TODO - Reintroduce this when we get a proper round ID tracking, diff --git a/code/modules/unit_tests/unit_test.dm b/code/modules/unit_tests/unit_test.dm index 8d04a51bcc19..cf02cdf62155 100644 --- a/code/modules/unit_tests/unit_test.dm +++ b/code/modules/unit_tests/unit_test.dm @@ -87,7 +87,7 @@ GLOBAL_VAR_INIT(focused_test, focused_test()) /datum/unit_test/proc/allocate(type, ...) var/list/arguments = args.Copy(2) if(ispath(type, /atom)) - if (!arguments.len) + if (!length(arguments)) arguments = list(run_loc_floor_bottom_left) else if (arguments[1] == null) arguments[1] = run_loc_floor_bottom_left diff --git a/code/modules/vehicles/apc/apc.dm b/code/modules/vehicles/apc/apc.dm index 78219e439832..b7d35f21fbe3 100644 --- a/code/modules/vehicles/apc/apc.dm +++ b/code/modules/vehicles/apc/apc.dm @@ -87,7 +87,7 @@ GLOBAL_LIST_EMPTY(command_apc_list) /obj/vehicle/multitile/apc/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS diff --git a/code/modules/vehicles/apc/apc_command.dm b/code/modules/vehicles/apc/apc_command.dm index 54647279ec3b..8d056daec2ea 100644 --- a/code/modules/vehicles/apc/apc_command.dm +++ b/code/modules/vehicles/apc/apc_command.dm @@ -68,7 +68,7 @@ /obj/vehicle/multitile/apc/command/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS diff --git a/code/modules/vehicles/apc/apc_medical.dm b/code/modules/vehicles/apc/apc_medical.dm index f8809bedaa73..7d462e7da27b 100644 --- a/code/modules/vehicles/apc/apc_medical.dm +++ b/code/modules/vehicles/apc/apc_medical.dm @@ -32,7 +32,7 @@ /obj/vehicle/multitile/apc/medical/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS diff --git a/code/modules/vehicles/arc/arc.dm b/code/modules/vehicles/arc/arc.dm index feee097c3638..8f5a8ee5d8e9 100644 --- a/code/modules/vehicles/arc/arc.dm +++ b/code/modules/vehicles/arc/arc.dm @@ -17,11 +17,10 @@ interior_map = /datum/map_template/interior/arc - passengers_slots = 3 - xenos_slots = 5 + passengers_slots = 2 // 5 total. Reserved slots are added to passenger slots. + xenos_slots = 4 entrances = list( - "left" = list(2, 0), "right" = list(-2, 0), ) diff --git a/code/modules/vehicles/arc/interior.dm b/code/modules/vehicles/arc/interior.dm new file mode 100644 index 000000000000..c8d7d0934e4d --- /dev/null +++ b/code/modules/vehicles/arc/interior.dm @@ -0,0 +1,13 @@ +/obj/structure/interior_exit/vehicle/arc + name = "ARC side door" + icon = 'icons/obj/vehicles/interiors/arc.dmi' + icon_state = "exit_door" + +/obj/structure/prop/vehicle/arc + name = "ARC chassis" + + icon = 'icons/obj/vehicles/interiors/arc_chassis.dmi' + icon_state = "arc_chassis" + layer = ABOVE_TURF_LAYER + mouse_opacity = FALSE + diff --git a/code/modules/vehicles/hardpoints/armor/ballistic.dm b/code/modules/vehicles/hardpoints/armor/ballistic.dm index 7fa19abf5b37..55f0f6bc4e6b 100644 --- a/code/modules/vehicles/hardpoints/armor/ballistic.dm +++ b/code/modules/vehicles/hardpoints/armor/ballistic.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/ballistic - name = "Ballistic Armor" + name = "\improper Ballistic Armor" desc = "Protects the vehicle from high-penetration weapons" icon_state = "ballistic_armor" diff --git a/code/modules/vehicles/hardpoints/armor/caustic.dm b/code/modules/vehicles/hardpoints/armor/caustic.dm index 34bcf4c3b224..ac97d3da25f9 100644 --- a/code/modules/vehicles/hardpoints/armor/caustic.dm +++ b/code/modules/vehicles/hardpoints/armor/caustic.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/caustic - name = "Caustic Armor" + name = "\improper Caustic Armor" desc = "Protects vehicles from most types of acid" icon_state = "caustic_armor" diff --git a/code/modules/vehicles/hardpoints/armor/concussive.dm b/code/modules/vehicles/hardpoints/armor/concussive.dm index a2e674255f2d..6da39b9c4173 100644 --- a/code/modules/vehicles/hardpoints/armor/concussive.dm +++ b/code/modules/vehicles/hardpoints/armor/concussive.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/concussive - name = "Concussive Armor" + name = "\improper Concussive Armor" desc = "Protects the vehicle from high-impact weapons" icon_state = "concussive_armor" diff --git a/code/modules/vehicles/hardpoints/armor/paladin.dm b/code/modules/vehicles/hardpoints/armor/paladin.dm index 7635ffca74b3..fb131d47151e 100644 --- a/code/modules/vehicles/hardpoints/armor/paladin.dm +++ b/code/modules/vehicles/hardpoints/armor/paladin.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/paladin - name = "Paladin Armor" + name = "\improper Paladin Armor" desc = "Protects the vehicle from large incoming explosive projectiles" icon_state = "paladin_armor" diff --git a/code/modules/vehicles/hardpoints/armor/snowplow.dm b/code/modules/vehicles/hardpoints/armor/snowplow.dm index 84e589658029..e7823854cff3 100644 --- a/code/modules/vehicles/hardpoints/armor/snowplow.dm +++ b/code/modules/vehicles/hardpoints/armor/snowplow.dm @@ -1,12 +1,12 @@ /obj/item/hardpoint/armor/snowplow - name = "Snowplow" + name = "\improper Snowplow" desc = "Clears a path in the snow for friendlies" icon_state = "snowplow" disp_icon = "tank" disp_icon_state = "snowplow" - health = 600 + health = 150 activatable = 1 /obj/item/hardpoint/armor/snowplow/livingmob_interact(mob/living/M) diff --git a/code/modules/vehicles/hardpoints/hardpoint.dm b/code/modules/vehicles/hardpoints/hardpoint.dm index 3aaa81daf19f..f94d0dc6b373 100644 --- a/code/modules/vehicles/hardpoints/hardpoint.dm +++ b/code/modules/vehicles/hardpoints/hardpoint.dm @@ -132,6 +132,12 @@ //------GENERAL PROCS---------- //----------------------------- +/obj/item/hardpoint/p_s(temp_gender) + if(!temp_gender) + temp_gender = gender + if(temp_gender == PLURAL) + . = "s" + /obj/item/hardpoint/Initialize() . = ..() set_bullet_traits() diff --git a/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm b/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm index cadb760bd644..7eecc7d04511 100644 --- a/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm +++ b/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm @@ -5,7 +5,7 @@ icon = 'icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi' icon_state = "cupola_1" w_class = SIZE_LARGE - default_ammo = /datum/ammo/bullet/smartgun + default_ammo = /datum/ammo/bullet/machinegun max_rounds = 500 gun_type = /obj/item/hardpoint/secondary/m56cupola diff --git a/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm b/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm index def6016f0759..a164b38383b8 100644 --- a/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm +++ b/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm @@ -1,7 +1,7 @@ /obj/item/ammo_magazine/hardpoint/primary_flamer name = "DRG-N Offensive Flamer Unit Fuel Tank" desc = "A primary armament flamethrower magazine." - caliber = "Napalm X" //correlates to flamer mags + caliber = "High-Combustion Napalm" //correlates to flamer mags icon_state = "drgn_flametank" w_class = SIZE_LARGE max_rounds = 60 diff --git a/code/modules/vehicles/hardpoints/holder/tank_turret.dm b/code/modules/vehicles/hardpoints/holder/tank_turret.dm index bdf106aecac3..5be6a03863f2 100644 --- a/code/modules/vehicles/hardpoints/holder/tank_turret.dm +++ b/code/modules/vehicles/hardpoints/holder/tank_turret.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/holder/tank_turret - name = "M34A2-A Multipurpose Turret" + name = "\improper M34A2-A Multipurpose Turret" desc = "The centerpiece of the tank. Designed to support quick installation and deinstallation of various tank weapon modules. Has inbuilt smoke screen deployment system." icon = 'icons/obj/vehicles/tank.dmi' @@ -27,7 +27,7 @@ slot = HDPT_TURRET // big beefy chonk of metal - health = 750 + health = 450 damage_multiplier = 0.05 accepted_hardpoints = list( diff --git a/code/modules/vehicles/hardpoints/primary/autocannon.dm b/code/modules/vehicles/hardpoints/primary/autocannon.dm index fa865f40daa1..3e12f52be097 100644 --- a/code/modules/vehicles/hardpoints/primary/autocannon.dm +++ b/code/modules/vehicles/hardpoints/primary/autocannon.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/primary/autocannon - name = "AC3-E Autocannon" + name = "\improper AC3-E Autocannon" desc = "A primary autocannon for tanks that shoots explosive flak rounds" icon_state = "ace_autocannon" diff --git a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm index 7cb4b9a621bb..b896640a4ff7 100644 --- a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm +++ b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm @@ -1,6 +1,6 @@ // APC cannons /obj/item/hardpoint/primary/dualcannon - name = "PARS-159 Boyars Dualcannon" + name = "\improper PARS-159 Boyars Dualcannon" desc = "A primary two-barrel cannon for the APC that shoots 20mm IFF-compatible rounds." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/primary/flamer.dm b/code/modules/vehicles/hardpoints/primary/flamer.dm index d0e0596c141d..60a7979cd5fb 100644 --- a/code/modules/vehicles/hardpoints/primary/flamer.dm +++ b/code/modules/vehicles/hardpoints/primary/flamer.dm @@ -1,6 +1,6 @@ /obj/item/hardpoint/primary/flamer - name = "DRG-N Offensive Flamer Unit" - desc = "A primary weapon for the tank that spews fire everywhere." + name = "\improper DRG-N Offensive Flamer Unit" + desc = "A primary weapon for the tank that spews out high-combustion napalm in a wide radius. The fuel burns intensely and quickly, which allows for it to be used offensively by armoured vehicles." icon_state = "drgn_flamer" disp_icon = "tank" diff --git a/code/modules/vehicles/hardpoints/primary/ltb.dm b/code/modules/vehicles/hardpoints/primary/ltb.dm index 6cb84cf453da..7ccbc18a2853 100644 --- a/code/modules/vehicles/hardpoints/primary/ltb.dm +++ b/code/modules/vehicles/hardpoints/primary/ltb.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/primary/cannon - name = "LTB Cannon" + name = "\improper LTB Cannon" desc = "A primary cannon for tanks that shoots explosive rounds" icon_state = "ltb_cannon" diff --git a/code/modules/vehicles/hardpoints/primary/minigun.dm b/code/modules/vehicles/hardpoints/primary/minigun.dm index 7ae7c20c9870..8bc7c55bbb8a 100644 --- a/code/modules/vehicles/hardpoints/primary/minigun.dm +++ b/code/modules/vehicles/hardpoints/primary/minigun.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/primary/minigun - name = "LTAA-AP Minigun" + name = "\improper LTAA-AP Minigun" desc = "A primary weapon for tanks that spews bullets" icon_state = "ltaaap_minigun" @@ -61,7 +61,7 @@ COOLDOWN_START(src, fire_cooldown, fire_delay * stage_delay_mult) /obj/item/hardpoint/primary/minigun/proc/calculate_stage_delay_mult() - var/stage_rate_len = stage_rate.len + var/stage_rate_len = length(stage_rate) var/delta_time = world.time - last_fired var/old_spin_stage = spin_stage diff --git a/code/modules/vehicles/hardpoints/secondary/cupola.dm b/code/modules/vehicles/hardpoints/secondary/cupola.dm index c1336eb05739..70b9f9a4889f 100644 --- a/code/modules/vehicles/hardpoints/secondary/cupola.dm +++ b/code/modules/vehicles/hardpoints/secondary/cupola.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/m56cupola - name = "M56 Cupola" + name = "\improper M56 Cupola" desc = "A secondary weapon for tanks that shoots bullets" icon_state = "m56_cupola" @@ -28,9 +28,3 @@ burst_amount = 3 burst_delay = 0.3 SECONDS extra_delay = 0.6 SECONDS - -/obj/item/hardpoint/secondary/m56cupola/set_bullet_traits() - ..() - LAZYADD(traits_to_give, list( - BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) - )) diff --git a/code/modules/vehicles/hardpoints/secondary/flamer.dm b/code/modules/vehicles/hardpoints/secondary/flamer.dm index 4bdc9e602974..56a9995b60c5 100644 --- a/code/modules/vehicles/hardpoints/secondary/flamer.dm +++ b/code/modules/vehicles/hardpoints/secondary/flamer.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/small_flamer - name = "LZR-N Flamer Unit" + name = "\improper LZR-N Flamer Unit" desc = "A secondary weapon for tanks that spews hot fire." icon_state = "flamer" diff --git a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm index d0df1d295ffc..f9e4982bb736 100644 --- a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm +++ b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/frontalcannon - name = "Bleihagel RE-RE700 Frontal Cannon" + name = "\improper Bleihagel RE-RE700 Frontal Cannon" desc = "The marketing department over at Bleihagel would have you believe that the RE-RE700 is an original design. However, experts who pried the cover off the cannon have discovered an object with a striking similarity to the popular M56 Cupola. It is still unknown why the cannon has two barrels." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm b/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm index ecaf36213d34..060f1f7ae9ef 100644 --- a/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm +++ b/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/grenade_launcher - name = "M92T Grenade Launcher" + name = "\improper M92T Grenade Launcher" desc = "A secondary weapon for tanks that shoots grenades." icon_state = "glauncher" diff --git a/code/modules/vehicles/hardpoints/secondary/tow.dm b/code/modules/vehicles/hardpoints/secondary/tow.dm index 30eadf224bda..7b0e0ea90a27 100644 --- a/code/modules/vehicles/hardpoints/secondary/tow.dm +++ b/code/modules/vehicles/hardpoints/secondary/tow.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/towlauncher - name = "TOW Launcher" + name = "\improper TOW Launcher" desc = "A secondary weapon for tanks that shoots rockets" icon_state = "tow_launcher" diff --git a/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm b/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm index f051d9a21bb5..5561ee48357d 100644 --- a/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm +++ b/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm @@ -1,6 +1,6 @@ //this is Cupola guns that are fired from the sides of APC by support gunners /obj/item/hardpoint/special/firing_port_weapon - name = "M56 FPW" + name = "\improper M56 FPW" desc = "A modified M56B Smartgun installed on the sides of M577 Armored Personnel Carrier as a Firing Port Weapon. Used by support gunners to cover friendly infantry at APC sides." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/support/artillery.dm b/code/modules/vehicles/hardpoints/support/artillery.dm index dfcdcaf73f74..dc3db8a3db0d 100644 --- a/code/modules/vehicles/hardpoints/support/artillery.dm +++ b/code/modules/vehicles/hardpoints/support/artillery.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/artillery_module - name = "Artillery Module" + name = "\improper Artillery Module" desc = "Allows the user to look far into the distance." icon_state = "artillery" diff --git a/code/modules/vehicles/hardpoints/support/flare.dm b/code/modules/vehicles/hardpoints/support/flare.dm index da1390b861d4..0fa37de34d2f 100644 --- a/code/modules/vehicles/hardpoints/support/flare.dm +++ b/code/modules/vehicles/hardpoints/support/flare.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/flare_launcher - name = "M-87F Flare Launcher" + name = "\improper M-87F Flare Launcher" desc = "A support module for APCs that shoots flares." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/support/iwsa.dm b/code/modules/vehicles/hardpoints/support/iwsa.dm index c3de90c871b6..97fee4e0551a 100644 --- a/code/modules/vehicles/hardpoints/support/iwsa.dm +++ b/code/modules/vehicles/hardpoints/support/iwsa.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/weapons_sensor - name = "Integrated Weapons Sensor Array" + name = "\improper Integrated Weapons Sensor Array" desc = "Improves the accuracy and fire rate of all onboard weapons" icon_state = "warray" diff --git a/code/modules/vehicles/hardpoints/support/overdrive.dm b/code/modules/vehicles/hardpoints/support/overdrive.dm index 1b61d6c63dfb..4daa2fddad0a 100644 --- a/code/modules/vehicles/hardpoints/support/overdrive.dm +++ b/code/modules/vehicles/hardpoints/support/overdrive.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/overdrive_enhancer - name = "Overdrive Enhancer" + name = "\improper Overdrive Enhancer" desc = "Increases the movement speed of the vehicle it's attached to" icon_state = "odrive_enhancer" diff --git a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm index 62c5e430c747..4bf8ca59e2ca 100644 --- a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm +++ b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/locomotion/apc_wheels - name = "APC Wheels" + name = "\improper APC Wheels" desc = "Integral to the movement of the APC." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm b/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm index 9bb6c31746e0..17726e75c024 100644 --- a/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm +++ b/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/locomotion/arc_wheels - name = "ARC Wheels" + name = "\improper ARC Wheels" desc = "Integral to the movement of the ARC." icon = 'icons/obj/vehicles/hardpoints/arc.dmi' diff --git a/code/modules/vehicles/hardpoints/wheels/locomotion.dm b/code/modules/vehicles/hardpoints/wheels/locomotion.dm index c05ada322a8d..a0e57c3e97d4 100644 --- a/code/modules/vehicles/hardpoints/wheels/locomotion.dm +++ b/code/modules/vehicles/hardpoints/wheels/locomotion.dm @@ -12,6 +12,22 @@ var/move_momentum_build_factor = 0 var/move_turn_momentum_loss_factor = 0 +/obj/item/hardpoint/locomotion/p_are(temp_gender) + if(!temp_gender) + temp_gender = gender + . = "is" + if(temp_gender == PLURAL) + . = "are" + +/obj/item/hardpoint/locomotion/p_they(capitalized, temp_gender) + if(!temp_gender) + temp_gender = gender + . = "it" + if(temp_gender == PLURAL) + . = "they" + if(capitalized) + . = capitalize(.) + /obj/item/hardpoint/locomotion/deactivate() owner.move_delay = initial(owner.move_delay) owner.move_max_momentum = initial(owner.move_max_momentum) diff --git a/code/modules/vehicles/hardpoints/wheels/treads.dm b/code/modules/vehicles/hardpoints/wheels/treads.dm index b718d1c8e897..561795b8531e 100644 --- a/code/modules/vehicles/hardpoints/wheels/treads.dm +++ b/code/modules/vehicles/hardpoints/wheels/treads.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/locomotion/treads - name = "Treads" + name = "\improper Treads" desc = "Integral to the movement of the vehicle." icon_state = "treads" @@ -8,7 +8,7 @@ slot = HDPT_TREADS - health = 500 + health = 300 //with this settings, takes 3 tiles to reach top speed move_delay = 3.8 @@ -17,10 +17,10 @@ move_turn_momentum_loss_factor = 0.6 /obj/item/hardpoint/locomotion/treads/robust - name = "Reinforced Treads" + name = "\improper Reinforced Treads" desc = "These treads are made of a tougher material and are more durable. However, the extra weight slows the tank down slightly." - health = 750 + health = 500 acid_resistant = TRUE move_max_momentum = 5 //same top speed, but takes 5 tiles to reach it diff --git a/code/modules/vehicles/interior/interactable/vehicle_locker.dm b/code/modules/vehicles/interior/interactable/vehicle_locker.dm index 5571995594f0..1ad6fb5bb8df 100644 --- a/code/modules/vehicles/interior/interactable/vehicle_locker.dm +++ b/code/modules/vehicles/interior/interactable/vehicle_locker.dm @@ -15,7 +15,7 @@ unslashable = TRUE indestructible = TRUE - var/list/role_restriction = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + var/list/role_restriction = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) var/obj/item/storage/internal/container diff --git a/code/modules/vehicles/interior/interior_landmarks.dm b/code/modules/vehicles/interior/interior_landmarks.dm index fa1eee8651ac..cd9f2e74df15 100644 --- a/code/modules/vehicles/interior/interior_landmarks.dm +++ b/code/modules/vehicles/interior/interior_landmarks.dm @@ -267,6 +267,7 @@ V.vehicle = I.exterior V.pixel_x = pixel_x V.pixel_y = pixel_y + V.layer = layer V.alpha = alpha V.update_icon() @@ -286,6 +287,7 @@ V.vehicle = I.exterior V.pixel_x = pixel_x V.pixel_y = pixel_y + V.layer = layer V.alpha = alpha qdel(src) diff --git a/code/modules/vehicles/multitile/multitile.dm b/code/modules/vehicles/multitile/multitile.dm index ce118fd14c56..bcd48c3633be 100644 --- a/code/modules/vehicles/multitile/multitile.dm +++ b/code/modules/vehicles/multitile/multitile.dm @@ -258,7 +258,7 @@ /obj/vehicle/multitile/get_examine_text(mob/user) . = ..() for(var/obj/item/hardpoint/H in hardpoints) - . += "There is \a [H] module installed." + . += "There [H.p_are()] \a [H] module[H.p_s()] installed." H.examine(user, TRUE) if(clamped) . += "There is a vehicle clamp attached." @@ -267,7 +267,7 @@ for(var/datum/role_reserved_slots/RRS in interior.role_reserved_slots) passengers_amount += RRS.taken if(passengers_amount > 0) - . += "You can sense approximately [passengers_amount] hosts inside." + . += "You can sense approximately [passengers_amount] host\s inside." /obj/vehicle/multitile/proc/load_hardpoints() return diff --git a/code/modules/vehicles/multitile/multitile_verbs.dm b/code/modules/vehicles/multitile/multitile_verbs.dm index 52d8602c9852..5d73351321e2 100644 --- a/code/modules/vehicles/multitile/multitile_verbs.dm +++ b/code/modules/vehicles/multitile/multitile_verbs.dm @@ -65,7 +65,7 @@ if(!new_hp) new_hp = 0 - new_hp = (new_hp % usable_hps.len) + 1 + new_hp = (new_hp % length(usable_hps)) + 1 var/obj/item/hardpoint/HP = usable_hps[new_hp] if(!HP) return diff --git a/code/modules/vehicles/tank/tank.dm b/code/modules/vehicles/tank/tank.dm index 147e359471df..1cc1174c43fe 100644 --- a/code/modules/vehicles/tank/tank.dm +++ b/code/modules/vehicles/tank/tank.dm @@ -90,7 +90,7 @@ /obj/vehicle/multitile/tank/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS @@ -165,6 +165,39 @@ return TRUE +/obj/vehicle/multitile/tank/MouseDrop_T(mob/dropped, mob/user) + . = ..() + if((dropped != user) || !isxeno(user)) + return + + if(health > 0) + to_chat(user, SPAN_XENO("We can't jump over [src] until it is destroyed!")) + return + + var/turf/current_turf = get_turf(user) + var/dir_to_go = get_dir(current_turf, src) + for(var/i in 1 to 3) + current_turf = get_step(current_turf, dir_to_go) + if(!(current_turf in locs)) + break + + if(current_turf.density) + to_chat(user, SPAN_XENO("The path over [src] is obstructed!")) + return + + // Now we check to make sure the turf on the other side of the tank isn't dense too + current_turf = get_step(current_turf, dir_to_go) + if(current_turf.density) + to_chat(user, SPAN_XENO("The path over [src] is obstructed!")) + return + + to_chat(user, SPAN_XENO("We begin to jump over [src]...")) + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) + to_chat(user, SPAN_XENO("We stop jumping over [src].")) + return + + user.forceMove(current_turf) + to_chat(user, SPAN_XENO("We jump to the other side of [src].")) /* ** PRESETS SPAWNERS */ diff --git a/colonialmarines.dme b/colonialmarines.dme index e7f280cd99df..54760dde8594 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -311,6 +311,7 @@ #include "code\controllers\subsystem\tracking.dm" #include "code\controllers\subsystem\vote.dm" #include "code\controllers\subsystem\weather.dm" +#include "code\controllers\subsystem\who.dm" #include "code\controllers\subsystem\x_evolution.dm" #include "code\controllers\subsystem\xeno.dm" #include "code\controllers\subsystem\init\landmarks.dm" @@ -332,6 +333,7 @@ #include "code\datums\ASRS.dm" #include "code\datums\beam.dm" #include "code\datums\browser.dm" +#include "code\datums\bug_report.dm" #include "code\datums\callback.dm" #include "code\datums\changelog.dm" #include "code\datums\combat_personalized.dm" @@ -357,6 +359,7 @@ #include "code\datums\mutable_appearance.dm" #include "code\datums\quadtree.dm" #include "code\datums\recipe.dm" +#include "code\datums\research_upgrade_datum.dm" #include "code\datums\shuttles.dm" #include "code\datums\soundOutput.dm" #include "code\datums\tgs_event_handler.dm" @@ -520,6 +523,7 @@ #include "code\datums\emergency_calls\emergency_call.dm" #include "code\datums\emergency_calls\ert_stations.dm" #include "code\datums\emergency_calls\feral_xenos.dm" +#include "code\datums\emergency_calls\forecon.dm" #include "code\datums\emergency_calls\forsaken_xenos.dm" #include "code\datums\emergency_calls\goons.dm" #include "code\datums\emergency_calls\hefa_knight.dm" @@ -690,10 +694,12 @@ #include "code\datums\tutorial\marine\_marine.dm" #include "code\datums\tutorial\marine\basic_marine.dm" #include "code\datums\tutorial\marine\medical_basic.dm" +#include "code\datums\tutorial\marine\reqs_line.dm" #include "code\datums\tutorial\ss13\_ss13.dm" #include "code\datums\tutorial\ss13\basic_ss13.dm" #include "code\datums\tutorial\ss13\intents.dm" #include "code\datums\tutorial\xenomorph\_xenomorph.dm" +#include "code\datums\tutorial\xenomorph\abomination.dm" #include "code\datums\tutorial\xenomorph\xenomorph_basic.dm" #include "code\datums\weather\weather_event.dm" #include "code\datums\weather\weather_map_holder.dm" @@ -803,6 +809,7 @@ #include "code\game\jobs\job\command\auxiliary\dropship_pilot.dm" #include "code\game\jobs\job\command\auxiliary\intel.dm" #include "code\game\jobs\job\command\auxiliary\senior.dm" +#include "code\game\jobs\job\command\auxiliary\tank_crew.dm" #include "code\game\jobs\job\command\cic\captain.dm" #include "code\game\jobs\job\command\cic\executive.dm" #include "code\game\jobs\job\command\cic\staffofficer.dm" @@ -829,6 +836,7 @@ #include "code\game\jobs\job\special\provost.dm" #include "code\game\jobs\job\special\uaac.dm" #include "code\game\jobs\job\special\uscm.dm" +#include "code\game\jobs\job\special\weyland_yutani.dm" #include "code\game\machinery\aicore_lockdown.dm" #include "code\game\machinery\air_alarm.dm" #include "code\game\machinery\air_sensor.dm" @@ -1090,10 +1098,10 @@ #include "code\game\objects\items\legcuffs.dm" #include "code\game\objects\items\lightstick.dm" #include "code\game\objects\items\misc.dm" -#include "code\game\objects\items\old_research.dm" #include "code\game\objects\items\ore.dm" #include "code\game\objects\items\paint.dm" #include "code\game\objects\items\pamphlets.dm" +#include "code\game\objects\items\research_upgrades.dm" #include "code\game\objects\items\shards.dm" #include "code\game\objects\items\stock_parts.dm" #include "code\game\objects\items\trash.dm" @@ -1131,11 +1139,7 @@ #include "code\game\objects\items\devices\pinpointer.dm" #include "code\game\objects\items\devices\pipe_painter.dm" #include "code\game\objects\items\devices\portable_vendor.dm" -#include "code\game\objects\items\devices\RCD.dm" -#include "code\game\objects\items\devices\RSF.dm" -#include "code\game\objects\items\devices\RSP.dm" #include "code\game\objects\items\devices\scanners.dm" -#include "code\game\objects\items\devices\suit_cooling.dm" #include "code\game\objects\items\devices\taperecorder.dm" #include "code\game\objects\items\devices\teleportation.dm" #include "code\game\objects\items\devices\transfer_valve.dm" @@ -1244,7 +1248,6 @@ #include "code\game\objects\items\storage\toolbox.dm" #include "code\game\objects\items\storage\toolkit.dm" #include "code\game\objects\items\storage\wallets.dm" -#include "code\game\objects\items\tanks\jetpack.dm" #include "code\game\objects\items\tanks\tank_types.dm" #include "code\game\objects\items\tanks\tanks.dm" #include "code\game\objects\items\tools\cleaning_tools.dm" @@ -1308,6 +1311,7 @@ #include "code\game\objects\structures\prop_mech.dm" #include "code\game\objects\structures\props.dm" #include "code\game\objects\structures\reagent_dispensers.dm" +#include "code\game\objects\structures\roof.dm" #include "code\game\objects\structures\safe.dm" #include "code\game\objects\structures\shower.dm" #include "code\game\objects\structures\signs.dm" @@ -1340,7 +1344,6 @@ #include "code\game\objects\structures\crates_lockers\closets\gimmick.dm" #include "code\game\objects\structures\crates_lockers\closets\job_closets.dm" #include "code\game\objects\structures\crates_lockers\closets\l3closet.dm" -#include "code\game\objects\structures\crates_lockers\closets\malfunction.dm" #include "code\game\objects\structures\crates_lockers\closets\utility_closets.dm" #include "code\game\objects\structures\crates_lockers\closets\wall_locker.dm" #include "code\game\objects\structures\crates_lockers\closets\wardrobe.dm" @@ -1404,7 +1407,6 @@ #include "code\game\verbs\ooc.dm" #include "code\game\verbs\preferences.dm" #include "code\game\verbs\records.dm" -#include "code\game\verbs\who.dm" #include "code\modules\trigger.dm" #include "code\modules\admin\admin.dm" #include "code\modules\admin\admin_ranks.dm" @@ -1734,7 +1736,6 @@ #include "code\modules\economy\cash.dm" #include "code\modules\economy\economy_misc.dm" #include "code\modules\economy\EFTPOS.dm" -#include "code\modules\economy\TradeDestinations.dm" #include "code\modules\emoji\emoji_parse.dm" #include "code\modules\escape_menu\admin_buttons.dm" #include "code\modules\escape_menu\details.dm" @@ -1779,6 +1780,7 @@ #include "code\modules\gear_presets\uscm.dm" #include "code\modules\gear_presets\uscm_dress.dm" #include "code\modules\gear_presets\uscm_event.dm" +#include "code\modules\gear_presets\uscm_forecon.dm" #include "code\modules\gear_presets\uscm_medical.dm" #include "code\modules\gear_presets\uscm_police.dm" #include "code\modules\gear_presets\uscm_ship.dm" @@ -2129,12 +2131,12 @@ #include "code\modules\mob\living\simple_animal\hostile\retaliate\clown.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\drone.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\retaliate.dm" -#include "code\modules\mob\new_player\body_type.dm" -#include "code\modules\mob\new_player\ethnicity.dm" +#include "code\modules\mob\new_player\body.dm" #include "code\modules\mob\new_player\login.dm" #include "code\modules\mob\new_player\logout.dm" #include "code\modules\mob\new_player\new_player.dm" #include "code\modules\mob\new_player\preferences_setup.dm" +#include "code\modules\mob\new_player\skin_color.dm" #include "code\modules\mob\new_player\sprite_accessories\facial_hair.dm" #include "code\modules\mob\new_player\sprite_accessories\hair.dm" #include "code\modules\mob\new_player\sprite_accessories\hair_gradients.dm" @@ -2269,6 +2271,7 @@ #include "code\modules\reagents\chemistry_machinery\pandemic.dm" #include "code\modules\reagents\chemistry_machinery\reagent_analyzer.dm" #include "code\modules\reagents\chemistry_machinery\reagent_grinder.dm" +#include "code\modules\reagents\chemistry_machinery\xenomorph_analyzer.dm" #include "code\modules\reagents\chemistry_properties\chem_property.dm" #include "code\modules\reagents\chemistry_properties\prop_negative.dm" #include "code\modules\reagents\chemistry_properties\prop_neutral.dm" @@ -2326,7 +2329,6 @@ #include "code\modules\surgery\brainrepair.dm" #include "code\modules\surgery\chestburster.dm" #include "code\modules\surgery\eye.dm" -#include "code\modules\surgery\face.dm" #include "code\modules\surgery\generic.dm" #include "code\modules\surgery\headreattach.dm" #include "code\modules\surgery\implant.dm" @@ -2341,6 +2343,7 @@ #include "code\modules\surgery\surgery_steps.dm" #include "code\modules\surgery\surgery_toggle.dm" #include "code\modules\surgery\tendwounds.dm" +#include "code\modules\surgery\xeno.dm" #include "code\modules\teleporters\teleporter.dm" #include "code\modules\teleporters\teleporter_admin_verbs.dm" #include "code\modules\teleporters\teleporter_console.dm" @@ -2409,6 +2412,7 @@ #include "code\modules\vehicles\apc\apc_medical.dm" #include "code\modules\vehicles\apc\interior.dm" #include "code\modules\vehicles\arc\arc.dm" +#include "code\modules\vehicles\arc\interior.dm" #include "code\modules\vehicles\arc\verbs.dm" #include "code\modules\vehicles\hardpoints\hardpoint.dm" #include "code\modules\vehicles\hardpoints\armor\armor.dm" diff --git a/config/example/config.txt b/config/example/config.txt index 0aff7ee6def9..d63e6822465c 100644 --- a/config/example/config.txt +++ b/config/example/config.txt @@ -253,3 +253,8 @@ GAMEMODE_DEFAULT Extended CLIENT_ERROR_VERSION 514 #CLIENT_ERROR_BUILD 1589 #CLIENT_ERROR_MESSAGE Your version of BYOND is too old, may have issues, and is blocked from accessing this server. + +## GITHUB API +#GITHUB_APP_API +#REPO_NAME cmss13 +#ORG cmss13-devs \ No newline at end of file diff --git a/dependencies.sh b/dependencies.sh index e558b0087f91..e0da4aa75f66 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -8,7 +8,7 @@ export BYOND_MAJOR=515 export BYOND_MINOR=1627 #rust_g git tag -export RUST_G_VERSION=2.1.0 +export RUST_G_VERSION=3.3.0 #node version export NODE_VERSION=20 @@ -18,4 +18,4 @@ export NODE_VERSION_LTS=20.12.0 export SPACEMAN_DMM_VERSION=suite-1.8 # Python version for mapmerge and other tools -export PYTHON_VERSION=3.7.9 +export PYTHON_VERSION=3.9.0 diff --git a/html/changelogs/AutoChangeLog-pr-6695.yml b/html/changelogs/AutoChangeLog-pr-6695.yml new file mode 100644 index 000000000000..0076e7533c6b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-6695.yml @@ -0,0 +1,5 @@ +author: "TheManWithNoHands" +delete-after: True +changes: + - code_imp: "adds flags to cone, allowing it to be worn on head" + - imageadd: "added on mob sprites for cone" \ No newline at end of file diff --git a/html/changelogs/archive/2024-06.yml b/html/changelogs/archive/2024-06.yml index a1711354b286..4075db8b6a2c 100644 --- a/html/changelogs/archive/2024-06.yml +++ b/html/changelogs/archive/2024-06.yml @@ -1,3 +1,258 @@ 2024-06-01: Zonespace27: - balance: Lifeboats now support surgery. +2024-06-04: + AndroBetel: + - qol: Added radial menu to accessory removal + Huffie56: + - balance: for burrower in whiskey outpost add the ability to make tunnel but remove + the ability to burrow. + - balance: add C4 to the wo weapon vendor. + - balance: updating the clothing surplus vendor on to be as close as main mode as + possible. + realforest2001: + - admin: Added ckey log to ordering ASRS. +2024-06-05: + Huffie56: + - maptweak: remove emergency shutter that aren't on the frontier between two areas. + - maptweak: added emergency shutter that are missing on the frontier between two + areas. + TheGamerdk: + - rscadd: All officers and NCO's can now recommend people for medals. + coldironwarrior: + - rscadd: Doctors will spawn in dark blue scrubs by default; Setting your preferred + job title to "Surgeon" for doctor roles will now spawn you in green scrubs + realforest2001: + - rscadd: Added a print button to the ASRS audit log. + - bugfix: Changing an Identification Computer to is_weyland (formerly is_centcom) + now works correctly and allows assignment of corporate accesses or presets. + - code_imp: Added two procs for interpreting WY access information in the UI. + - code_imp: Added separate role groups for PMC and Corporate job defines. + - rscadd: Added ACCESS_WY_DATABASE as a requirement to use the WY subtype console. + - rscadd: Added a WY subtype for crew monitor. + - code_imp: Renamed the faction defines explicitly relating to static defences due + to confusion over FACTION_WY and FACTION_WEYLAND. + - rscadd: Added Forsaken sub category to orbit menu. Also adds an "Other" sub category + for xeno hives, to split the main hive on its own. + - code_imp: Changed xenoSplitter to pull the hivenumber rather than base things + on the name. + - rscadd: Adds USCM Observer preset, a copy of CO with a different name. + - rscadd: Added cameras to Working Joe uniforms. + vero5123: + - bugfix: Fixes overwatch console coordinate comment UI crash + - bugfix: Fixes chat UI crash after entering a custom font +2024-06-07: + Blundir: + - rscadd: contraband ammo selection in black market + - rscadd: tons of new ammo boxes + GrrrKitten: + - rscadd: replaces the old ethnicity system with a new skintone system + - imageadd: Resprites humans, adds 9 new mix and match body options to replace the + old 3 options + - rscadd: resprites dogtags and adds an accessory dogtag that can be made visible + via attaching to suit/armor + - imageadd: Touches up a lot of the underwear sprites +2024-06-08: + Drathek: + - bugfix: Fixed larva and hugger emotes performing no stat or muted or cooldown + checks + - bugfix: Fixed round time having the wrong timezone offset because of an engine + change to time2text + - bugfix: Fixed linked airlocks destroying their linked airlock incorrectly + Drulikar: + - bugfix: Fixed some usages of the proc range such as for delimbing + TheGamerdk: + - bugfix: Your prayers have been received by the gods will now only be said once + per prayer + coldironwarrior: + - rscdel: removes the nazi jacket sprite from suits.dmi +2024-06-09: + harryob: + - bugfix: predators are not missing the space between their torso and legs + hislittlecuzingames: + - balance: Set CT free plasteel to 40 and added APC Circuit board + realforest2001: + - bugfix: Fixed the USCM Observer icon not displaying. Forest dumb. +2024-06-10: + Kivts, SubjectD9341, Zenith.: + - rscadd: Xenomorph Harvesting Surgery. Allows research to operate dead xenomorphs + to take out their organ. + - rscadd: The Xenomorph analyzer, uses organs extracted from dead xenomorphs, which + when processed gives points to spend on physical upgrades. + - rscadd: a number of machinery upgrades for autodoc, sleeper, and other upgrades + or bonuses research can decide to spend their points on + - rscdel: passive generation increase of research credits is removed + ThePiachu: + - spellcheck: Fixed a typo in Admin Game Panel +2024-06-11: + Zonespace27: + - balance: All squad roles can now use M707 pamphlets + - bugfix: Skillless M707 spotting scopes now consistently work. + - bugfix: M707 magazine overlay no longer disappears when the gun is empty with + an inserted magazine + - bugfix: Fixed M707 being usable without the correct trait +2024-06-13: + Drathek: + - bugfix: Fixed some jobs having no minimap icon in orbit menu + - bugfix: Fixed ghost huds resetting settings if you were ghostized while disconnected + - bugfix: Fixed larva queue time of death not getting recorded if client is missing + TheGamerdk: + - bugfix: Command can now access the helmet cameras of any deploying command staff + ThePiachu: + - bugfix: CLF Engineers now properly spawn with insulated gloves again. + Zonespace27: + - admin: Potentially laggy uses of the drop-bomb verb now have a confirmation warning. + cuberound: + - balance: dropship fabricator extra budget price 12 -> 6 , 2500 -> 2000 points + - balance: supply extra budget 15 -> 7, 10k -> 5k + - balance: all OB 10 -> 5 intel points, one shell and five fuel + fira: + - rscadd: Added a Tutorial for tending to the Requisitions Line +2024-06-15: + AndroBetel: + - balance: Pistol mag pouch now has 4 slots instead of 3. + Blundir: + - imageadd: resprite of spearhead cmb revolver + Comxy: + - rscadd: Adds W-Y branded sentries. + - imageadd: Adds W-Y defenses sprites. + Drathek: + - bugfix: Fixed Queen Mother being unable to award a Queen + - rscadd: Added preference for toggling the fax machine received sound as an observer + TheGamerdk: + - bugfix: Fixes small issue allowing medals to teleport + Zonespace, Zydras: + - bugfix: Vehicle elevator no longer incorrectly rotates vehicles + - rscadd: New ARC exterior and interior + - balance: ARC now fits 5 humans instead of 7 + - balance: ARC now fits 4 xenos intead of 5 + - balance: ARC's RE700 turret armor pen 10->15 + - balance: On account of the smaller size, the ARC no longer has a nanomed. + Zonespace27: + - bugfix: Pyro spec flamer should be linked to its tank more consistently. + - qol: Added some missing objectives to the xenomorph - basic tutorial. + harryob: + - bugfix: the preview window in character setup now remains visible when looking + at it as a ghost +2024-06-16: + Drathek: + - bugfix: Fixed wallets as IDs breaking many things + - admin: Added niche logging for revival attempts +2024-06-17: + GrrrKitten: + - bugfix: fixes a bug that fully jammed guns being used in akimbo + Steelpoint: + - mapadd: Civilian Clothing Storage Vendors have been added to the Gym on the USS + Almayer. These allow anyone to vend civilian clothes. These vendors require + CIC access to unlock however. + TheGamerdk: + - bugfix: The game no longer tricks predators and synths into thinking they're more + damaged than they actually are. + - rscadd: Special insert synthetics on most maps will now be able to gain access + to synthetic equipment vendors, provided they're given access by USCM command + staff. (Synth access on their ID) + coldironwarrior: + - bugfix: fixed corpsmen gloves and the map being mutually exclusive in the corpsman + vendor + - bugfix: incen OB fire now makes blue light. + iloveloopers: + - qol: Grow boxes can now be destroyed by xenos. + realforest2001: + - bugfix: Medical cryo tubes no longer delete their occupant when destroyed. + vero5123: + - bugfix: fixes vampire being able to execute hugged marines + - bugfix: fixes cas being able to target shipside signals +2024-06-19: + Diegoflores31: + - bugfix: Fixes CO being unable to award medals. + Drathek: + - bugfix: Fixed various equipment_presets not getting cached or looked up correctly + Git-Nivrak: + - qol: Dir-assist will now prioritize non-xenos over xenos. + Red-byte3D: + - balance: Synthetic Protective Form now takes 150 charge instead of 50. + TheGamerdk: + - rscadd: Overwatch console shows dead marines by default. + VileBeggar: + - soundadd: The M44 combat revolver has had its firing sound changed. + wshuwshuwshi: + - bugfix: Adds a 1.5x modifier to the amount taken from larva timer based on chem + property level + - bugfix: swaps the 1.5 multiplier for a delta_time multiplier + - bugfix: improved the formatting of the code to have proper spacing +2024-06-20: + Drathek cuberound: + - balance: After three minutes from round start, landing zones will be covered in + a deadly gas + - balance: First dropship deployment will clear gas, and first dropship arrival + will deploy 4 sentries that last 20 minutes + - refactor: Refactored smoke code + - maptweak: Expanded LZ areas on Trijent Dam and Kutjevo Refinery + - maptweak: Shrunk LZ1 on Shivas Snowball and LZ2 on LV624 slightly + - maptweak: Removed fog on Chances Claim since it will be replaced by smoke and + tweaked southern tunnel area to not be considered a LZ + - bugfix: Fixed weird LZ lighting on some maps + - spellcheck: Replaced/removed synth coughing emotes in smoke + Git-Nivrak: + - qol: Added an hud icon for vampires that lets them know when an enemy can be executed. + Nomoresolvalou: + - rscadd: Added masks to synth snowflake vendor + Red-byte3D: + - balance: Re-adds Vehicle Crewmen + - balance: Tank now unlocks at 200 pop. + - balance: Re-adds tank and its attachements back to the tank-bay. + - balance: You can no longer have the ARC & TANK in the same round. if the arc is + bought the tank is unavailable and vice versa. + Zonespace27: + - rscdel: Pyro flamers now start unlinked from their tanks again + iloveloopers: + - rscadd: Added new upgraded incinerator fuel tanks printable by the biomass analyzer. + vero5123: + - rscadd: Adds the ability for users to make bug reports in-game + - ui: New bug report system ui + zzzmike: + - qol: examining eggs/morphers tells you current number of huggers and the limit +2024-06-21: + Drathek: + - bugfix: Fixed the core showing lesser drone counts to humans when examined + Git-Nivrak: + - balance: You can no longer extinguish yourself with your own acid spray. + - balance: Queen will now briefly shove xenos if they are in a tile she is trying + to move to, preventing bodyblock. + cuberound: + - balance: patting fire on ground harms the xeno, more intense fire means more harm + iloveloopers: + - balance: Fence health nerfed, now can be 2 tapped by xenos + - qol: Fuel cell recyclers no longer block movement + - qol: Showcases are now slashable by xenos + zzzmike: + - bugfix: more survivors now listed in survivor category on observe menu +2024-06-22: + Red-byte3D: + - balance: Vampire tail jab now only stuns if you knockback an enemy into an obstacle. + - spellcheck: Vampire lurkers no longer "throw it back" after hitting somebody with + their Tail Jab +2024-06-23: + Drathek: + - bugfix: Fixed LZ gas not penetrating destructible walls + ihatethisengine2: + - bugfix: simple animals don't block projectiles after death anymore + iloveloopers: + - balance: Custom research chemicals with an intensityfire above or equal to 50 + will now burn white. +2024-06-28: + Drathek: + - bugfix: Fixed a crash in the Hotkey menu when searching by key when filtered + - bugfix: Fixed/Added support for various keys (e.g. keypad and media keys) + Git-Nivrak: + - bugfix: Fixes being able to draw weapons when knocked down + HeresKozmos: + - maptweak: Filled in a hole in the map. + - maptweak: Fixed an area in the easter egg section of Sorokyne + coldironwarrior: + - spellcheck: fixed a few typos in the xeno bioscan announcement + kiVts: + - code_imp: Prevented potential unintended behavior with research upgrade items + on initialize + private-tristan: + - qol: Facehuggers no longer show as having any plasma diff --git a/html/changelogs/archive/2024-07.yml b/html/changelogs/archive/2024-07.yml new file mode 100644 index 000000000000..e1d117dbccd8 --- /dev/null +++ b/html/changelogs/archive/2024-07.yml @@ -0,0 +1,249 @@ +2024-07-03: + Blundir: + - soundadd: larva talking sounds + - imageadd: larva moving sprites, tweak of standing ones +2024-07-04: + Doubleumc: + - qol: ghost health scan & follow right-click actions work at any range + - admin: '"InView" procs use your current view range (e.g. ghost zoom)' + Nomoresolvalou: + - balance: The headset in the synthetic equipment vendor has been replaced with + a synthetic headset as opposed to a senior command headset + zzzmike: + - spellcheck: more clarity for facehugger/lesser drone text +2024-07-05: + AndroBetel: + - rscadd: Adds "Iron teeth" trait. + GrrrKitten: + - qol: Makes screenshake look less low FPS/jumpy + Venuska1117: + - bugfix: Make non-toxic water stop glowing. + coldironwarrior: + - spellcheck: fixed the medical rig belt's description +2024-07-06: + Drathek: + - spellcheck: Fix grammar and plurality for vehicles and their hardpoints +2024-07-07: + Blundir: + - rscadd: white corpsman helmet + Contrabang: + - rscadd: Re-added a fax machine to the WY ERT station + Doubleumc: + - code_imp: environmental reverb applies more reliably and only to positional sounds + - imageadd: adds CMP tracker sprites + - rscadd: adds a SEA headset, can track CO, XO, CMP + - rscadd: adds handheld crew monitor in SEATech vendor + - bugfix: right-click Examine no longer appears for interface buttons + GrrrKitten: + - ui: Swaps TM and MOTD order so that people actually see the MOTD + - admin: Removes the message for when no event info is input + realforest2001: + - code_imp: Changes OOC color settings for donators/non mentor/staff. + - admin: Mentors no longer receive debug logs as a result of being in GLOB.admins +2024-07-08: + ThePiachu: + - qol: Shotgun ammo boxes now behave like other ammo boxes in the Requisitions' + vendors. + - code_imp: Ammo box maping code now handles pre-populated boxes in vendors, letting + devs order them more neatly than before. + Zonespace27: + - bugfix: Fixed a rare case of people on shuttles being inexplicably deleted. + blackdragonTOW: + - code_imp: log the map name at round start + coldironwarrior: + - rscadd: adds olive green and grey scrubs + - spellcheck: cleaned up scrub descriptions + wshuwshuwshi: + - rscadd: Adds the Encephalophrasive property for chemicals + - rscdel: Removed bit of description that falsely said that higher potency affected + clarity of messages + - bugfix: Removes focusing from the combination to prevent conflict between focusing + and nerve-stimulating, thus preventing encephalophrasive from forming + - bugfix: Revises the second overdose to be for critical overdoses, as it was intended + to be + - code_imp: Swaps 'M' variables for 'chem_host' + - code_imp: rehauled how ability 'giving' is handled, and is now only processed + upon initial ingestion of the chemical instead of every tick + - rscadd: Adds a brief piece of flavor text upon initial ingestion. + zzzmike: + - bugfix: converts flash, flashbang to TG effect system, fixing issue(s) +2024-07-09: + AndroBetel: + - qol: Made splint breaking message bigger + Steelpoint: + - mapadd: The USS Kurtz has been added as a USCM affiliated ERT station. The design + off the USS Kurtz is based off of the USS Sulaco, from older versions of CM-SS13. + The USS Kurtz features the entire lower-deck and a snapshot of the upper deck. + - mapadd: The USCM CBRN ERT will use the USS Kurtz as their homebase. + kirieee: + - rscadd: Covert contractors added to the ERT pool +2024-07-10: + Steelpoint: + - rscadd: Marine force reconnaissance gear presets have been added for admin use. + - rscadd: ERT force reconnaissance have functional squad settings, including a squad + colour (green) and a radio channel. These settings do not apply for survivor + force reconnaissance marines. + - rscadd: A marine force reconnaissance distress signal has been added. Spawning + either a 6-man squad, or a 30-man platoon. These are currently for admin use + only. + - rscadd: A set of customized M3-R armour has been added for force reconnaissance + marines. It has comparable defensive values to M3 armour but has the speed slowdown + of M3-L armour. Only ERT force reconnaissance marines will spawn with this. + hislittlecuzingames: + - rscadd: Multiple tools, and welding visor to SO Locker + - qol: Adds free bayonet to Staff Officer Locker +2024-07-11: + Blundir: + - rscadd: jtac and Intel kits to ASRS store + - rscadd: Intel kit to IO points vendor + - balance: intel kit now has large doc pouch instead of small + - balance: jtac kit now has radiopack + Diegoflores31: + - imageadd: changes xeno intent icon for a cooler one. + Doubleumc: + - imageadd: adds CMP tracker sprites for all HUD options + Drathek: + - maptweak: Removed var edits from open turfs to fix ScrapeAway resetting the turf + (e.g. xenos building resin walls) on basically all maps + - maptweak: Fixed bad dir var edits on various map + - maptweak: Fixed stacked structures on various maps + Git-Nivrak: + - balance: Hivelords now have meson vision + - rscadd: Added a toggle for meson vision for hivelord and burrower + Steelpoint: + - rscadd: VAISO Covert Operatives will now spawn with a Night Vision Optic in their + helmet. + Unknownity: + - bugfix: Burrowers now see themselves as partly transparent when burrowed. + blackdragonTOW: + - soundadd: Power Loader sounds have been normalized to -6db + iloveloopers: + - bugfix: Demolitions scanner now properly works for incinerator tanks. + - spellcheck: Fixed some capitalization with custom incinerator tanks. +2024-07-12: + Kivts: + - ui: The Company spent some money to upgrade the chemical simulator to work on + the TGUI, Including a few prepaid features. +2024-07-14: + kiVts: + - bugfix: Denied request on req is working again +2024-07-15: + cuberound: + - rscadd: roof structures added, can be also used for lattices and billboards, go + transparent when you are near them +2024-07-16: + Git-Nivrak: + - rscdel: Mortar shells no longer blow up their payload, instead they will create + a small fixed explosion. + Nomoresolvalou: + - rscadd: Added neckties and stethoscope to the synthetic snowflake vendor + Steelpoint: + - balance: The XM88 now deals higher damage per-bullet at the cost of a slightly + lower rate of fire and accuracy. This is identical to as if it had a barrel + charger attached to it. + - balance: Per the above, the barrel charger is no longer compatible with the XM88. +2024-07-17: + AndroBetel: + - rscadd: MP5 has 10% chance to spawn with M203 attached. + VileBeggar: + - rscadd: The CIC armoury now contains a plantable flag of the United Americas. + Zonespace27: + - rscadd: Added a tutorial for xenomorph Abominations. You must complete the tutorial + before being able to roll for Abomination. + harryob: + - bugfix: queens can remote build again + ihatethisengine: + - balance: being mid-paradrop won't trigger traps, fire and stray bullets before + you land. + realforest2001: + - bugfix: Fixes riflemen spec_kits not being usable by riflemen. +2024-07-18: + cuberound: + - rscdel: Removed Rapid-Service-Fabricator, rapid construction device and Rapid-Seed-Producer + (old ss13 junk) +2024-07-19: + Drathek: + - bugfix: Fixed light blue scrubs having no cost in snowflake vendor. + SpypigDev: + - bugfix: SO Armory vendors no longer infinitely supply knives + TotalEpicness5, Triiodine, monkeyfist, Blundir: + - rscadd: Adds the G2 electroshock grenade. This grenade does not stun nor deal + serious damage to xenos, but it stuns via electric shock. It can create EMP-like + effects when faced with electronic devices like sentries, synths, Area Power + Controllers, etc. It's damage is reduced by energy armor. + - bugfix: take_overall_armoured_damage now can actually deal burn damage + - balance: Marine armor has a small bit of energy armor added back. Heavy armor + has slightly more protection than medium/light. + - bugfix: Mines now check for explosive antigrief checks + VileBeggar: + - balance: The DRG-N Offensive Flamer Unit now fires a 3-tile wide glob of high-combustion + napalm. + Zonespace, Vile Beggar: + - rscadd: Handheld planted flags are now indestructible and do a small amount of + damage on hit. + - bugfix: Plantable flags can no longer be duplicated. + - rscdel: Planting a UA flag no longer forces anyone but the planter to warcry. + cuberound: + - bugfix: having left hand broken and not splinted has the same effect on wheelchair + movement speed as right hand + - bugfix: corrects holoround highligh alpha value + - rscdel: Removed malfanction closet + kiVts: + - bugfix: Surgery sound and alike is fixed + realforest2001: + - rscadd: The Combat Correspondant's civilian equipment is now in it's own category + to make it easier to tell why you can't click it as the military version. +2024-07-20: + Doubleumc: + - rscdel: Removed facial disfigurement + - code_imp: Fixed and refactored probability weighting for pick_weight + - bugfix: no longer stab with utensil when trying to feed while target full + Drathek: + - admin: Added causes for explosion starts to attack logs + Steelpoint: + - rscadd: The Heavy Pulse Rifle (M41AE2) will now start with a pre-attached bipod. + To better inform players of its unique auto-fire function. + Zonespace27: + - bugfix: Fixed a large amount of objects activating erroneous functionality (like + an armor light) when using action buttons tied to that object. + - bugfix: Fixed a potential softlock in the abomination tutorial. + cuberound: + - rscdel: removes trade destinations (they were never used) + - balance: m56 cupola uses m56d ammo rather then standard sg ammo +2024-07-22: + BlackCrystalic: + - bugfix: Queen maturity timer + Blackcrystalic: + - qol: port who/staffwho to TGUI + ThePiachu: + - refactor: Made XM88 box code more uniform with other handful boxes. + zzzmike: + - bugfix: lifeboat launch console is no longer slashable / acidable +2024-07-23: + cuberound: + - code_imp: cleans up water particle code +2024-07-24: + Doubleumc: + - bugfix: sounds & motion detectors should be more reliable +2024-07-25: + cuberound: + - rscdel: removes /obj/item/device/suit_cooling_unit and get_pressure_weakness() +2024-07-26: + BlackCrystalic: + - qol: if server take too long to pre init all before lobby art, players will see + lobbyart "loading" + Blundir: + - bugfix: fixed runner having no gib animation + - bugfix: fixed gib remains being invisible + - imageadd: boiler gib animation + - imageadd: larva gib remains + - imageadd: shoes icons resprite + Steelpoint: + - imageadd: The Sniper and Anti-Material Rifle Specialists will now use an urban + camouflage sprite for their ghillie suit instead of a green camouflage. + realforest2001: + - rscadd: Synthetics and Yautja now spawn with the Iron Teeth trait, not dropping + items held in their mouth. + rythenx: + - rscadd: more options for hats to ASO vendor to bring it in line with what SO has + available diff --git a/icons/effects/sebb.dmi b/icons/effects/sebb.dmi new file mode 100644 index 000000000000..288a1023ce3d Binary files /dev/null and b/icons/effects/sebb.dmi differ diff --git a/icons/lobby/title_loading.dmi b/icons/lobby/title_loading.dmi new file mode 100644 index 000000000000..3aa2f5ad52c2 Binary files /dev/null and b/icons/lobby/title_loading.dmi differ diff --git a/icons/misc/tutorial.dmi b/icons/misc/tutorial.dmi index 31c9f72d3853..aee42db11bd7 100644 Binary files a/icons/misc/tutorial.dmi and b/icons/misc/tutorial.dmi differ diff --git a/icons/mob/hud/alien_standard.dmi b/icons/mob/hud/alien_standard.dmi index 8bad0b44acc9..0f3902ebf27d 100644 Binary files a/icons/mob/hud/alien_standard.dmi and b/icons/mob/hud/alien_standard.dmi differ diff --git a/icons/mob/hud/human_bronze.dmi b/icons/mob/hud/human_bronze.dmi index 11a724057245..7548f66b05b6 100644 Binary files a/icons/mob/hud/human_bronze.dmi and b/icons/mob/hud/human_bronze.dmi differ diff --git a/icons/mob/hud/human_dark.dmi b/icons/mob/hud/human_dark.dmi index e572dcb8353b..5b75acf1b360 100644 Binary files a/icons/mob/hud/human_dark.dmi and b/icons/mob/hud/human_dark.dmi differ diff --git a/icons/mob/hud/human_glass.dmi b/icons/mob/hud/human_glass.dmi index 19fb430d8492..b3d8f56ce4e6 100644 Binary files a/icons/mob/hud/human_glass.dmi and b/icons/mob/hud/human_glass.dmi differ diff --git a/icons/mob/hud/human_green.dmi b/icons/mob/hud/human_green.dmi index 9b235a75d870..a07e7a327154 100644 Binary files a/icons/mob/hud/human_green.dmi and b/icons/mob/hud/human_green.dmi differ diff --git a/icons/mob/hud/human_grey.dmi b/icons/mob/hud/human_grey.dmi index 5a522dc30564..6c5c2f326500 100644 Binary files a/icons/mob/hud/human_grey.dmi and b/icons/mob/hud/human_grey.dmi differ diff --git a/icons/mob/hud/human_holo.dmi b/icons/mob/hud/human_holo.dmi index 1554480bd37d..568e364314e9 100644 Binary files a/icons/mob/hud/human_holo.dmi and b/icons/mob/hud/human_holo.dmi differ diff --git a/icons/mob/hud/human_midnight.dmi b/icons/mob/hud/human_midnight.dmi index c6fc989fec2d..78a0b105610e 100644 Binary files a/icons/mob/hud/human_midnight.dmi and b/icons/mob/hud/human_midnight.dmi differ diff --git a/icons/mob/hud/human_old.dmi b/icons/mob/hud/human_old.dmi index e8b682c7c831..66e3f846615b 100644 Binary files a/icons/mob/hud/human_old.dmi and b/icons/mob/hud/human_old.dmi differ diff --git a/icons/mob/hud/human_orange.dmi b/icons/mob/hud/human_orange.dmi index 8a46dad89ed5..4ab6f7558cbd 100644 Binary files a/icons/mob/hud/human_orange.dmi and b/icons/mob/hud/human_orange.dmi differ diff --git a/icons/mob/hud/human_red.dmi b/icons/mob/hud/human_red.dmi index 06725e04a683..17de42f5a17c 100644 Binary files a/icons/mob/hud/human_red.dmi and b/icons/mob/hud/human_red.dmi differ diff --git a/icons/mob/hud/human_white.dmi b/icons/mob/hud/human_white.dmi index be8ad63426ac..7b6429e0ed04 100644 Binary files a/icons/mob/hud/human_white.dmi and b/icons/mob/hud/human_white.dmi differ diff --git a/icons/mob/hud/marine_hud.dmi b/icons/mob/hud/marine_hud.dmi index 8eefce871099..def6cdd56a0e 100644 Binary files a/icons/mob/hud/marine_hud.dmi and b/icons/mob/hud/marine_hud.dmi differ diff --git a/icons/mob/hud/sec_hud.dmi b/icons/mob/hud/sec_hud.dmi index 9cc3e66c3e0b..f0fb3b318d0a 100644 Binary files a/icons/mob/hud/sec_hud.dmi and b/icons/mob/hud/sec_hud.dmi differ diff --git a/icons/mob/humans/onmob/head_0.dmi b/icons/mob/humans/onmob/head_0.dmi index 9fc0bc82c123..4a4338eac4c2 100644 Binary files a/icons/mob/humans/onmob/head_0.dmi and b/icons/mob/humans/onmob/head_0.dmi differ diff --git a/icons/mob/humans/onmob/head_1.dmi b/icons/mob/humans/onmob/head_1.dmi index ab93b68640fc..696ab464252d 100644 Binary files a/icons/mob/humans/onmob/head_1.dmi and b/icons/mob/humans/onmob/head_1.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_0.dmi b/icons/mob/humans/onmob/items_lefthand_0.dmi index 7d887799815b..a4396aeb93de 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_0.dmi and b/icons/mob/humans/onmob/items_lefthand_0.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_1.dmi b/icons/mob/humans/onmob/items_lefthand_1.dmi index 91dc908a8293..cb80cb6cc10c 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_1.dmi and b/icons/mob/humans/onmob/items_lefthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_64.dmi b/icons/mob/humans/onmob/items_lefthand_64.dmi index 057d7f1cad66..d005d8c5f049 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_64.dmi and b/icons/mob/humans/onmob/items_lefthand_64.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_0.dmi b/icons/mob/humans/onmob/items_righthand_0.dmi index 184946a13f0b..582262e88289 100644 Binary files a/icons/mob/humans/onmob/items_righthand_0.dmi and b/icons/mob/humans/onmob/items_righthand_0.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_1.dmi b/icons/mob/humans/onmob/items_righthand_1.dmi index c5b67e97c2e1..7bad7eb2c583 100644 Binary files a/icons/mob/humans/onmob/items_righthand_1.dmi and b/icons/mob/humans/onmob/items_righthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_64.dmi b/icons/mob/humans/onmob/items_righthand_64.dmi index 599ef5935f2e..72335e39bfff 100644 Binary files a/icons/mob/humans/onmob/items_righthand_64.dmi and b/icons/mob/humans/onmob/items_righthand_64.dmi differ diff --git a/icons/mob/humans/onmob/suit_1.dmi b/icons/mob/humans/onmob/suit_1.dmi index c372b8a6d72c..85266a2077ac 100644 Binary files a/icons/mob/humans/onmob/suit_1.dmi and b/icons/mob/humans/onmob/suit_1.dmi differ diff --git a/icons/mob/humans/onmob/ties.dmi b/icons/mob/humans/onmob/ties.dmi index 535e2cc69181..ac563deffbac 100644 Binary files a/icons/mob/humans/onmob/ties.dmi and b/icons/mob/humans/onmob/ties.dmi differ diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi index d24c05123cd4..2dd645697684 100644 Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ diff --git a/icons/mob/humans/species/r_human.dmi b/icons/mob/humans/species/r_human.dmi index 3e8f63d9f312..4ab300efe5dc 100644 Binary files a/icons/mob/humans/species/r_human.dmi and b/icons/mob/humans/species/r_human.dmi differ diff --git a/icons/mob/humans/species/r_predator.dmi b/icons/mob/humans/species/r_predator.dmi index e8fe1c1170f2..192f7d698b86 100644 Binary files a/icons/mob/humans/species/r_predator.dmi and b/icons/mob/humans/species/r_predator.dmi differ diff --git a/icons/mob/humans/undershirt.dmi b/icons/mob/humans/undershirt.dmi index 225d413ae0f4..468778851c4c 100644 Binary files a/icons/mob/humans/undershirt.dmi and b/icons/mob/humans/undershirt.dmi differ diff --git a/icons/mob/humans/underwear.dmi b/icons/mob/humans/underwear.dmi index b639d0a61535..3276ca12aeb8 100644 Binary files a/icons/mob/humans/underwear.dmi and b/icons/mob/humans/underwear.dmi differ diff --git a/icons/mob/mob.dmi b/icons/mob/mob.dmi index 179d7076f8c1..f3485de9aa9a 100644 Binary files a/icons/mob/mob.dmi and b/icons/mob/mob.dmi differ diff --git a/icons/mob/xenos/larva.dmi b/icons/mob/xenos/larva.dmi index d07dad82ed29..f2e6a31ea36d 100644 Binary files a/icons/mob/xenos/larva.dmi and b/icons/mob/xenos/larva.dmi differ diff --git a/icons/mob/xenos/wounds.dmi b/icons/mob/xenos/wounds.dmi index 730e367f43ae..1b8ca0cebdd5 100644 Binary files a/icons/mob/xenos/wounds.dmi and b/icons/mob/xenos/wounds.dmi differ diff --git a/icons/mob/xenos/xenomorph_64x64.dmi b/icons/mob/xenos/xenomorph_64x64.dmi index 3fc4d942cd66..17fd4ae7fd5f 100644 Binary files a/icons/mob/xenos/xenomorph_64x64.dmi and b/icons/mob/xenos/xenomorph_64x64.dmi differ diff --git a/icons/obj/items/clothing/belts.dmi b/icons/obj/items/clothing/belts.dmi index 978479eecaa0..ecbc5fb84969 100644 Binary files a/icons/obj/items/clothing/belts.dmi and b/icons/obj/items/clothing/belts.dmi differ diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi index ff0aa3d08ec8..923a26b55c20 100644 Binary files a/icons/obj/items/clothing/cm_hats.dmi and b/icons/obj/items/clothing/cm_hats.dmi differ diff --git a/icons/obj/items/clothing/cm_suits.dmi b/icons/obj/items/clothing/cm_suits.dmi index c1910d21b599..8c39aa77c7d1 100644 Binary files a/icons/obj/items/clothing/cm_suits.dmi and b/icons/obj/items/clothing/cm_suits.dmi differ diff --git a/icons/obj/items/clothing/pouches.dmi b/icons/obj/items/clothing/pouches.dmi index 6a7af0d3e049..4c7ba6d4d856 100644 Binary files a/icons/obj/items/clothing/pouches.dmi and b/icons/obj/items/clothing/pouches.dmi differ diff --git a/icons/obj/items/clothing/shoes.dmi b/icons/obj/items/clothing/shoes.dmi index c4e01786e579..90e626503963 100644 Binary files a/icons/obj/items/clothing/shoes.dmi and b/icons/obj/items/clothing/shoes.dmi differ diff --git a/icons/obj/items/clothing/suits.dmi b/icons/obj/items/clothing/suits.dmi index 5057a89fe278..41e6be7e89b9 100644 Binary files a/icons/obj/items/clothing/suits.dmi and b/icons/obj/items/clothing/suits.dmi differ diff --git a/icons/obj/items/clothing/ties.dmi b/icons/obj/items/clothing/ties.dmi index 012eb4a9630a..63c7010db55a 100644 Binary files a/icons/obj/items/clothing/ties.dmi and b/icons/obj/items/clothing/ties.dmi differ diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi index 788e24bf46e6..e444d7a5a40a 100644 Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ diff --git a/icons/obj/items/items.dmi b/icons/obj/items/items.dmi index c4d34d3b790c..81a0e526f1b7 100644 Binary files a/icons/obj/items/items.dmi and b/icons/obj/items/items.dmi differ diff --git a/icons/obj/items/organs.dmi b/icons/obj/items/organs.dmi index 06bf5e302f45..0cbe238f7522 100644 Binary files a/icons/obj/items/organs.dmi and b/icons/obj/items/organs.dmi differ diff --git a/icons/obj/items/weapons/grenade.dmi b/icons/obj/items/weapons/grenade.dmi index 7ee5af737066..ca8aaf9afcd6 100644 Binary files a/icons/obj/items/weapons/grenade.dmi and b/icons/obj/items/weapons/grenade.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi index 8655a8bfcf2c..f01be20a48b4 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi b/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi index ff0c6d60d4ac..90c0f341dd88 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/text.dmi b/icons/obj/items/weapons/guns/ammo_boxes/text.dmi index d9a8d5da3fbc..124c40c1afea 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/text.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/text.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi index 5632ca31481e..7327bf6a611b 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi index 11eab502b0cf..6a8bbca97e4f 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi index caa62ef55605..17e7e6f221ae 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi differ diff --git a/icons/obj/items/weapons/guns/lineart.dmi b/icons/obj/items/weapons/guns/lineart.dmi index a746bce1716b..6ea81af6d088 100644 Binary files a/icons/obj/items/weapons/guns/lineart.dmi and b/icons/obj/items/weapons/guns/lineart.dmi differ diff --git a/icons/obj/structures/machinery/defenses/upp_defenses.dmi b/icons/obj/structures/machinery/defenses/upp_defenses.dmi new file mode 100644 index 000000000000..09313b374f36 Binary files /dev/null and b/icons/obj/structures/machinery/defenses/upp_defenses.dmi differ diff --git a/icons/obj/structures/machinery/defenses/wy_defenses.dmi b/icons/obj/structures/machinery/defenses/wy_defenses.dmi new file mode 100644 index 000000000000..a05da0cf7703 Binary files /dev/null and b/icons/obj/structures/machinery/defenses/wy_defenses.dmi differ diff --git a/icons/obj/structures/machinery/defenses/wy_heavy.dmi b/icons/obj/structures/machinery/defenses/wy_heavy.dmi new file mode 100644 index 000000000000..a6a7fbf49c8e Binary files /dev/null and b/icons/obj/structures/machinery/defenses/wy_heavy.dmi differ diff --git a/icons/obj/structures/machinery/defenses/wy_static.dmi b/icons/obj/structures/machinery/defenses/wy_static.dmi new file mode 100644 index 000000000000..92a890880221 Binary files /dev/null and b/icons/obj/structures/machinery/defenses/wy_static.dmi differ diff --git a/icons/obj/structures/machinery/science_machines_64x32.dmi b/icons/obj/structures/machinery/science_machines_64x32.dmi index 8defd1917720..ab4e42717f84 100644 Binary files a/icons/obj/structures/machinery/science_machines_64x32.dmi and b/icons/obj/structures/machinery/science_machines_64x32.dmi differ diff --git a/icons/obj/structures/plantable_flag.dmi b/icons/obj/structures/plantable_flag.dmi new file mode 100644 index 000000000000..c92311529be3 Binary files /dev/null and b/icons/obj/structures/plantable_flag.dmi differ diff --git a/icons/obj/structures/props/almayer_props64.dmi b/icons/obj/structures/props/almayer_props64.dmi index f47f19be9081..4b69179f5541 100644 Binary files a/icons/obj/structures/props/almayer_props64.dmi and b/icons/obj/structures/props/almayer_props64.dmi differ diff --git a/icons/obj/vehicles/arc.dmi b/icons/obj/vehicles/arc.dmi index f662d5475ac0..c13153072ee2 100644 Binary files a/icons/obj/vehicles/arc.dmi and b/icons/obj/vehicles/arc.dmi differ diff --git a/icons/obj/vehicles/interiors/arc.dmi b/icons/obj/vehicles/interiors/arc.dmi new file mode 100644 index 000000000000..4ab29a7400ff Binary files /dev/null and b/icons/obj/vehicles/interiors/arc.dmi differ diff --git a/icons/obj/vehicles/interiors/arc_chassis.dmi b/icons/obj/vehicles/interiors/arc_chassis.dmi new file mode 100644 index 000000000000..255687f8fa0d Binary files /dev/null and b/icons/obj/vehicles/interiors/arc_chassis.dmi differ diff --git a/interface/interface.dm b/interface/interface.dm index c9112160d94f..5b30eaa53bf7 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -62,14 +62,11 @@ set name = "Submit Bug" set desc = "Submit a bug." set hidden = TRUE - - if(tgui_alert(src, "Please search for the bug first to make sure you aren't posting a duplicate.", "No dupe bugs please", list("OK", "Cancel")) != "OK") - return - - if(tgui_alert(src, "This will open the GitHub in your browser. Are you sure?", "Confirm", list("Yes", "No")) != "Yes") + if(!usr) return + var/datum/tgui_bug_report_form/report = new(usr) - src << link(CONFIG_GET(string/githuburl)) + report.tgui_interact(usr) return /client/verb/set_fps() diff --git a/librust_g.so b/librust_g.so index 56625573d004..382d50e27fe2 100644 Binary files a/librust_g.so and b/librust_g.so differ diff --git a/maps/interiors/apc.dmm b/maps/interiors/apc.dmm index 2684ad8f0f75..f03d673d99b0 100644 --- a/maps/interiors/apc.dmm +++ b/maps/interiors/apc.dmm @@ -14,9 +14,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) "c" = ( /obj/structure/bed/chair/vehicle{ @@ -32,9 +30,7 @@ pixel_x = 8; pixel_y = -11 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, +/turf/open/shuttle/vehicle/floor_3_5, /area/interior/vehicle/apc) "d" = ( /obj/structure/bed/chair/vehicle{ @@ -45,9 +41,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, +/turf/open/shuttle/vehicle/floor_3_8_1, /area/interior/vehicle/apc) "e" = ( /obj/structure/interior_wall/apc{ @@ -62,9 +56,7 @@ name = "Right M56 FPW handle"; pixel_y = 2 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" - }, +/turf/open/shuttle/vehicle/floor_3_12, /area/interior/vehicle/apc) "g" = ( /obj/structure/interior_wall/apc{ @@ -83,9 +75,7 @@ /turf/open/void/vehicle, /area/space) "i" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_0_1_15" - }, +/turf/open/shuttle/vehicle/floor_0_1_15, /area/interior/vehicle/apc) "j" = ( /turf/open/void/vehicle, @@ -109,9 +99,7 @@ /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, +/turf/open/shuttle/vehicle/floor_3_9_1, /area/interior/vehicle/apc) "n" = ( /obj/structure/interior_wall/apc{ @@ -152,9 +140,7 @@ pixel_x = -32; tag = "rear center" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_13" - }, +/turf/open/shuttle/vehicle/floor_1_13, /area/interior/vehicle/apc) "t" = ( /obj/structure/interior_wall/apc{ @@ -164,9 +150,7 @@ /area/space) "u" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, +/turf/open/shuttle/vehicle/floor_3_6, /area/interior/vehicle/apc) "v" = ( /obj/structure/bed/chair/vehicle{ @@ -180,9 +164,7 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, +/turf/open/shuttle/vehicle/floor_3_9_1, /area/interior/vehicle/apc) "w" = ( /obj/effect/landmark/interior/spawn/entrance{ @@ -198,9 +180,7 @@ pixel_x = 5; pixel_y = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, +/turf/open/shuttle/vehicle/floor_1_11, /area/interior/vehicle/apc) "y" = ( /obj/structure/interior_wall/apc{ @@ -209,14 +189,10 @@ /turf/open/void/vehicle, /area/space) "z" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_5" - }, +/turf/open/shuttle/vehicle/floor_1_5, /area/interior/vehicle/apc) "A" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, +/turf/open/shuttle/vehicle/floor_1_6, /area/interior/vehicle/apc) "B" = ( /obj/structure/interior_wall/apc{ @@ -233,9 +209,7 @@ pixel_x = -24; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, +/turf/open/shuttle/vehicle/floor_1_11, /area/interior/vehicle/apc) "D" = ( /obj/structure/interior_wall/apc{ @@ -271,9 +245,7 @@ dir = 1; pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) "H" = ( /obj/structure/bed/chair/vehicle{ @@ -291,9 +263,7 @@ pixel_x = -8; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) "I" = ( /obj/effect/landmark/interior/spawn/vehicle_support_gunner_seat{ @@ -304,9 +274,7 @@ name = "Left M56 FPW handle"; pixel_y = 17 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, +/turf/open/shuttle/vehicle/floor_3_11, /area/interior/vehicle/apc) "J" = ( /obj/structure/interior_wall/apc{ @@ -321,9 +289,7 @@ /turf/open/void/vehicle, /area/space) "K" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, +/turf/open/shuttle/vehicle/floor_1_14, /area/interior/vehicle/apc) "L" = ( /obj/structure/interior_wall/apc{ @@ -361,9 +327,7 @@ /turf/open/void/vehicle, /area/space) "R" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_1_3" - }, +/turf/open/shuttle/vehicle/floor_1_1_3, /area/interior/vehicle/apc) "S" = ( /obj/structure/interior_wall/apc{ @@ -399,9 +363,7 @@ pixel_x = -7; pixel_y = 23 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) "V" = ( /obj/structure/interior_wall/apc{ @@ -417,9 +379,7 @@ layer = 5.21; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, +/turf/open/shuttle/vehicle/floor_3_8_1, /area/interior/vehicle/apc) "X" = ( /obj/structure/interior_wall/apc{ @@ -439,9 +399,7 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, +/turf/open/shuttle/vehicle/floor_1_12, /area/interior/vehicle/apc) "Z" = ( /obj/structure/interior_wall/apc{ diff --git a/maps/interiors/apc_command.dmm b/maps/interiors/apc_command.dmm index d6f7485339fc..4af7a56650d1 100644 --- a/maps/interiors/apc_command.dmm +++ b/maps/interiors/apc_command.dmm @@ -7,9 +7,7 @@ /area/space) "b" = ( /obj/structure/prop/vehicle/sensor_equipment, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_10_1" - }, +/turf/open/shuttle/vehicle/floor_3_10_1, /area/interior/vehicle/apc/command) "c" = ( /obj/structure/bed/chair/vehicle{ @@ -20,9 +18,7 @@ dir = 1; pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, +/turf/open/shuttle/vehicle/floor_3_5, /area/interior/vehicle/apc/command) "d" = ( /obj/structure/bed/chair/vehicle{ @@ -33,9 +29,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, +/turf/open/shuttle/vehicle/floor_3_8_1, /area/interior/vehicle/apc/command) "e" = ( /obj/structure/interior_wall/apc{ @@ -53,9 +47,7 @@ /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" - }, +/turf/open/shuttle/vehicle/floor_3_12, /area/interior/vehicle/apc/command) "h" = ( /obj/structure/interior_wall/apc{ @@ -76,9 +68,7 @@ icon = 'icons/obj/vehicles/interiors/general.dmi'; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc/command) "k" = ( /turf/open/void/vehicle, @@ -120,9 +110,7 @@ layer = 2.81; pixel_y = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_7_1" - }, +/turf/open/shuttle/vehicle/floor_3_7_1, /area/interior/vehicle/apc/command) "p" = ( /obj/structure/interior_wall/apc{ @@ -137,14 +125,10 @@ /obj/effect/landmark/interior/spawn/vehicle_gunner_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, +/turf/open/shuttle/vehicle/floor_3_8_1, /area/interior/vehicle/apc/command) "r" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, +/turf/open/shuttle/vehicle/floor_1_6, /area/interior/vehicle/apc/command) "s" = ( /obj/structure/machinery/prop/almayer/CICmap{ @@ -152,9 +136,7 @@ unslashable = 1 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, +/turf/open/shuttle/vehicle/floor_3_6, /area/interior/vehicle/apc/command) "t" = ( /obj/structure/interior_wall/apc{ @@ -165,9 +147,7 @@ /turf/open/void/vehicle, /area/space) "u" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_5" - }, +/turf/open/shuttle/vehicle/floor_1_5, /area/interior/vehicle/apc/command) "v" = ( /obj/structure/interior_wall/apc{ @@ -191,22 +171,16 @@ pixel_x = -21; pixel_y = 24 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, +/turf/open/shuttle/vehicle/floor_3_5, /area/interior/vehicle/apc/command) "x" = ( /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, +/turf/open/shuttle/vehicle/floor_3_9_1, /area/interior/vehicle/apc/command) "y" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, +/turf/open/shuttle/vehicle/floor_1_14, /area/interior/vehicle/apc/command) "z" = ( /obj/structure/interior_wall/apc{ @@ -231,9 +205,7 @@ pixel_y = 32; tag = "left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, +/turf/open/shuttle/vehicle/floor_1_11, /area/interior/vehicle/apc/command) "C" = ( /obj/structure/interior_wall/apc{ @@ -249,17 +221,13 @@ /turf/open/void/vehicle, /area/space) "E" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_0_1_15" - }, +/turf/open/shuttle/vehicle/floor_0_1_15, /area/interior/vehicle/apc/command) "F" = ( /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, +/turf/open/shuttle/vehicle/floor_3_11, /area/interior/vehicle/apc/command) "G" = ( /obj/effect/landmark/interior/spawn/entrance{ @@ -273,19 +241,13 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, +/turf/open/shuttle/vehicle/floor_1_12, /area/interior/vehicle/apc/command) "H" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_13" - }, +/turf/open/shuttle/vehicle/floor_1_13, /area/interior/vehicle/apc/command) "I" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc/command) "J" = ( /obj/structure/interior_wall/apc{ @@ -311,9 +273,7 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, +/turf/open/shuttle/vehicle/floor_3_9_1, /area/interior/vehicle/apc/command) "M" = ( /obj/structure/interior_wall/apc{ @@ -412,9 +372,7 @@ /area/space) "Y" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, +/turf/open/shuttle/vehicle/floor_3_6, /area/interior/vehicle/apc/command) (1,1,1) = {" diff --git a/maps/interiors/apc_med.dmm b/maps/interiors/apc_med.dmm index 0f47b029c20f..9ca29500eafa 100644 --- a/maps/interiors/apc_med.dmm +++ b/maps/interiors/apc_med.dmm @@ -11,9 +11,7 @@ pixel_x = -5 }, /obj/item/device/defibrillator, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_11" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_11, /area/interior/vehicle/apc/med) "c" = ( /obj/effect/decal/medical_decals/permanent{ @@ -24,9 +22,7 @@ /obj/effect/decal/medical_decals/permanent{ icon_state = "triagedecalbottom" }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_5" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_5, /area/interior/vehicle/apc/med) "d" = ( /obj/effect/decal/medical_decals/permanent{ @@ -35,9 +31,7 @@ /obj/effect/decal/medical_decals/permanent{ icon_state = "triagedecaltopright" }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_14" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_14, /area/interior/vehicle/apc/med) "e" = ( /obj/structure/interior_wall/apc{ @@ -67,9 +61,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3" - }, +/turf/open/shuttle/vehicle/floor_3, /area/interior/vehicle/apc/med) "j" = ( /obj/structure/interior_wall/apc{ @@ -102,9 +94,7 @@ icon_state = "triagedecaltop"; pixel_y = -2 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_7" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_7, /area/interior/vehicle/apc/med) "n" = ( /obj/structure/interior_wall/apc{ @@ -176,9 +166,7 @@ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_8" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_8, /area/interior/vehicle/apc/med) "x" = ( /obj/structure/interior_wall/apc{ @@ -201,9 +189,7 @@ pixel_y = 32; tag = "left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, +/turf/open/shuttle/vehicle/floor_1_11, /area/interior/vehicle/apc/med) "z" = ( /obj/structure/interior_wall/apc{ @@ -220,9 +206,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3" - }, +/turf/open/shuttle/vehicle/floor_3, /area/interior/vehicle/apc/med) "B" = ( /obj/structure/machinery/iv_drip{ @@ -233,9 +217,7 @@ pixel_x = -6; pixel_y = 23 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_12" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_12, /area/interior/vehicle/apc/med) "C" = ( /obj/structure/interior_wall/apc{ @@ -250,9 +232,7 @@ pixel_x = -5; pixel_y = 16 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile" - }, +/turf/open/shuttle/vehicle/dark_sterile, /area/interior/vehicle/apc/med) "E" = ( /obj/structure/vehicle_locker{ @@ -261,9 +241,7 @@ /obj/effect/landmark/interior/spawn/vehicle_gunner_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, +/turf/open/shuttle/vehicle/floor_3_8_1, /area/interior/vehicle/apc/med) "F" = ( /obj/structure/interior_wall/apc{ @@ -290,17 +268,13 @@ /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, +/turf/open/shuttle/vehicle/floor_3_9_1, /area/interior/vehicle/apc/med) "J" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_6" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_6, /area/interior/vehicle/apc/med) "K" = ( /obj/effect/landmark/interior/spawn/entrance{ @@ -314,14 +288,10 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, +/turf/open/shuttle/vehicle/floor_1_12, /area/interior/vehicle/apc/med) "L" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, +/turf/open/shuttle/vehicle/floor_1_14, /area/interior/vehicle/apc/med) "M" = ( /obj/structure/interior_wall/apc{ @@ -352,9 +322,7 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_13" - }, +/turf/open/shuttle/vehicle/dark_sterile_green_13, /area/interior/vehicle/apc/med) "P" = ( /obj/structure/interior_wall/apc{ @@ -363,15 +331,11 @@ /turf/open/void/vehicle, /area/space) "Q" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, +/turf/open/shuttle/vehicle/floor_1_6, /area/interior/vehicle/apc/med) "R" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, +/turf/open/shuttle/vehicle/floor_3_6, /area/interior/vehicle/apc/med) "S" = ( /obj/structure/interior_wall/apc{ @@ -380,9 +344,7 @@ /turf/open/void/vehicle, /area/space) "T" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_3_3" - }, +/turf/open/shuttle/vehicle/floor_1_3_3, /area/interior/vehicle/apc/med) "U" = ( /obj/structure/interior_wall/apc{ @@ -399,9 +361,7 @@ dir = 1; pixel_x = -7 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc/med) "W" = ( /obj/structure/bed/chair/vehicle{ @@ -419,9 +379,7 @@ pixel_x = -8; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc/med) "Y" = ( /obj/structure/interior_wall/apc{ diff --git a/maps/interiors/apc_no_fpw.dmm b/maps/interiors/apc_no_fpw.dmm index e463b7a5ff1e..a387a19e79e8 100644 --- a/maps/interiors/apc_no_fpw.dmm +++ b/maps/interiors/apc_no_fpw.dmm @@ -3,17 +3,13 @@ /turf/open/void/vehicle, /area/space) "b" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, +/turf/open/shuttle/vehicle/floor_1_6, /area/interior/vehicle/apc) "c" = ( /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" - }, +/turf/open/shuttle/vehicle/floor_3_12, /area/interior/vehicle/apc) "d" = ( /obj/effect/landmark/interior/spawn/entrance{ @@ -26,9 +22,7 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, +/turf/open/shuttle/vehicle/floor_1_12, /area/interior/vehicle/apc) "e" = ( /obj/structure/bed/chair/vehicle{ @@ -44,9 +38,7 @@ pixel_x = 8; pixel_y = -11 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, +/turf/open/shuttle/vehicle/floor_3_5, /area/interior/vehicle/apc) "f" = ( /obj/structure/interior_wall/apc{ @@ -67,9 +59,7 @@ /turf/open/void/vehicle, /area/space) "i" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_1_3" - }, +/turf/open/shuttle/vehicle/floor_1_1_3, /area/interior/vehicle/apc) "j" = ( /obj/effect/landmark/interior/spawn/entrance{ @@ -86,9 +76,7 @@ dir = 1; pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) "k" = ( /obj/structure/interior_wall/apc{ @@ -105,9 +93,7 @@ layer = 5.21; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, +/turf/open/shuttle/vehicle/floor_3_8_1, /area/interior/vehicle/apc) "m" = ( /obj/structure/interior_wall/apc{ @@ -136,9 +122,7 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, +/turf/open/shuttle/vehicle/floor_3_8_1, /area/interior/vehicle/apc) "r" = ( /obj/effect/landmark/interior/spawn/interior_viewport{ @@ -154,9 +138,7 @@ pixel_y = 32; tag = "left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, +/turf/open/shuttle/vehicle/floor_1_11, /area/interior/vehicle/apc) "s" = ( /obj/structure/interior_wall/apc{ @@ -176,9 +158,7 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, +/turf/open/shuttle/vehicle/floor_3_9_1, /area/interior/vehicle/apc) "u" = ( /obj/structure/interior_wall/apc{ @@ -205,9 +185,7 @@ /area/space) "y" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, +/turf/open/shuttle/vehicle/floor_3_6, /area/interior/vehicle/apc) "z" = ( /obj/effect/landmark/interior/spawn/entrance{ @@ -216,9 +194,7 @@ pixel_x = -32; tag = "rear center" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_13" - }, +/turf/open/shuttle/vehicle/floor_1_13, /area/interior/vehicle/apc) "A" = ( /obj/structure/interior_wall/apc{ @@ -237,17 +213,13 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) "C" = ( /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, +/turf/open/shuttle/vehicle/floor_3_11, /area/interior/vehicle/apc) "D" = ( /obj/structure/interior_wall/apc{ @@ -256,9 +228,7 @@ /turf/open/void/vehicle, /area/space) "E" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_5" - }, +/turf/open/shuttle/vehicle/floor_1_5, /area/interior/vehicle/apc) "F" = ( /obj/structure/interior_wall/apc{ @@ -295,9 +265,7 @@ pixel_x = -24; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, +/turf/open/shuttle/vehicle/floor_1_11, /area/interior/vehicle/apc) "J" = ( /obj/structure/interior_wall/apc{ @@ -319,9 +287,7 @@ /turf/open/void/vehicle, /area/space) "L" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_0_1_15" - }, +/turf/open/shuttle/vehicle/floor_0_1_15, /area/interior/vehicle/apc) "M" = ( /obj/structure/interior_wall/apc{ @@ -340,9 +306,7 @@ /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, +/turf/open/shuttle/vehicle/floor_3_9_1, /area/interior/vehicle/apc) "P" = ( /obj/structure/interior_wall/apc{ @@ -382,9 +346,7 @@ /turf/open/void/vehicle, /area/space) "U" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, +/turf/open/shuttle/vehicle/floor_1_14, /area/interior/vehicle/apc) "V" = ( /obj/structure/interior_wall/apc{ @@ -408,9 +370,7 @@ pixel_x = -8; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) "X" = ( /obj/structure/interior_wall/apc{ @@ -443,9 +403,7 @@ pixel_x = -7; pixel_y = 23 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/apc) (1,1,1) = {" diff --git a/maps/interiors/arc.dmm b/maps/interiors/arc.dmm index 4da63cbff383..f1a7f11a8f34 100644 --- a/maps/interiors/arc.dmm +++ b/maps/interiors/arc.dmm @@ -1,296 +1,113 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aD" = ( -/obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" +"dH" = ( +/obj/effect/landmark/interior/spawn/entrance{ + alpha = 50; + exit_type = /obj/structure/interior_exit/vehicle/arc; + name = "ARC exit door"; + pixel_y = -10; + tag = "right" }, +/turf/open/floor, /area/interior/vehicle/arc) -"be" = ( -/obj/structure/interior_wall/apc{ - icon_state = "door_back" - }, -/turf/open/void/vehicle, -/area/space) -"cJ" = ( -/obj/structure/interior_wall/apc{ - icon_state = "rear_1" - }, +"sE" = ( /turf/open/void/vehicle, /area/space) -"dM" = ( -/obj/structure/interior_wall/apc{ - icon_state = "rear_2" +"yX" = ( +/obj/effect/landmark/interior/spawn/telephone{ + pixel_x = -12; + pixel_y = 15 }, -/turf/open/void/vehicle, -/area/space) -"dU" = ( /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/vehicle{ - pixel_x = 6; - pixel_y = 28 - }, /obj/item/device/megaphone, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/interior/vehicle/arc) -"jb" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, +/turf/open/floor, /area/interior/vehicle/arc) -"ml" = ( -/obj/structure/interior_wall/apc{ - icon_state = "wall" - }, -/obj/effect/landmark/interior/spawn/telephone, -/turf/open/void/vehicle, -/area/space) -"mR" = ( -/obj/structure/interior_wall/apc{ - icon_state = "front_wheel_R" - }, -/turf/open/void/vehicle, -/area/space) -"ro" = ( -/obj/structure/interior_wall/apc{ - alpha = 100; - icon_state = "wall_door_front"; - layer = 5.2; - pixel_y = 32 - }, -/turf/open/void/vehicle, -/area/space) -"ru" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, -/area/interior/vehicle/arc) -"tD" = ( -/obj/structure/interior_wall/apc{ - icon_state = "rear_6" - }, -/turf/open/void/vehicle, -/area/space) -"vt" = ( -/obj/structure/interior_wall/apc{ - icon_state = "rear_wheel_L" - }, -/turf/open/void/vehicle, -/area/space) -"we" = ( -/obj/structure/interior_wall/apc{ - alpha = 100; - icon_state = "door_front"; - layer = 5.2; - pixel_y = 32 - }, -/turf/open/void/vehicle, -/area/space) -"wK" = ( -/obj/structure/interior_wall/apc{ - icon_state = "wheel_front_top_1"; - pixel_x = 1; - pixel_y = -4 - }, -/turf/open/void/vehicle, -/area/space) -"ym" = ( -/obj/structure/interior_wall/apc{ - icon_state = "rear_wheel_R"; - opacity = 0 - }, -/turf/open/void/vehicle, -/area/space) -"yX" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/interior/vehicle/arc) -"CB" = ( -/obj/structure/interior_wall/apc{ - icon_state = "wall"; - opacity = 0 - }, -/turf/open/void/vehicle, -/area/space) "Dn" = ( /obj/structure/machinery/prop/almayer/CICmap/computer{ dir = 4; - pixel_y = 8 + layer = 2.98; + pixel_x = -13; + pixel_y = 4 }, -/obj/structure/surface/table/reinforced/prison{ - pixel_y = -3 - }, -/obj/structure/machinery/computer/overwatch/almayer/small{ +/obj/structure/machinery/computer/groundside_operations/arc{ dir = 4; - layer = 3.01; - pixel_y = -5 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_10_1" - }, -/area/interior/vehicle/arc) -"Gy" = ( -/obj/structure/interior_wall/apc{ - icon_state = "front_1" - }, -/turf/open/void/vehicle, -/area/space) -"HB" = ( -/obj/structure/interior_wall/apc{ - icon_state = "corner_small_L" - }, -/obj/structure/interior_wall/apc{ - icon_state = "rear_5" - }, -/turf/open/void/vehicle, -/area/space) -"HJ" = ( -/obj/structure/interior_wall/apc{ - icon_state = "front_6" - }, -/turf/open/void/vehicle, -/area/space) -"Jc" = ( -/obj/structure/interior_wall/apc{ - icon_state = "corner_small_R" + layer = 2.981; + pixel_x = -13; + pixel_y = -9 }, -/obj/structure/interior_wall/apc{ - icon_state = "front_5" - }, -/turf/open/void/vehicle, -/area/space) -"Ng" = ( -/obj/structure/interior_wall/apc{ - icon_state = "wall" - }, -/turf/open/void/vehicle, -/area/space) -"NS" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/bed/chair/comfy/arc{ dir = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, +/turf/open/floor, /area/interior/vehicle/arc) -"Ol" = ( -/obj/effect/landmark/interior/spawn/entrance{ - alpha = 50; - exit_type = /obj/structure/interior_exit/vehicle/apc; - name = "Right APC door"; - tag = "right" - }, -/obj/effect/landmark/interior/spawn/interior_viewport{ - dir = 8; - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, -/area/interior/vehicle/arc) -"Po" = ( -/obj/structure/surface/table/reinforced/prison{ - pixel_y = -3 - }, -/obj/structure/machinery/computer/intel/disk_reader{ +"DG" = ( +/obj/structure/machinery/computer/overwatch/almayer/small{ dir = 4; - pixel_y = 6 + layer = 2.982; + pixel_x = -13; + pixel_y = 10 }, -/obj/structure/machinery/computer/groundside_operations{ +/obj/structure/machinery/computer/intel/disk_reader{ dir = 4; - pixel_y = -7 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/interior/vehicle/arc) -"Rb" = ( -/turf/open/void/vehicle, -/area/space) -"Rf" = ( -/obj/structure/interior_wall/apc{ - icon_state = "front_2" + layer = 2.983; + pixel_x = -13; + pixel_y = -3 }, -/turf/open/void/vehicle, -/area/space) -"Zs" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/bed/chair/comfy/arc{ dir = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" +/turf/open/floor, +/area/interior/vehicle/arc) +"Ly" = ( +/obj/effect/landmark/interior/spawn/weapons_loader{ + pixel_x = -2 }, +/turf/open/floor, /area/interior/vehicle/arc) -"ZF" = ( +"NS" = ( /obj/effect/landmark/interior/spawn/interior_viewport{ - dir = 8; - pixel_x = 5; - pixel_y = 8 - }, -/obj/effect/landmark/interior/spawn/entrance{ - alpha = 50; - dir = 1; - exit_type = /obj/structure/interior_exit/vehicle/apc; - name = "Left APC door"; - pixel_y = 32; - tag = "left" + layer = 2.98; + pixel_x = 8; + pixel_y = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" +/obj/structure/bed/chair/vehicle{ + pixel_x = -7 }, +/turf/open/floor, /area/interior/vehicle/arc) +"Rb" = ( +/obj/structure/prop/vehicle/arc, +/turf/open/void/vehicle, +/area/space) (1,1,1) = {" -tD -HB -dM -cJ +sE +sE +sE Rb "} (2,1,1) = {" -Ng -Po +sE Dn -vt -Rb +DG +sE "} (3,1,1) = {" -ml -Zs +sE NS -ym -Rb +dH +sE "} (4,1,1) = {" -Ng -jb +sE yX -aD -ro +Ly +sE "} (5,1,1) = {" -be -ZF -ru -Ol -we -"} -(6,1,1) = {" -wK -CB -dU -mR -Rb -"} -(7,1,1) = {" -HJ -Jc -Rf -Gy -Rb +sE +sE +sE +sE "} diff --git a/maps/interiors/fancylocker.dmm b/maps/interiors/fancylocker.dmm index 1b97bc73be62..2629f6210056 100644 --- a/maps/interiors/fancylocker.dmm +++ b/maps/interiors/fancylocker.dmm @@ -14,24 +14,16 @@ /turf/open/floor/wood, /area/interior/fancylocker) "d" = ( -/turf/open/floor/carpet/edge{ - dir = 9 - }, +/turf/open/floor/carpet/edge/northwest, /area/interior/fancylocker) "e" = ( -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/interior/fancylocker) "f" = ( -/turf/open/floor/carpet/edge{ - dir = 5 - }, +/turf/open/floor/carpet/edge/northeast, /area/interior/fancylocker) "g" = ( -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/interior/fancylocker) "h" = ( /obj/structure/bed/sofa/south/white/left, @@ -46,9 +38,7 @@ /turf/open/floor/carpet, /area/interior/fancylocker) "k" = ( -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/interior/fancylocker) "l" = ( /obj/structure/surface/table/woodentable/fancy, @@ -56,17 +46,13 @@ /turf/open/floor/wood, /area/interior/fancylocker) "m" = ( -/turf/open/floor/carpet/edge{ - dir = 10 - }, +/turf/open/floor/carpet/edge/southwest, /area/interior/fancylocker) "n" = ( /turf/open/floor/carpet/edge, /area/interior/fancylocker) "o" = ( -/turf/open/floor/carpet/edge{ - dir = 6 - }, +/turf/open/floor/carpet/edge/southeast, /area/interior/fancylocker) "p" = ( /obj/structure/surface/table/woodentable/fancy, diff --git a/maps/interiors/tank.dmm b/maps/interiors/tank.dmm index f2714401a03d..e5c019e01993 100644 --- a/maps/interiors/tank.dmm +++ b/maps/interiors/tank.dmm @@ -15,15 +15,11 @@ pixel_x = 22; pixel_y = -14 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, +/turf/open/shuttle/vehicle/floor_1_12, /area/interior/vehicle/tank) "c" = ( /obj/structure/prop/tank{ - icon_state = "prop2"; - layer = 3; - pixel_x = 0 + icon_state = "prop2" }, /obj/effect/landmark/interior/spawn/weapons_loader{ layer = 2; @@ -36,25 +32,17 @@ pixel_x = 12; pixel_y = 58 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_3" - }, +/turf/open/shuttle/vehicle/floor_3_3, /area/interior/vehicle/tank) "e" = ( /obj/effect/landmark/interior/spawn/vehicle_gunner_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, +/turf/open/shuttle/vehicle/floor_3_13, /area/interior/vehicle/tank) "f" = ( -/obj/structure/prop/tank{ - pixel_x = 0 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_1_1" - }, +/obj/structure/prop/tank, +/turf/open/shuttle/vehicle/floor_3_1_1, /area/interior/vehicle/tank) "g" = ( /obj/structure/interior_wall/tank{ @@ -91,17 +79,13 @@ /area/space) "u" = ( /obj/structure/prop/tank{ - icon_state = "prop5"; - pixel_x = 0 + icon_state = "prop5" }, /obj/structure/prop/tank{ icon_state = "prop7"; - pixel_x = 0; pixel_y = 32 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8" - }, +/turf/open/shuttle/vehicle/floor_3_8, /area/interior/vehicle/tank) "v" = ( /obj/structure/interior_wall/tank{ @@ -140,24 +124,18 @@ /obj/structure/prop/tank{ density = 0; icon_state = "prop6"; - pixel_x = 0; pixel_y = 32 }, /obj/structure/prop/tank{ density = 0; icon_state = "prop8_extra"; - layer = 4.12; - pixel_x = 0 + layer = 4.12 }, /obj/structure/prop/tank{ density = 0; - icon_state = "prop4"; - layer = 3; - pixel_x = 0 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_7" + icon_state = "prop4" }, +/turf/open/shuttle/vehicle/floor_3_7, /area/interior/vehicle/tank) "H" = ( /obj/structure/interior_wall/tank{ @@ -169,21 +147,15 @@ /area/space) "J" = ( /obj/structure/prop/tank{ - icon_state = "prop3"; - pixel_x = 0 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_4" + icon_state = "prop3" }, +/turf/open/shuttle/vehicle/floor_3_4, /area/interior/vehicle/tank) "T" = ( /obj/structure/prop/tank{ - icon_state = "prop1"; - pixel_x = 0 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9" + icon_state = "prop1" }, +/turf/open/shuttle/vehicle/floor_3_9, /area/interior/vehicle/tank) "Z" = ( /obj/structure/vehicle_locker/tank{ @@ -198,9 +170,7 @@ pixel_x = 9; pixel_y = 31 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, +/turf/open/shuttle/vehicle/floor_1_11, /area/interior/vehicle/tank) (1,1,1) = {" diff --git a/maps/interiors/van.dmm b/maps/interiors/van.dmm index 309160f38c1d..673f1ef07d2a 100644 --- a/maps/interiors/van.dmm +++ b/maps/interiors/van.dmm @@ -10,9 +10,7 @@ pixel_x = -32; tag = "back_right" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_10" - }, +/turf/open/shuttle/vehicle/floor_1_10, /area/interior/vehicle/van) "e" = ( /obj/structure/interior_wall/van{ @@ -35,9 +33,7 @@ alpha = 100; pixel_y = -2 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_1" - }, +/turf/open/shuttle/vehicle/floor_1_1, /area/interior/vehicle/van) "i" = ( /obj/structure/interior_wall/van{ @@ -68,9 +64,7 @@ /obj/effect/vehicle_roof/van{ icon_state = "roof_3" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_8" - }, +/turf/open/shuttle/vehicle/floor_1_8, /area/interior/vehicle/van) "r" = ( /obj/structure/interior_wall/van{ @@ -91,9 +85,7 @@ pixel_x = -32; tag = "back_left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_7" - }, +/turf/open/shuttle/vehicle/floor_1_7, /area/interior/vehicle/van) "t" = ( /obj/effect/landmark/interior/spawn/entrance{ @@ -112,9 +104,7 @@ /obj/effect/landmark/interior/spawn/interior_viewport/simple/windshield{ icon_state = "windshield_viewport_bottom" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, +/turf/open/shuttle/vehicle/floor_3_11, /area/interior/vehicle/van) "v" = ( /obj/structure/interior_wall/van{ @@ -146,12 +136,9 @@ tag = "right" }, /obj/structure/bed/chair/comfy{ - dir = 4; - icon_state = "comfychair" - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" + dir = 4 }, +/turf/open/shuttle/vehicle/floor_3_12, /area/interior/vehicle/van) "z" = ( /obj/structure/interior_wall/van{ @@ -178,9 +165,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_9" - }, +/turf/open/shuttle/vehicle/floor_1_9, /area/interior/vehicle/van) "J" = ( /obj/structure/interior_wall/van{ @@ -199,9 +184,7 @@ /obj/effect/vehicle_roof/van{ icon_state = "roof_2" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_2" - }, +/turf/open/shuttle/vehicle/floor_1_2, /area/interior/vehicle/van) "O" = ( /turf/open/void/vehicle, diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index 422a143de94a..b71c76ab1cb9 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -9,67 +9,46 @@ }, /area/space) "aad" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_north) "aae" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) "aaf" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aag" = ( /obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port) "aah" = ( /turf/open/floor/plating, /area/bigredv2/outside/space_port) "aai" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aaj" = ( /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aak" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aal" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aam" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aan" = ( /obj/effect/landmark/crap_item, /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aao" = ( /turf/closed/wall/solaris/rock, @@ -78,10 +57,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "aaq" = ( /obj/structure/sign/safety/hazard, @@ -89,25 +65,16 @@ /area/bigredv2/outside/space_port) "aar" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aas" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "aat" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aau" = ( /obj/docking_port/stationary/marine_dropship/lz1{ @@ -119,10 +86,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "aaw" = ( /turf/closed/wall/solaris, @@ -133,60 +97,42 @@ pixel_x = -32 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aay" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaz" = ( /obj/structure/machinery/status_display{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaA" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/telecomm/n_cave) "aaC" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaD" = ( /obj/structure/prop/tower, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port) "aaE" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aaF" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -196,10 +142,7 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "aaH" = ( /obj/structure/cargo_container/grant/left, @@ -217,77 +160,54 @@ /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aaL" = ( /obj/structure/closet/firecloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaM" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aaN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaO" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaQ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaR" = ( /obj/structure/machinery/computer/telecomms/traffic, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aaS" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aaT" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "aaU" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -296,18 +216,14 @@ "aaV" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aaW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Spaceport" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/space_port) "aaX" = ( /obj/structure/closet/secure_closet/injection, @@ -321,25 +237,17 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aaZ" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "aba" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "abc" = ( /obj/effect/decal/cleanable/blood/oil, @@ -351,23 +259,17 @@ pixel_x = -32; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abf" = ( /obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abg" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abh" = ( /obj/structure/surface/table, @@ -378,26 +280,18 @@ pixel_x = 32 }, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abi" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "abj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "abk" = ( /obj/structure/cargo_container/arious/leftmid, @@ -416,49 +310,34 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abo" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abp" = ( /obj/structure/machinery/blackbox_recorder, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_north) "abr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_north) "abs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_north) "abt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "abu" = ( /obj/structure/cargo_container/watatsumi/leftmid, @@ -486,31 +365,22 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/landing/console) "abA" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abB" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "abC" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "abD" = ( /obj/effect/decal/cleanable/blood{ @@ -521,61 +391,43 @@ "abE" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/outside/space_port) "abF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "abG" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "abH" = ( /obj/structure/machinery/computer/cameras{ dir = 1 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "abI" = ( /obj/item/shard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "abJ" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "abK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/outside/space_port) "abM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_north) "abO" = ( /turf/open/mars_cave, @@ -584,19 +436,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "abQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "abR" = ( /obj/structure/window/framed/solaris, @@ -619,9 +465,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/space_port) "abV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_north) "abY" = ( /obj/structure/barricade/wooden{ @@ -629,18 +473,13 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_north) "abZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aca" = ( /obj/structure/machinery/light{ @@ -654,9 +493,7 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_north) "acd" = ( /obj/effect/landmark/good_item, @@ -664,48 +501,33 @@ /area/bigredv2/outside/space_port) "ace" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "acf" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "acg" = ( /obj/structure/cargo_container/arious/right, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "ach" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "acj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "acl" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "acm" = ( /obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) "acn" = ( /obj/effect/decal/cleanable/blood, @@ -741,24 +563,16 @@ /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) "acv" = ( /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "acw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "acx" = ( /obj/effect/landmark/crap_item, @@ -766,16 +580,10 @@ /area/bigredv2/outside/space_port) "acy" = ( /obj/structure/machinery/botany, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/marshal_office) "acz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/marshal_office) "acA" = ( /turf/closed/wall/solaris/reinforced, @@ -785,49 +593,34 @@ /turf/open/floor/plating, /area/bigredv2/outside/space_port) "acC" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "acI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "acJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "acK" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -836,31 +629,22 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "acL" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acM" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acO" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acP" = ( /turf/open/mars, @@ -874,55 +658,40 @@ name = "\improper Telecommunications" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm) "acS" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "acT" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acU" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acV" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acX" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "acY" = ( /obj/structure/surface/table, /obj/item/folder/black, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "acZ" = ( /turf/open/floor/greengrid, @@ -941,62 +710,43 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/space) "adb" = ( /obj/structure/surface/table, /obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adc" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/head/det_hat, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "add" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "ade" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adf" = ( /obj/structure/surface/table, /obj/item/folder/black_random, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adg" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "adh" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/marshal_office) "adi" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "adj" = ( /obj/item/shard, @@ -1011,72 +761,52 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/outside/space_port) "adm" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "adn" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ado" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "adp" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/marshal_office) "adr" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "ads" = ( /obj/structure/surface/table, /obj/item/folder/yellow, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adv" = ( /obj/structure/surface/table, @@ -1084,25 +814,18 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adw" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "ady" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/marshal_office) "adz" = ( /obj/structure/window/framed/solaris/reinforced/tinted, @@ -1124,24 +847,17 @@ "adC" = ( /obj/structure/pipes/vents/pump, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "adD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/marshal_office) "adE" = ( /obj/structure/sink{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "adF" = ( /obj/structure/mirror{ @@ -1149,9 +865,7 @@ pixel_x = 30 }, /obj/item/tool/soap/deluxe, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "adG" = ( /obj/item/shard, @@ -1166,26 +880,19 @@ /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adI" = ( /obj/structure/surface/table, /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "adJ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "adL" = ( /obj/structure/machinery/light{ @@ -1196,28 +903,20 @@ "adM" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "adN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "adO" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "adP" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "adQ" = ( /obj/structure/reagent_dispensers/peppertank{ @@ -1237,9 +936,7 @@ "adT" = ( /obj/structure/closet/secure_closet/marshal, /obj/item/clothing/suit/storage/CMB, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/marshal_office) "adU" = ( /obj/structure/surface/table, @@ -1251,9 +948,7 @@ /turf/open/floor, /area/bigredv2/outside/marshal_office) "adW" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "adZ" = ( /turf/closed/wall/solaris/reinforced, @@ -1269,31 +964,23 @@ phone_id = "Communications"; pixel_x = -18 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aeb" = ( /obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aec" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Telecommunications" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm) "aed" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aee" = ( /obj/effect/decal/cleanable/dirt, @@ -1301,59 +988,40 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aef" = ( /obj/structure/surface/table, /obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aeg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aeh" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "aei" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "aej" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "aek" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "ael" = ( /obj/structure/machinery/camera/autoname{ @@ -1366,9 +1034,7 @@ dir = 1; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aen" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1376,18 +1042,14 @@ dir = 1; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aeo" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Marshal Office Prison Toilet" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aep" = ( /obj/structure/reagent_dispensers/peppertank{ @@ -1408,22 +1070,16 @@ "aes" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/cameras/wooden_tv, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aet" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aeu" = ( /obj/item/clothing/accessory/storage/holster/armpit, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aev" = ( /turf/open/floor/plating, @@ -1439,56 +1095,38 @@ /area/bigredv2/caves/lambda/xenobiology) "aey" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northwest, /area/bigredv2/caves/lambda/xenobiology) "aez" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/bigredv2/caves/lambda/xenobiology) "aeA" = ( /obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/bigredv2/caves/lambda/xenobiology) "aeB" = ( /obj/structure/machinery/computer/telecomms/server{ req_one_access_txt = "19;200" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aeC" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aeD" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "aeE" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/xenobiology) "aeF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1512,32 +1150,24 @@ /turf/open/mars, /area/bigredv2/outside/nw) "aeJ" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aeK" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "aeL" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "aeM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "aeN" = ( /obj/structure/bed/stool, @@ -1547,38 +1177,27 @@ "aeO" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/recharger, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aeP" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/flask/detflask, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aeQ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/bigredv2/caves/lambda/xenobiology) "aeS" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "aeT" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "aeU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -1589,54 +1208,36 @@ /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "aeW" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/bigredv2/caves/lambda/xenobiology) "aeX" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull, /area/bigredv2/caves/lambda/xenobiology) "aeY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/lambda/xenobiology) "aeZ" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/bigredv2/caves/lambda/xenobiology) "afa" = ( /obj/structure/closet/secure_closet/chemical, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/bigredv2/caves/lambda/xenobiology) "afb" = ( /obj/structure/machinery/computer/telecomms/traffic{ req_one_access_txt = "19;200" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "afc" = ( /obj/item/folder/yellow, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "afd" = ( /obj/structure/window/framed/solaris/reinforced, @@ -1646,9 +1247,7 @@ /obj/effect/decal/cleanable/mucus, /obj/structure/surface/table, /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "afg" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1669,25 +1268,18 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "afk" = ( /obj/structure/toilet{ dir = 4 }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "afl" = ( /obj/structure/machinery/flasher/portable, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "afm" = ( /obj/structure/closet/l3closet/security, @@ -1695,34 +1287,22 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "afn" = ( /obj/structure/closet/l3closet/security, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "afo" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "afp" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "afq" = ( /obj/structure/surface/rack, @@ -1730,10 +1310,7 @@ dir = 1 }, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "afr" = ( /obj/structure/machinery/camera/autoname{ @@ -1746,9 +1323,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aft" = ( /obj/structure/surface/table/reinforced, @@ -1756,14 +1331,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "afu" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "afv" = ( /obj/structure/window/framed/solaris, @@ -1780,24 +1351,17 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "afx" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "afy" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/xenobiology) "afz" = ( /turf/open/floor/plating, @@ -1812,38 +1376,25 @@ /area/bigredv2/caves/lambda/xenobiology) "afC" = ( /obj/structure/foamed_metal, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southwest, /area/bigredv2/caves/lambda/xenobiology) "afD" = ( /obj/item/device/mass_spectrometer/adv, /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/bigredv2/caves/lambda/xenobiology) "afE" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/bigredv2/caves/lambda/xenobiology) "afF" = ( /obj/structure/machinery/light, /obj/item/storage/fancy/vials/random, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/lambda/xenobiology) "afG" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/bigredv2/caves/lambda/xenobiology) "afH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -1859,15 +1410,11 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "afJ" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm) "afK" = ( /obj/structure/machinery/power/apc{ @@ -1885,25 +1432,18 @@ /turf/open/floor/greengrid, /area/bigredv2/outside/telecomm) "afM" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/space_port) "afO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "afP" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "afQ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1911,27 +1451,18 @@ dir = 1; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "afR" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "afS" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "afT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "afU" = ( /obj/structure/closet/bombclosetsecurity, @@ -1943,9 +1474,7 @@ dir = 4 }, /obj/item/clothing/suit/storage/CMB, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/marshal_office) "afW" = ( /obj/structure/machinery/door_control{ @@ -1953,53 +1482,37 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "afY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves/lambda/xenobiology) "afZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves/lambda/xenobiology) "aga" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "agb" = ( /obj/item/reagent_container/blood/OMinus, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "agc" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "agd" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "age" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper Lambda Lab Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "agf" = ( /obj/structure/surface/table/reinforced, @@ -2011,38 +1524,28 @@ id = "chem_lock"; name = "\improper Chemistry Lockdown" }, -/turf/open/floor{ - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull, /area/bigredv2/caves/lambda/xenobiology) "agg" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; name = "\improper Lambda Lab Chemistry Lab" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "agh" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "agi" = ( /obj/structure/bed, /obj/item/bedsheet/purple, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "agj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "agk" = ( /obj/structure/toilet{ @@ -2050,14 +1553,10 @@ }, /obj/structure/machinery/door/window, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "agl" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "agm" = ( /turf/closed/wall/solaris/rock, @@ -2066,25 +1565,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "ago" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/space_port) "agq" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/n) "agr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -2093,39 +1583,25 @@ /turf/open/floor/plating, /area/bigredv2/outside/space_port) "ags" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/n) "agt" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) "agu" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside/nw) "agv" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/outside/space_port) "agw" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/space_port) "agx" = ( /obj/structure/girder/displaced, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/space_port) "agy" = ( /obj/structure/window/framed/solaris/reinforced, @@ -2137,31 +1613,19 @@ /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) "agz" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "agA" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "agB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "agC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "agD" = ( /obj/structure/surface/rack, @@ -2169,82 +1633,61 @@ /obj/item/clothing/accessory/storage/black_vest, /obj/item/clothing/accessory/storage/black_vest, /obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "agE" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "agF" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_magazine/shotgun/slugs, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "agG" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "agH" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "agI" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/eastleft, /obj/item/weapon/shield/riot, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "agJ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Head Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "agK" = ( /obj/structure/machinery/optable, /obj/effect/decal/cleanable/blood/gibs/limb, /obj/effect/decal/cleanable/blood/gibs/limb, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "agL" = ( /obj/effect/decal/cleanable/blood, /obj/item/shard, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "agM" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Lambda Lab Surgery" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "agN" = ( /obj/effect/decal/warning_stripes{ @@ -2254,127 +1697,84 @@ icon_state = "small" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "agO" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "agP" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "agQ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/xenobiology) "agS" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/xenobiology) "agT" = ( /obj/structure/sign/safety/chem_lab{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/xenobiology) "agU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/lambda/xenobiology) "agV" = ( /obj/structure/foamed_metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/lambda/xenobiology) "agW" = ( /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "agX" = ( /obj/structure/foamed_metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/xenobiology) "agY" = ( /obj/structure/closet/secure_closet/CMO, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "agZ" = ( /obj/structure/surface/table, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "aha" = ( /obj/structure/surface/table, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "ahb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "ahc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "ahd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "ahe" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/n) "ahf" = ( /obj/structure/surface/table, @@ -2382,10 +1782,7 @@ /area/bigredv2/outside/general_offices) "ahg" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/space_port) "ahh" = ( /obj/structure/girder/reinforced, @@ -2397,9 +1794,7 @@ /area/bigredv2/outside/nw) "ahj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "ahk" = ( /obj/effect/decal/cleanable/dirt, @@ -2437,9 +1832,7 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ahq" = ( /obj/structure/surface/table, @@ -2447,15 +1840,11 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "ahr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ahs" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -2477,59 +1866,43 @@ /area/bigredv2/caves/lambda/breakroom) "ahw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "ahx" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "ahy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "ahz" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/scalpel/manager, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/lambda/xenobiology) "ahA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "ahB" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; name = "\improper Lambda Lab Surgery" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "ahC" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/xenobiology) "ahD" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/xenobiology) "ahE" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -2537,118 +1910,78 @@ }, /obj/structure/machinery/light, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/xenobiology) "ahF" = ( /obj/structure/closet/hydrant{ pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/xenobiology) "ahG" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/xenobiology) "ahH" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/breakroom) "ahI" = ( /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/xenobiology) "ahJ" = ( /obj/structure/foamed_metal, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/xenobiology) "ahK" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/space_port) "ahL" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/xenobiology) "ahM" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Lambda Lab Cell" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "ahN" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) "ahO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/nw) "ahP" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "ahQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) "ahR" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "ahS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "ahT" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/nw) "ahU" = ( /obj/structure/lz_sign/solaris_sign, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "ahV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/nw) "ahW" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "ahX" = ( /obj/effect/decal/cleanable/dirt, @@ -2658,17 +1991,13 @@ /obj/item/stack/sheet/metal, /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "ahZ" = ( /obj/item/stack/rods, /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "aia" = ( /obj/structure/machinery/door_control{ @@ -2676,47 +2005,33 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "aib" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "aic" = ( -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "aid" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "aie" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "aif" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "aig" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, +/turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_lambda) "aih" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -2724,25 +2039,19 @@ dir = 1; name = "\improper Marshal Office Armory" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aii" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Office Equipment" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aij" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "aik" = ( /obj/structure/surface/table/reinforced, @@ -2750,15 +2059,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "ail" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/lambda/xenobiology) "aim" = ( /obj/structure/surface/table, @@ -2766,60 +2071,42 @@ pixel_x = -27 }, /obj/item/storage/box/beakers, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "ain" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper Lambda Lab Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "aio" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/west, /area/bigredv2/caves/lambda/xenobiology) "aip" = ( /obj/structure/surface/table, /obj/structure/pipes/vents/pump, /obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aiq" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "air" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "ais" = ( /obj/structure/urinal{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "ait" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "aiu" = ( /obj/structure/sink{ @@ -2829,9 +2116,7 @@ /obj/structure/mirror{ pixel_x = 30 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "aiv" = ( /obj/effect/decal/cleanable/dirt, @@ -2839,58 +2124,37 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) "aiw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "aix" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aiy" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "aiz" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/nw) "aiA" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/nw) "aiB" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/nw) "aiC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office Brig" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aiD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aiE" = ( /obj/structure/closet/secure_closet/marshal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aiF" = ( /obj/structure/surface/table, @@ -2899,9 +2163,7 @@ dir = 1; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aiG" = ( /obj/structure/surface/table, @@ -2911,41 +2173,31 @@ phone_color = "red"; phone_id = "Marshal Office" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aiH" = ( /obj/structure/surface/table, /obj/structure/machinery/camera/autoname, /obj/item/ammo_magazine/shotgun/slugs, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aiI" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/clothing/head/beret/sec/warden, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aiJ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aiK" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aiL" = ( /obj/structure/surface/table, @@ -2978,59 +2230,40 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "aiR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/west, /area/bigredv2/caves/lambda/xenobiology) "aiS" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "aiT" = ( /obj/structure/pipes/vents/scrubber/on, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/xenobiology) "aiU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Lambda Lab Prison Restroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "aiV" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "aiW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "aiX" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "aiY" = ( /obj/structure/surface/table, @@ -3039,36 +2272,25 @@ }, /obj/item/device/defibrillator, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aiZ" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "aja" = ( /obj/structure/surface/table, /obj/item/ore/diamond, /obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "ajb" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) "ajc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "ajd" = ( /obj/structure/surface/table/holotable/wood, @@ -3119,16 +2341,11 @@ /obj/effect/spawner/random/bomb_supply, /obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "ajl" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "ajm" = ( /obj/structure/filingcabinet, @@ -3144,9 +2361,7 @@ /obj/structure/machinery/light/small/built{ dir = 8 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "ajp" = ( /obj/structure/pipes/vents/pump{ @@ -3156,52 +2371,37 @@ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/west, /area/bigredv2/caves/lambda/xenobiology) "ajq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/xenobiology) "ajr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; name = "\improper Lambda Lab Prisoner Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "ajs" = ( /obj/structure/machinery/light, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "ajt" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "aju" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "ajv" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "ajw" = ( /obj/structure/sink{ @@ -3214,95 +2414,63 @@ }, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "ajx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "ajy" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "ajz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "ajA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/nw) "ajB" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "ajC" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "ajE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) "ajF" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "ajG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ajH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ajI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ajJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ajK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3311,9 +2479,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Marshal Office Armory" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "ajL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3371,9 +2537,7 @@ /area/bigredv2/outside/marshal_office) "ajT" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "ajU" = ( /obj/structure/machinery/light/small, @@ -3386,44 +2550,31 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Break Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "ajW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "ajX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "ajY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "ajZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aka" = ( /obj/structure/machinery/faxmachine, @@ -3436,31 +2587,21 @@ /area/bigredv2/outside/marshal_office) "akd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "ake" = ( /obj/structure/surface/table, /obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "akh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "aki" = ( /obj/structure/surface/table, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "akj" = ( /obj/structure/window/framed/solaris, @@ -3475,9 +2616,7 @@ /obj/structure/surface/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/suit/armor/riot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "akl" = ( /obj/structure/sign/safety/hazard, @@ -3486,16 +2625,12 @@ "akm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "akn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ako" = ( /turf/closed/wall/solaris, @@ -3537,98 +2672,64 @@ name = "\improper Marshal Office" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "akw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "aky" = ( /obj/structure/bookcase/manuals/research_and_development, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northwest, /area/bigredv2/caves/lambda/xenobiology) "akz" = ( /obj/structure/bookcase/manuals/research_and_development, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/xenobiology) "akA" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/bronze, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "akB" = ( /obj/structure/surface/table/reinforced, /obj/structure/xenoautopsy, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/xenobiology) "akD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/xenobiology) "akE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/xenobiology) "akF" = ( /obj/structure/machinery/botany/editor, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen_v" - }, +/turf/open/floor/whitegreen_v/northwest, /area/bigredv2/caves/lambda/xenobiology) "akG" = ( /obj/structure/machinery/botany/extractor, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/caves/lambda/xenobiology) "akH" = ( /obj/structure/machinery/centrifuge, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/caves/lambda/xenobiology) "akI" = ( /obj/structure/machinery/mill, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/caves/lambda/xenobiology) "akJ" = ( /obj/structure/surface/table, @@ -3637,60 +2738,41 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen_v" - }, +/turf/open/floor/whitegreen_v/northeast, /area/bigredv2/caves/lambda/xenobiology) "akK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "akL" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/general_offices) "akM" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "akP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/telecomm/n_cave) "akQ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "akR" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "akS" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "akT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "akU" = ( /obj/structure/window/framed/solaris/reinforced, @@ -3701,127 +2783,79 @@ /turf/open/mars, /area/bigredv2/outside/n) "akW" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/caves_north) "akX" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) "akY" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_north) "akZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_north) "ala" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northwest, /area/bigredv2/caves/lambda/xenobiology) "alb" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/caves/lambda/xenobiology) "alc" = ( -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "ald" = ( /obj/structure/surface/table/reinforced, /obj/item/book/manual/research_and_development, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/xenobiology) "ale" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/xenobiology) "alf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/caves/lambda/xenobiology) "alg" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "alh" = ( /obj/item/tool/hatchet, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "ali" = ( /obj/item/reagent_container/spray/plantbgone, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "alj" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/bigredv2/caves/lambda/xenobiology) "alk" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen_v" - }, +/turf/open/floor/whitegreen_v/northeast, /area/bigredv2/caves/lambda/xenobiology) "all" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/telecomm) "alm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "aln" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/nw) "alo" = ( /obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/nw) "alp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Office Evidence Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "alr" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -3831,17 +2865,11 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "alt" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "alu" = ( /turf/closed/wall/solaris, @@ -3850,10 +2878,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "alw" = ( /obj/item/device/radio/intercom{ @@ -3862,10 +2887,7 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/bigredv2/outside/marshal_office) "alx" = ( /obj/structure/bed/chair{ @@ -3877,27 +2899,19 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "alA" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "alB" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) "alC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) "alD" = ( /obj/structure/window/framed/solaris, @@ -3908,31 +2922,20 @@ /turf/open/floor/plating, /area/bigredv2/outside/medical) "alF" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "alG" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/caves_north) "alH" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves_north) "alI" = ( /obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_north) "alJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_north) "alK" = ( /obj/effect/landmark/crap_item, @@ -3941,84 +2944,54 @@ /area/bigredv2/caves/lambda/xenobiology) "alL" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/bigredv2/caves/lambda/xenobiology) "alM" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/caves/lambda/xenobiology) "alN" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/caves/lambda/xenobiology) "alO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/bigredv2/caves/lambda/xenobiology) "alP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/caves/lambda/xenobiology) "alQ" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "alR" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "alS" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "alT" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "alU" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/xenobiology) "alV" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/grown/log, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "alW" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "alX" = ( /turf/closed/wall/solaris/reinforced, @@ -4028,10 +3001,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/caves/lambda/xenobiology) "alZ" = ( /obj/structure/window/framed/solaris, @@ -4042,9 +3012,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) "ama" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/nw) "amb" = ( /obj/item/shard, @@ -4058,37 +3026,26 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "amd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "ame" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "amg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "amh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4153,10 +3110,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) "amt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4165,9 +3119,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Marshal Office Courtroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "amu" = ( /obj/structure/bed/chair{ @@ -4186,9 +3138,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "amx" = ( /obj/structure/surface/table, @@ -4196,47 +3146,34 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "amy" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/marshal_office) "amz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/rampbottom/north, /area/bigredv2/outside/marshal_office) "amA" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "amB" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) "amC" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) "amD" = ( /obj/effect/landmark/crap_item, @@ -4246,9 +3183,7 @@ /turf/open/floor/plating, /area/bigredv2/caves_north) "amG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_lambda) "amH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -4264,86 +3199,57 @@ /turf/open/floor/plating, /area/bigredv2/outside/dorms) "amJ" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/bigredv2/caves/lambda/xenobiology) "amK" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/caves/lambda/xenobiology) "amL" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/caves/lambda/xenobiology) "amM" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4 }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/bigredv2/caves/lambda/xenobiology) "amN" = ( /obj/item/stool, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "amO" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/xenobiology) "amP" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Lambda Lab Xenobiology" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "amQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/caves/lambda/xenobiology) "amR" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Lambda Lab Hydroponics" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "amS" = ( /obj/item/grown/log, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "amT" = ( /obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "amU" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/caves/lambda/xenobiology) "amV" = ( /obj/structure/window/framed/solaris, @@ -4359,10 +3265,7 @@ dir = 1 }, /obj/structure/closet/crate/freezer/rations, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "amX" = ( /obj/structure/window/framed/solaris/reinforced, @@ -4385,44 +3288,33 @@ dir = 1; name = "\improper Marshal Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "anb" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "anc" = ( /obj/structure/machinery/alarm{ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "and" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "ane" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ name = "Emergency NanoMed"; pixel_x = 30 }, -/turf/open/floor{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/red/southeast, /area/bigredv2/outside/marshal_office) "anf" = ( /obj/structure/bed/chair{ @@ -4434,9 +3326,7 @@ "ang" = ( /obj/structure/surface/table/woodentable, /obj/item/paper/Court, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/marshal_office) "anh" = ( /obj/structure/bed/chair/comfy/black{ @@ -4445,9 +3335,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/marshal_office) "ani" = ( /obj/structure/bed/chair{ @@ -4458,9 +3346,7 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "anj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -4484,9 +3370,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Lambda Lab Maintenance Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "anp" = ( /turf/closed/wall/solaris/reinforced, @@ -4495,17 +3379,12 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/xenobiology) "ans" = ( /obj/structure/surface/table, /obj/item/storage/box/gloves, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "ant" = ( /obj/structure/window/framed/solaris, @@ -4523,20 +3402,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/xenobiology) "anv" = ( /obj/effect/glowshroom, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/caves/lambda/xenobiology) "anw" = ( /obj/structure/sign/safety/bulkhead_door, @@ -4547,18 +3420,14 @@ dir = 1; name = "\improper Marshal Office Holding Cell" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "any" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Office Checkpoint" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "anz" = ( /obj/effect/decal/cleanable/dirt, @@ -4566,9 +3435,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "anB" = ( /obj/structure/machinery/light{ @@ -4588,23 +3455,17 @@ "anE" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/marshal_office) "anF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/marshal_office) "anH" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) "anI" = ( /turf/closed/wall/solaris/reinforced, @@ -4637,10 +3498,7 @@ /area/bigredv2/caves/lambda/xenobiology) "anO" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/bigredv2/caves/lambda/xenobiology) "anP" = ( /obj/structure/machinery/light/small{ @@ -4648,33 +3506,21 @@ }, /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/caves/lambda/xenobiology) "anQ" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/caves/lambda/xenobiology) "anR" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/bigredv2/caves/lambda/xenobiology) "anS" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/caves/lambda/xenobiology) "anT" = ( /turf/closed/wall/solaris, @@ -4689,9 +3535,7 @@ /area/bigredv2/outside/hydroponics) "anV" = ( /obj/item/reagent_container/spray/pepper, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "anW" = ( /turf/closed/wall/solaris, @@ -4733,23 +3577,17 @@ "aod" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "aoe" = ( /obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "aof" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/admin_building) "aog" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) "aoh" = ( /obj/structure/machinery/door_control{ @@ -4757,17 +3595,11 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "aoi" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "aoj" = ( /obj/effect/decal/cleanable/dirt, @@ -4777,29 +3609,21 @@ "aok" = ( /obj/structure/surface/table/woodentable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/marshal_office) "aol" = ( -/turf/open/floor{ - icon_state = "rampbottom" - }, +/turf/open/floor/rampbottom, /area/bigredv2/outside/marshal_office) "aom" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/suit/storage/lawyer/bluejacket, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aon" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/marshal_office) "aoo" = ( /obj/structure/pipes/vents/pump{ @@ -4827,32 +3651,24 @@ /area/bigredv2/outside/general_offices) "aov" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aow" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aox" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aoy" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aoz" = ( /obj/structure/window/framed/solaris, @@ -4869,14 +3685,10 @@ /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aoB" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aoD" = ( /turf/closed/wall/solaris/reinforced, @@ -4888,16 +3700,11 @@ "aoF" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aoG" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/bigredv2/caves/lambda/xenobiology) "aoH" = ( /turf/closed/wall/solaris, @@ -4906,102 +3713,66 @@ /obj/item/tool/surgery/scalpel/laser/advanced, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "aoJ" = ( /obj/structure/surface/table/reinforced, -/obj/item/XenoBio/Resin, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/obj/item/oldresearch/Resin, +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/xenobiology) "aoK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/breakroom) "aoL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/xenobiology) "aoM" = ( /obj/item/tool/weedkiller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "aoN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aoO" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/nw) "aoP" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "aoQ" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "aoR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/medical{ pixel_y = -32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "aoT" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aoU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "aoV" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "aoW" = ( /obj/effect/decal/cleanable/dirt, @@ -5011,38 +3782,28 @@ "aoX" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/camera, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aoY" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aoZ" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "apa" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "apb" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/camera_film, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "apc" = ( /turf/open/floor, @@ -5052,15 +3813,11 @@ /turf/open/floor, /area/bigredv2/outside/general_offices) "ape" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "apg" = ( /obj/item/clothing/under/lightbrown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "aph" = ( /obj/structure/machinery/light{ @@ -5081,25 +3838,19 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Dormitories EVA Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "apk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5108,23 +3859,16 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Dormitories EVA" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "apn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apo" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "app" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -5169,52 +3913,34 @@ name = "Lambda Lockdown"; pixel_y = -25 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/southwest, /area/bigredv2/caves/lambda/xenobiology) "apw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/west, /area/bigredv2/caves/lambda/xenobiology) "apx" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/core, /obj/item/shard, /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "apy" = ( /obj/effect/decal/cleanable/mucus, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/xenobiology) "apz" = ( /obj/item/grown/sunflower, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) "apA" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/caves/lambda/xenobiology) "apB" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/xenobiology) "apC" = ( /turf/closed/wall/solaris/reinforced, @@ -5234,15 +3960,11 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical Clinic" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "apF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "apG" = ( /turf/closed/wall/solaris, @@ -5252,9 +3974,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "apJ" = ( /obj/structure/window/framed/solaris/reinforced, @@ -5282,23 +4002,17 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Dormitories Lavatory" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "apN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "apO" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "apP" = ( /obj/structure/surface/table, @@ -5306,9 +4020,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "apQ" = ( /obj/structure/window/framed/solaris, @@ -5332,59 +4044,42 @@ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apX" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 25 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "apZ" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/uranium{ amount = 50 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aqa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/ne) "aqb" = ( /obj/structure/surface/table, @@ -5399,10 +4094,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/southwest, /area/bigredv2/caves/lambda/xenobiology) "aqe" = ( /obj/structure/xenoautopsy/tank/larva, @@ -5410,18 +4102,14 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/bigredv2/caves/lambda/xenobiology) "aqf" = ( /obj/effect/decal/cleanable/blood, /obj/structure/xenoautopsy/tank/broken, /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/decal/warning_stripes, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/bigredv2/caves/lambda/xenobiology) "aqg" = ( /obj/structure/xenoautopsy/tank/alien, @@ -5429,9 +4117,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/bigredv2/caves/lambda/xenobiology) "aqh" = ( /obj/structure/surface/table/reinforced, @@ -5441,10 +4127,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/southeast, /area/bigredv2/caves/lambda/xenobiology) "aqi" = ( /obj/structure/machinery/light/built{ @@ -5453,10 +4136,7 @@ /obj/structure/pipes/vents/scrubber/on{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/xenobiology) "aqj" = ( /obj/structure/machinery/light{ @@ -5465,96 +4145,60 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/xenobiology) "aqk" = ( /obj/structure/machinery/vending/hydroseeds, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/xenobiology) "aql" = ( /obj/structure/machinery/seed_extractor, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/xenobiology) "aqm" = ( /obj/structure/machinery/biogenerator, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/xenobiology) "aqn" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/xenobiology) "aqo" = ( /obj/structure/machinery/vending/hydronutrients, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/xenobiology) "aqp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "aqq" = ( /obj/structure/closet/secure_closet/chemical, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "aqr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "aqs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/outside/medical) "aqt" = ( /obj/structure/machinery/chem_master, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "aqu" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "aqv" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aqw" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aqx" = ( /obj/structure/window/framed/solaris, @@ -5574,48 +4218,32 @@ /area/bigredv2/outside/bar) "aqC" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aqH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "aqI" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/n) "aqJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "aqK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "aqL" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) "aqM" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "aqN" = ( /obj/structure/barricade/wooden{ @@ -5624,9 +4252,7 @@ health = 25000 }, /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "aqO" = ( /obj/structure/barricade/wooden, @@ -5640,15 +4266,11 @@ /area/bigredv2/outside/general_offices) "aqR" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "aqS" = ( /obj/item/clothing/under/brown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "aqT" = ( /obj/item/device/radio/intercom{ @@ -5657,9 +4279,7 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "aqU" = ( /obj/structure/window/framed/solaris, @@ -5675,9 +4295,7 @@ /area/bigredv2/outside/general_offices) "aqW" = ( /obj/structure/dispenser/oxygen, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aqX" = ( /obj/item/storage/toolbox/mechanical, @@ -5687,19 +4305,13 @@ health = 80 }, /obj/structure/surface/rack, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "aqY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "ara" = ( /obj/structure/surface/table/woodentable/fancy, @@ -5707,19 +4319,13 @@ pixel_y = 15 }, /obj/item/paper/bigred/lambda, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "arb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/xenobiology) "arc" = ( /obj/structure/sign/safety/medical{ @@ -5728,82 +4334,54 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/xenobiology) "ard" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "are" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "arf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "arg" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "ari" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "arj" = ( /obj/item/trash/chips, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ark" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "arl" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "arm" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "arp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/n) "arq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) "ars" = ( /obj/structure/bed/chair{ @@ -5818,9 +4396,7 @@ "arx" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "ary" = ( /obj/structure/surface/table, @@ -5829,9 +4405,7 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "arA" = ( /obj/effect/decal/cleanable/dirt, @@ -5839,16 +4413,12 @@ /obj/item/stack/sheet/mineral/uranium{ amount = 50 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "arB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/sheet/plasteel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "arC" = ( /obj/structure/machinery/light{ @@ -5862,9 +4432,7 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 25 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "arD" = ( /turf/open/mars, @@ -5876,24 +4444,15 @@ /obj/item/ammo_magazine/shotgun/incendiary, /obj/item/weapon/gun/shotgun/combat, /obj/structure/machinery/door/window/eastleft, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "arF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "arG" = ( /obj/structure/bed, /obj/item/bedsheet/rd, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "arI" = ( /obj/structure/flora/pottedplant{ @@ -5905,69 +4464,48 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Biology Wing" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "arK" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves_lambda) "arL" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "arM" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "arN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/purple/west, /area/bigredv2/caves/lambda/research) "arO" = ( /obj/effect/decal/cleanable/dirt, /obj/item/explosive/grenade/custom/large, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/outside/medical) "arP" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "arQ" = ( /obj/structure/surface/table, /obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "arR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "arS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "arT" = ( /obj/structure/window/framed/solaris, @@ -5975,9 +4513,7 @@ /area/bigredv2/outside/virology) "arU" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "arW" = ( /obj/structure/surface/table, @@ -5986,58 +4522,37 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "arX" = ( /obj/structure/closet/secure_closet/medical1, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "arZ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/n) "asa" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/n) "asc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "asd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "ase" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "asf" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "asg" = ( /obj/structure/barricade/wooden{ @@ -6050,10 +4565,7 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "ash" = ( /obj/structure/barricade/wooden{ @@ -6061,10 +4573,7 @@ dir = 1; health = 25000 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "asi" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -6072,9 +4581,7 @@ dir = 1; name = "\improper Dormitories Tool Storage Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "asj" = ( /obj/structure/window/framed/solaris, @@ -6090,9 +4597,7 @@ dir = 1; name = "\improper Dormitories EVA" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "asl" = ( /obj/structure/window/framed/solaris/reinforced, @@ -6103,20 +4608,14 @@ /obj/item/clothing/suit/armor/vest, /obj/structure/machinery/door/window/eastright, /obj/structure/window/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "aso" = ( /mob/living/simple_animal/corgi/puppy{ desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; name = "\improper Mister Wiggles" }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "asp" = ( /obj/structure/bed/chair/comfy/black, @@ -6124,9 +4623,7 @@ /area/bigredv2/caves/lambda/breakroom) "asq" = ( /obj/structure/closet/secure_closet/medical1, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "asr" = ( /obj/structure/bed/chair/comfy{ @@ -6151,14 +4648,10 @@ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "asu" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "asv" = ( /turf/closed/wall/solaris, @@ -6170,9 +4663,7 @@ /obj/structure/machinery/light/built{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "asx" = ( /obj/effect/glowshroom, @@ -6184,63 +4675,44 @@ dir = 8 }, /obj/item/tool/surgery/circular_saw, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "asz" = ( /obj/item/device/reagent_scanner, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "asA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/outside/medical) "asB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "asC" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "asD" = ( /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "asE" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "asF" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "asH" = ( /obj/structure/window/framed/solaris, @@ -6311,25 +4783,17 @@ "asU" = ( /obj/structure/closet/l3closet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/general_offices) "asV" = ( /obj/structure/sign/safety/airlock{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "asW" = ( /obj/structure/closet/l3closet, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/general_offices) "asX" = ( /obj/structure/surface/rack, @@ -6339,24 +4803,17 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "asY" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "ata" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/ne) "atb" = ( /turf/closed/wall/solaris, @@ -6368,10 +4825,7 @@ name = "Safe-Room intercom"; pixel_y = -30 }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "atd" = ( /obj/structure/window/framed/solaris, @@ -6390,33 +4844,23 @@ req_access_txt = "106"; specialfunctions = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "atf" = ( /obj/structure/closet/secure_closet/RD, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "atg" = ( /obj/structure/machinery/vending/snack{ icon_state = "snack-broken"; stat = 1 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "ath" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "ati" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6424,38 +4868,26 @@ }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/breakroom) "atj" = ( /obj/structure/machinery/vending/coffee{ icon_state = "coffee-broken"; stat = 1 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "atk" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) "atl" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/n) "atm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/nw) "atn" = ( /obj/structure/closet/secure_closet/personal/cabinet, @@ -6465,22 +4897,15 @@ /obj/structure/machinery/chem_master, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "atq" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "atr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "atw" = ( /obj/structure/window/framed/solaris, @@ -6500,9 +4925,7 @@ /obj/structure/bed{ pixel_y = 13 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "atz" = ( /obj/structure/surface/table, @@ -6510,9 +4933,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "atA" = ( /obj/structure/window/framed/solaris, @@ -6520,9 +4941,7 @@ /area/bigredv2/outside/cargo) "atB" = ( /obj/structure/closet/crate, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "atC" = ( /obj/structure/surface/table, @@ -6569,9 +4988,7 @@ id = "safe_room"; name = "\improper Lambda Lab Director's Safe Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "atJ" = ( /obj/structure/window/framed/solaris, @@ -6587,9 +5004,7 @@ dir = 1; name = "\improper Lambda Lab Administration Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "atL" = ( /obj/structure/bed/chair{ @@ -6598,32 +5013,24 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "atM" = ( /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/breakroom) "atN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/breakroom) "atO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "atP" = ( /obj/structure/window/framed/solaris, @@ -6640,17 +5047,11 @@ /area/bigredv2/outside/nw) "atR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "atS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "atT" = ( /obj/structure/surface/table, @@ -6660,10 +5061,7 @@ }, /obj/item/tool/hand_labeler, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "atU" = ( /obj/structure/window_frame/solaris, @@ -6675,9 +5073,7 @@ dir = 1; name = "\improper Medical Clinic CMO's Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "atX" = ( /obj/item/stack/sheet/metal, @@ -6685,22 +5081,16 @@ layer = 3; pixel_x = 24 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "atY" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "atZ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dormitories Bedroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "aua" = ( /obj/effect/decal/cleanable/dirt, @@ -6730,38 +5120,28 @@ /area/bigredv2/outside/general_offices) "aue" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "auf" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/gold, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aug" = ( /obj/item/stack/sheet/plasteel, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "auh" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/diamond, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "aui" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "auj" = ( /obj/item/device/radio/intercom{ @@ -6786,25 +5166,18 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Lambda Lab Director's Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "aun" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) "auo" = ( /obj/structure/sign/safety/maint{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "aup" = ( /obj/structure/machinery/light{ @@ -6812,52 +5185,35 @@ }, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "auq" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "aur" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "aus" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/telecomm/n_cave) "aut" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/breakroom) "auu" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/breakroom) "auv" = ( /obj/structure/showcase{ icon_state = "bus" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "aux" = ( /obj/effect/landmark/xeno_spawn, @@ -6865,15 +5221,10 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/breakroom) "auy" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "auz" = ( /obj/structure/machinery/door_control{ @@ -6881,29 +5232,21 @@ name = "Observation Shutters"; pixel_y = 28 }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "auA" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "auB" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "auC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "auD" = ( /obj/effect/decal/cleanable/mucus, @@ -6912,97 +5255,61 @@ name = "Observation Shutters"; pixel_y = 28 }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "auE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/n) "auF" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/nw) "auG" = ( /obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "auH" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "auI" = ( /obj/structure/surface/table, /obj/item/storage/box/bodybags, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) "auK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "auL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "auM" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "auN" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "auP" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/bigredv2/outside/medical) "auU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Dormitories Bedroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "auV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Dormitories Tool Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "auW" = ( /turf/closed/wall/solaris/reinforced/hull, @@ -7015,40 +5322,30 @@ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "ava" = ( /obj/structure/pipes/vents/scrubber/on{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "avb" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "avc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "avd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "ave" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7058,17 +5355,13 @@ dir = 1; name = "\improper Lambda Lab Administration Wing" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "avf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "avg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7076,10 +5369,7 @@ }, /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/breakroom) "avh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7088,19 +5378,14 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/breakroom) "avi" = ( /obj/structure/showcase, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "avj" = ( /obj/structure/showcase{ @@ -7109,27 +5394,20 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "avk" = ( /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/breakroom) "avl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; name = "\improper Lambda Lab Break Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "avm" = ( /obj/structure/sign/safety/restrictedarea{ @@ -7137,31 +5415,19 @@ pixel_y = -32 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "avn" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "avo" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "avp" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "avr" = ( /obj/structure/window_frame/solaris, @@ -7169,63 +5435,41 @@ /area/bigredv2/outside/office_complex) "avt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/nw/ceiling) "avu" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Medical Clinic Chemistry" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "avv" = ( /obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "avw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "avx" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "avy" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "avz" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/bigredv2/outside/medical) "avA" = ( -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/bigredv2/outside/medical) "avB" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/bigredv2/outside/medical) "avC" = ( /obj/effect/decal/cleanable/dirt, @@ -7293,26 +5537,19 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Relaxation Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "avP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "avQ" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/breakroom) "avR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7321,10 +5558,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/breakroom) "avS" = ( /obj/effect/decal/cleanable/dirt, @@ -7347,27 +5581,18 @@ /obj/structure/surface/table, /obj/item/trash/burger, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/outside/medical) "avX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "avY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "avZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7376,36 +5601,25 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "awa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "awb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/bigredv2/outside/medical) "awc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awd" = ( /turf/closed/wall/solaris/reinforced, @@ -7413,19 +5627,14 @@ "awe" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/purple/southwest, /area/bigredv2/caves/lambda/research) "awg" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7433,29 +5642,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awk" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awl" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awn" = ( /obj/effect/decal/cleanable/dirt, @@ -7470,17 +5671,13 @@ /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) "awq" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "awr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aws" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7543,10 +5740,7 @@ dir = 8 }, /obj/item/tool/pickaxe/drill, -/turf/open/floor{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/purple/southwest, /area/bigredv2/caves/lambda/research) "awB" = ( /obj/structure/transmitter/colony_net/rotary{ @@ -7567,97 +5761,68 @@ /area/bigredv2/caves/lambda/breakroom) "awE" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "awF" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "awG" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "awH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/breakroom) "awI" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/breakroom) "awJ" = ( /obj/structure/pipes/vents/scrubber/on{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "awK" = ( /obj/structure/machinery/vending/sovietsoda{ icon_state = "sovietsoda-broken"; stat = 1 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "awL" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/tramadol, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "awM" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/filtration_plant) "awN" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "awO" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "awP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "awQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awR" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "awS" = ( /obj/structure/machinery/door_control{ @@ -7665,41 +5830,26 @@ name = "Storm Shutters"; pixel_y = -32 }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "awT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/bigredv2/outside/medical) "awU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awV" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "awW" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/bigredv2/outside/medical) "awX" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/bigredv2/outside/medical) "awY" = ( /obj/structure/bed/chair{ @@ -7735,24 +5885,18 @@ "axe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "axg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "axh" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Dormitories" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "axi" = ( /obj/structure/machinery/light, @@ -7786,10 +5930,7 @@ dir = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) "axo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -7814,9 +5955,7 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "axr" = ( /obj/structure/window/framed/solaris, @@ -7831,78 +5970,52 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "axt" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "axu" = ( /obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/nw) "axv" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/nw/ceiling) "axw" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/adv, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "axx" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "axy" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical Clinic Treatment" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "axz" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "axA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "axB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "axF" = ( /obj/structure/barricade/wooden, /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "axG" = ( /obj/structure/machinery/camera/autoname{ @@ -7945,23 +6058,17 @@ /area/bigredv2/outside/cargo) "axM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "axN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "axO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "axP" = ( /obj/structure/bed/chair{ @@ -7980,18 +6087,14 @@ dir = 1; name = "\improper Dormitories Bedroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "axS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Dormitories" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "axT" = ( /obj/effect/landmark/xeno_spawn, @@ -8001,21 +6104,14 @@ "axU" = ( /obj/item/tool/pickaxe/drill, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "axV" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "axW" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/c) "axX" = ( /turf/closed/wall/solaris/reinforced, @@ -8024,9 +6120,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/nw/ceiling) "axZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8057,18 +6151,14 @@ dir = 1; name = "\improper Medical Clinic" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "aye" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayf" = ( /turf/closed/wall/solaris/reinforced, @@ -8077,55 +6167,38 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayh" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/outside/medical) "ayi" = ( /obj/structure/sign/safety/autodoc{ pixel_x = 32 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) "ayj" = ( /obj/structure/pipes/unary/freezer{ icon_state = "freezer_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayk" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayl" = ( /obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aym" = ( /obj/structure/sign/safety/autodoc{ pixel_x = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "ayn" = ( /obj/effect/decal/cleanable/dirt, @@ -8138,10 +6211,7 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "ayo" = ( /obj/effect/decal/cleanable/dirt, @@ -8168,9 +6238,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "ayt" = ( /obj/effect/decal/cleanable/dirt, @@ -8178,18 +6246,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "ayu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "ayv" = ( /obj/item/device/radio/intercom{ @@ -8201,15 +6265,11 @@ /turf/open/floor, /area/bigredv2/outside/dorms) "ayw" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) "ayx" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) "ayA" = ( /obj/structure/machinery/vending/snack, @@ -8227,23 +6287,17 @@ /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) "ayC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves/lambda/research) "ayD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/lambda/research) "ayE" = ( /obj/structure/girder/reinforced, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/lambda/research) "ayF" = ( /obj/structure/window/framed/solaris, @@ -8251,109 +6305,72 @@ /area/bigredv2/outside/filtration_plant) "ayG" = ( /obj/structure/bed/roller, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "ayH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "ayI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/medical) "ayK" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayL" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "ayM" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "ayN" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "ayO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayP" = ( /obj/item/weapon/broken_bottle, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ayQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/bigredv2/outside/medical) "ayR" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "ayS" = ( /obj/structure/surface/table, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "ayT" = ( /obj/structure/surface/table, /obj/item/bodybag/cryobag, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "ayU" = ( /obj/structure/surface/table, @@ -8364,10 +6381,7 @@ /obj/item/storage/box/gloves, /obj/item/reagent_container/spray/cleaner, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) "ayV" = ( /turf/open/floor/plating, @@ -8386,9 +6400,7 @@ /area/bigredv2/outside/engineering) "aza" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "azb" = ( /obj/structure/window/framed/solaris/reinforced, @@ -8402,22 +6414,16 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) "azd" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) "azf" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) "azg" = ( /obj/structure/surface/table, @@ -8426,41 +6432,27 @@ dir = 1 }, /obj/item/cell/hyper, -/turf/open/floor{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northwest, /area/bigredv2/caves/lambda/research) "azh" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective, /obj/item/clothing/glasses/science, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/research) "azi" = ( /obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/research) "azj" = ( /obj/structure/machinery/autolathe, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/bigredv2/caves/lambda/research) "azk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/lambda/research) "azl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8485,39 +6477,27 @@ "azp" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/outside/medical) "azq" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "azr" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "azs" = ( /obj/structure/bed/roller, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) "azt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "azu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8525,45 +6505,32 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "azv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "azw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/medical) "azx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "azy" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "azz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8573,18 +6540,14 @@ dir = 1; name = "\improper Medical Clinic Treatment" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "azA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "azB" = ( /obj/structure/window/framed/solaris/reinforced, @@ -8601,9 +6564,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "azE" = ( /obj/item/shard, @@ -8615,9 +6576,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "azG" = ( /obj/structure/window/framed/solaris, @@ -8631,9 +6590,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Medical Clinic Power Station" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "azK" = ( /obj/effect/decal/cleanable/dirt, @@ -8641,15 +6598,11 @@ /area/bigredv2/outside/n) "azM" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "azN" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "azO" = ( /turf/closed/wall/solaris/reinforced/hull, @@ -8744,42 +6697,26 @@ /turf/open/floor/plating, /area/bigredv2/outside/bar) "aAi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/research) "aAj" = ( /obj/item/tool/extinguisher/mini, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) "aAk" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/lambda/research) "aAl" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/bigredv2/caves/lambda/research) "aAm" = ( /obj/structure/closet/hydrant{ pixel_x = 32 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/bigredv2/caves/lambda/research) "aAn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/lambda/research) "aAo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8799,53 +6736,35 @@ dir = 2; name = "\improper Medical Clinic Operating Theatre" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "aAs" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/outside/medical) "aAt" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aAu" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) "aAv" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aAw" = ( /obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aAx" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aAy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aAz" = ( /obj/effect/decal/cleanable/dirt, @@ -8856,10 +6775,7 @@ dir = 8; pixel_x = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aAA" = ( /obj/effect/decal/cleanable/dirt, @@ -8870,9 +6786,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aAC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -8884,9 +6798,7 @@ dir = 1; name = "\improper Recreation" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "aAH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8908,28 +6820,19 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "aAK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "aAL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "aAM" = ( /obj/structure/reagent_dispensers/fueltank, @@ -8948,56 +6851,39 @@ /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/research) "aAQ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/bigredv2/caves/lambda/research) "aAR" = ( /obj/structure/barricade/metal{ dir = 4; icon_state = "barricade" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/bigredv2/caves/lambda/research) "aAS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, +/turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves/lambda/research) "aAT" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/lambda/research) "aAU" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/lambda/research) "aAV" = ( /obj/structure/machinery/conveyor{ dir = 4; id = "anomalybelt" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aAW" = ( /obj/structure/machinery/conveyor{ @@ -9005,23 +6891,17 @@ id = "anomalybelt" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aAX" = ( /obj/structure/machinery/light/small/built{ dir = 1 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/lambda/research) "aAY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/lambda/research) "aAZ" = ( /obj/structure/cargo_container/horizontal/blue/bottom, @@ -9033,23 +6913,17 @@ /area/bigredv2/outside/nw/ceiling) "aBb" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "aBc" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "aBd" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "aBe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -9057,15 +6931,11 @@ dir = 1; name = "\improper Medical Clinic" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "aBf" = ( /obj/item/device/healthanalyzer, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aBg" = ( /obj/effect/decal/cleanable/dirt, @@ -9075,18 +6945,13 @@ pixel_y = -32 }, /obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "aBh" = ( /obj/structure/sign/safety/galley{ pixel_x = 32 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) "aBi" = ( /obj/structure/machinery/light{ @@ -9103,14 +6968,10 @@ /obj/structure/mirror{ pixel_x = -28 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBk" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBl" = ( /obj/structure/urinal{ @@ -9119,9 +6980,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBm" = ( /obj/structure/urinal{ @@ -9130,9 +6989,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBn" = ( /obj/structure/machinery/light{ @@ -9141,47 +6998,35 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBq" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/window/reinforced/tinted, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBr" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/beach_ball, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aBu" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/ne) "aBv" = ( /turf/closed/wall/solaris/reinforced, @@ -9197,48 +7042,35 @@ "aBz" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "aBA" = ( /turf/closed/wall/solaris, /area/bigredv2/caves/eta/research) "aBB" = ( /obj/item/device/multitool, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) "aBC" = ( /obj/item/clothing/suit/storage/labcoat/science, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) "aBD" = ( /obj/item/tool/weldingtool/experimental, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) "aBE" = ( /turf/closed/wall/solaris, /area/bigredv2/caves/eta/storage) "aBF" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) "aBG" = ( /obj/effect/decal/warning_stripes{ icon_state = "U-S" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aBH" = ( /obj/structure/machinery/conveyor{ @@ -9247,38 +7079,27 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aBI" = ( /obj/structure/bed/chair, /obj/structure/sign/nosmoking_2{ pixel_x = -28 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "aBJ" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) "aBK" = ( /obj/structure/closet/wardrobe/medic_white, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aBM" = ( /obj/structure/closet/secure_closet/medical1, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aBN" = ( /obj/structure/surface/table, @@ -9291,23 +7112,17 @@ phone_id = "Clinic"; pixel_y = 24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aBO" = ( /obj/structure/surface/table, /obj/structure/machinery/recharger, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aBP" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aBQ" = ( /obj/structure/window/framed/solaris, @@ -9318,18 +7133,13 @@ /area/bigredv2/outside/c) "aBS" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/c) "aBT" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dormitories Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "aBU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -9338,53 +7148,39 @@ /area/bigredv2/outside/dorms) "aBW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBX" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aBZ" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aCa" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aCb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/bigredv2/outside/bar) "aCc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/ne) "aCd" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/ne) "aCe" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/eta/xenobiology) "aCf" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) "aCh" = ( /obj/structure/window/framed/solaris, @@ -9403,9 +7199,7 @@ /obj/item/paper/courtroom{ name = "A Crash Course in Legal SOP" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "aCl" = ( /obj/structure/surface/table, @@ -9438,26 +7232,18 @@ /area/bigredv2/caves/lambda/research) "aCr" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) "aCs" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, /obj/item/clipboard, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/research) "aCt" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/lambda/research) "aCu" = ( /obj/structure/barricade/metal{ @@ -9465,26 +7251,18 @@ icon_state = "barricade" }, /obj/structure/ore_box, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/research) "aCv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; name = "\improper Lambda Lab Technical Lab" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) "aCw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) "aCx" = ( /obj/structure/machinery/light{ @@ -9493,24 +7271,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) "aCy" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) "aCz" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/warning_stripes{ icon_state = "U-N" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aCA" = ( /obj/structure/machinery/conveyor{ @@ -9520,19 +7291,14 @@ dir = 8 }, /obj/structure/plasticflaps, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aCB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aCC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -9541,17 +7307,13 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "aCD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aCE" = ( /obj/item/clothing/glasses/meson, @@ -9559,26 +7321,20 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aCF" = ( /obj/item/reagent_container/pill/happy, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aCG" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "aCH" = ( /obj/structure/window/framed/solaris/reinforced, @@ -9586,22 +7342,16 @@ /area/bigredv2/caves/eta/xenobiology) "aCI" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aCJ" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aCK" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aCL" = ( /turf/closed/wall/solaris, @@ -9612,47 +7362,33 @@ /area/bigredv2/outside/c) "aCN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "aCO" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "aCP" = ( /obj/structure/closet/secure_closet/bar, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aCR" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aCS" = ( /obj/structure/closet/boxinggloves, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aCT" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aCU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -9660,14 +7396,10 @@ dir = 1; name = "\improper Bar Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "aCW" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/ne) "aCY" = ( /obj/effect/decal/cleanable/dirt, @@ -9697,17 +7429,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aDg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aDi" = ( /obj/structure/machinery/light/small, @@ -9720,48 +7448,32 @@ "aDk" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/bigredv2/caves/lambda/research) "aDl" = ( /obj/structure/ore_box, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/bigredv2/caves/lambda/research) "aDm" = ( /obj/structure/barricade/metal{ dir = 4; icon_state = "barricade" }, -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/southeast, /area/bigredv2/caves/lambda/research) "aDn" = ( /obj/structure/pipes/vents/scrubber/on{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) "aDp" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/bigredv2/caves/lambda/research) "aDq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/purple/north, /area/bigredv2/caves/lambda/research) "aDr" = ( /obj/structure/machinery/light{ @@ -9770,19 +7482,13 @@ /obj/structure/sign/safety/laser{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/purple/north, /area/bigredv2/caves/lambda/research) "aDs" = ( /obj/structure/machinery/conveyor{ id = "anomalybelt" }, -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/purple/north, /area/bigredv2/caves/lambda/research) "aDt" = ( /obj/structure/machinery/conveyor_switch{ @@ -9791,16 +7497,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/purple/north, /area/bigredv2/caves/lambda/research) "aDu" = ( -/turf/open/floor{ - dir = 5; - icon_state = "purple" - }, +/turf/open/floor/purple/northeast, /area/bigredv2/caves/lambda/research) "aDv" = ( /obj/structure/window/framed/solaris, @@ -9808,89 +7508,59 @@ /area/bigredv2/caves/eta/living) "aDw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) "aDx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aDy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "aDz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aDA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "aDB" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aDC" = ( /obj/structure/surface/table, /obj/item/tool/surgery/bonesetter, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aDD" = ( /obj/structure/surface/table, /obj/item/storage/box/masks, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aDE" = ( /obj/structure/surface/table, /obj/item/tool/surgery/FixOVein, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aDF" = ( /obj/structure/surface/table, /obj/item/tool/surgery/cautery, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aDG" = ( /obj/structure/sign/safety/medical{ @@ -9898,64 +7568,43 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/surgery/blue, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aDH" = ( /obj/structure/closet/secure_closet/medical1, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aDI" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aDJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aDK" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "aDL" = ( /obj/structure/curtain/open/medical, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aDM" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aDN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aDO" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aDP" = ( /obj/effect/decal/cleanable/blood{ @@ -9964,9 +7613,7 @@ }, /obj/item/trash/chips, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aDQ" = ( /obj/effect/decal/cleanable/dirt, @@ -9982,25 +7629,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aDV" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aDW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aDX" = ( /turf/closed/wall/solaris, @@ -10015,33 +7656,25 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bar Backroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "aEa" = ( /obj/structure/machinery/camera/autoname, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aEb" = ( /obj/structure/machinery/power/apc{ dir = 1; name = "Bar APC" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aEc" = ( /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aEd" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -10057,9 +7690,7 @@ /turf/open/floor, /area/bigredv2/outside/hydroponics) "aEi" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aEj" = ( /obj/structure/window/framed/solaris/reinforced, @@ -10071,28 +7702,18 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/research) "aEn" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) "aEo" = ( -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/bigredv2/caves/lambda/research) "aEp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/southeast, /area/bigredv2/caves/lambda/research) "aEq" = ( /obj/structure/extinguisher_cabinet{ @@ -10101,10 +7722,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) "aEs" = ( /obj/structure/bed/chair/comfy/lime{ @@ -10114,72 +7732,49 @@ /area/bigredv2/caves/lambda/breakroom) "aEt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/purple/east, /area/bigredv2/caves/lambda/research) "aEu" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside) "aEv" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "aEw" = ( /obj/structure/surface/table, /obj/item/tool/surgery/scalpel/manager, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aEx" = ( /obj/item/alien_embryo, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aEz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aEA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aEC" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aED" = ( /obj/structure/bed, /obj/item/clothing/glasses/regular/hipster, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "aEE" = ( /obj/structure/bed, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aEF" = ( /turf/closed/wall/solaris/rock, @@ -10189,34 +7784,26 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aEH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aEI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aEJ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aEK" = ( /obj/structure/pipes/vents/pump, @@ -10227,42 +7814,30 @@ /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "aEN" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Dormitories Toilet" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "aEO" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aEP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aEQ" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aER" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aET" = ( /obj/effect/decal/cleanable/dirt, @@ -10292,10 +7867,7 @@ /area/bigredv2/outside/se) "aEY" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigred/ground/garage_workshop) "aEZ" = ( /obj/effect/decal/cleanable/dirt, @@ -10329,41 +7901,28 @@ /obj/structure/closet/secure_closet/scientist, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/southwest, /area/bigredv2/caves/lambda/research) "aFg" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/bigredv2/caves/lambda/research) "aFh" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/bigredv2/caves/lambda/research) "aFi" = ( /obj/structure/closet/secure_closet/scientist, /obj/structure/machinery/light/built, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/southeast, /area/bigredv2/caves/lambda/research) "aFj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) "aFk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10375,10 +7934,7 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) "aFl" = ( /obj/structure/surface/table, @@ -10389,94 +7945,59 @@ phone_id = "Observation"; pixel_x = -18 }, -/turf/open/floor{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/purple/southwest, /area/bigredv2/caves/lambda/research) "aFm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/purplecorner/west, /area/bigredv2/caves/lambda/research) "aFn" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aFo" = ( -/turf/open/floor{ - icon_state = "purplecorner" - }, +/turf/open/floor/purplecorner, /area/bigredv2/caves/lambda/research) "aFp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "purple" - }, +/turf/open/floor/purple/southeast, /area/bigredv2/caves/lambda/research) "aFq" = ( /obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aFr" = ( /obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aFs" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "aFt" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "aFu" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/virology) "aFv" = ( /turf/open/mars, /area/bigredv2/outside/virology) "aFw" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/virology) "aFx" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aFy" = ( /obj/structure/machinery/optable, /obj/effect/decal/cleanable/dirt, /obj/item/organ/heart/prosthetic, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aFz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aFA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10485,71 +8006,51 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Operating Theatre" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "aFB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "aFC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aFE" = ( /obj/item/reagent_container/pill/happy, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aFF" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aFG" = ( /obj/structure/bed, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "aFH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aFI" = ( /obj/structure/surface/table/reinforced, /obj/item/trash/buritto, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aFJ" = ( /obj/structure/surface/table/reinforced, /obj/item/device/healthanalyzer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aFK" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -10558,19 +8059,14 @@ name = "Medbay Reception"; req_one_access_txt = "2;8;19" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aFL" = ( /obj/effect/landmark/crap_item, /turf/open/mars, /area/bigredv2/outside/c) "aFM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "aFN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10585,9 +8081,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dormitories Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "aFP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10600,9 +8094,7 @@ /obj/structure/surface/table/woodentable, /obj/item/device/radio, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aFU" = ( /obj/structure/machinery/door_control{ @@ -10613,50 +8105,37 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "aFV" = ( /obj/structure/machinery/light/small/built{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "aFW" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aFX" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aFY" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aGa" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Greenhouse Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "aGb" = ( /obj/effect/decal/cleanable/dirt, @@ -10672,25 +8151,18 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Greenhouse Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/library) "aGd" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southwest, /area/bigredv2/caves/lambda/virology) "aGe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aGg" = ( /obj/structure/machinery/light/built{ @@ -10699,10 +8171,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) "aGh" = ( /obj/structure/filingcabinet/filingcabinet, @@ -10710,18 +8179,12 @@ /area/bigredv2/caves/lambda/breakroom) "aGi" = ( /obj/item/clothing/glasses/welding, -/turf/open/floor{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/purplecorner/west, /area/bigredv2/caves/lambda/research) "aGj" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southeast, /area/bigredv2/caves/lambda/virology) "aGk" = ( /obj/effect/decal/warning_stripes{ @@ -10733,29 +8196,20 @@ /obj/structure/reagent_dispensers/virusfood{ pixel_y = 32 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aGl" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/bigredv2/caves/lambda/virology) "aGm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/bigredv2/caves/lambda/virology) "aGn" = ( /obj/effect/decal/warning_stripes{ @@ -10764,87 +8218,58 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aGo" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/virology) "aGp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/virology) "aGq" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/virology) "aGr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) "aGs" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "aGt" = ( /obj/item/reagent_container/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aGu" = ( /obj/item/clothing/mask/breath/medical, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aGv" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aGw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) "aGx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aGy" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aGz" = ( /obj/structure/surface/table, @@ -10852,85 +8277,62 @@ dir = 8 }, /obj/item/storage/firstaid/adv, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aGA" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/o2, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aGB" = ( /obj/structure/bed, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "aGC" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/item/trash/kepler, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aGD" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aGE" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aGF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Dormitories" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "aGG" = ( /obj/structure/surface/table/woodentable, /obj/item/device/binoculars, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aGH" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aGI" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aGJ" = ( /obj/structure/machinery/squeezer, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aGL" = ( /obj/structure/machinery/biogenerator, @@ -10939,25 +8341,17 @@ "aGP" = ( /obj/structure/filingcabinet/medical, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aGT" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aGU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/research) "aGV" = ( /obj/structure/surface/table, @@ -10966,31 +8360,22 @@ dir = 4 }, /obj/item/weapon/gun/pistol/holdout, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aGW" = ( -/turf/open/floor{ - icon_state = "purple" - }, +/turf/open/floor/purple, /area/bigredv2/caves/lambda/research) "aGX" = ( /obj/structure/surface/table, /obj/item/tool/weedkiller/D24, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aGY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "purple" - }, +/turf/open/floor/purple/southeast, /area/bigredv2/caves/lambda/research) "aGZ" = ( /obj/effect/decal/warning_stripes{ @@ -11001,81 +8386,51 @@ pixel_y = 28; start_charge = 0 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aHa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/spaceacillin, /obj/structure/machinery/computer/objective, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aHc" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/virology) "aHd" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-in" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/bigredv2/caves/lambda/virology) "aHe" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aHf" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) "aHg" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "aHh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "aHj" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aHl" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aHm" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "aHn" = ( /obj/effect/decal/cleanable/blood, @@ -11083,171 +8438,112 @@ /area/bigredv2/outside/nw) "aHo" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aHp" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aHq" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "aHr" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/outside/medical) "aHs" = ( /obj/structure/machinery/body_scanconsole, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "aHt" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) "aHu" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/fire, /obj/item/storage/firstaid/fire, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aHv" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/toxin, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aHw" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/regular, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aHy" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/rad, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) "aHz" = ( /obj/structure/bed, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/outside/medical) "aHA" = ( /obj/structure/bed, /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) "aHB" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aHC" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/c) "aHD" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "aHF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aHG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) "aHH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) "aHI" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/bigredv2/outside/bar) "aHJ" = ( /obj/structure/machinery/reagentgrinder, /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aHK" = ( /obj/structure/surface/table, /obj/item/toy/sword, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aHL" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Kitchen Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "aHO" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aHP" = ( /obj/structure/prop/almayer/computers/mapping_computer{ @@ -11257,18 +8553,13 @@ /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) "aHQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/research) "aHR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Anomaly Lab" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) "aHS" = ( /obj/effect/decal/warning_stripes{ @@ -11281,19 +8572,13 @@ master_tag = "viro_controller"; pixel_y = 28 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aHT" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-in" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/bigredv2/caves/lambda/virology) "aHU" = ( /obj/structure/window/reinforced/toughened{ @@ -11304,25 +8589,16 @@ icon_state = "fwindow"; pixel_y = 12 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) "aHV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/lambda/virology) "aHW" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/bigredv2/caves/lambda/virology) "aHX" = ( /obj/structure/window/reinforced/toughened{ @@ -11334,10 +8610,7 @@ pixel_y = 12 }, /obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/lambda/virology) "aHY" = ( /obj/effect/decal/warning_stripes{ @@ -11346,48 +8619,32 @@ /obj/structure/machinery/light/built{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aHZ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/virology) "aIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aIb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aIc" = ( /obj/structure/closet/wardrobe/virology_white, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aIe" = ( /obj/structure/surface/table/reinforced, /obj/item/pizzabox/vegetable, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "aIg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11398,48 +8655,33 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "aIi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "aIj" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aIk" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aIl" = ( /obj/item/reagent_container/glass/rag, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aIm" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/c) "aIn" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "aIo" = ( /obj/structure/machinery/light{ @@ -11450,82 +8692,57 @@ /turf/open/floor, /area/bigredv2/outside/office_complex) "aIp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/c) "aIq" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) "aIr" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) "aIs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) "aIt" = ( /obj/effect/decal/cleanable/blood/gibs/body, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aIu" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aIv" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aIw" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aIx" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aIy" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aIz" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aIA" = ( /obj/structure/sign/safety/biolab{ @@ -11536,68 +8753,43 @@ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aIB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aIC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aID" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aIE" = ( -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aIF" = ( /obj/structure/machinery/vending/snack, /turf/open/floor, /area/bigredv2/outside/hydroponics) "aIJ" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northwest, /area/bigredv2/caves/lambda/research) "aIK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) "aIL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) "aIM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) "aIN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/bigredv2/caves/lambda/research) "aIO" = ( /obj/effect/landmark/crap_item, @@ -11605,39 +8797,27 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "aIP" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) "aIQ" = ( -/turf/open/floor/bluegrid{ - icon_state = "damaged5" - }, +/turf/open/floor/bluegrid/damaged5, /area/bigredv2/caves/lambda/research) "aIR" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/bluegrid{ - icon_state = "damaged4" - }, +/turf/open/floor/bluegrid/damaged4, /area/bigredv2/caves/lambda/research) "aIS" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) "aIT" = ( /obj/structure/surface/table, @@ -11651,10 +8831,7 @@ /obj/structure/pipes/vents/scrubber/on, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) "aIV" = ( /obj/effect/decal/warning_stripes{ @@ -11664,16 +8841,10 @@ pixel_x = 32; pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/bigredv2/caves/lambda/research) "aIW" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aIX" = ( /obj/structure/sign/safety/biohazard{ @@ -11683,10 +8854,7 @@ /obj/structure/machinery/light/small/built{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/caves/lambda/virology) "aIY" = ( /obj/structure/surface/table, @@ -11697,10 +8865,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/caves/lambda/virology) "aJa" = ( /obj/structure/window/reinforced/toughened{ @@ -11713,10 +8878,7 @@ }, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) "aJb" = ( /obj/structure/surface/table, @@ -11724,25 +8886,17 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/admin_building) "aJc" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) "aJd" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/bigredv2/caves/lambda/virology) "aJe" = ( /obj/structure/window/reinforced/toughened{ @@ -11753,82 +8907,52 @@ /obj/structure/machinery/door/window{ layer = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/lambda/virology) "aJf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/caves/lambda/virology) "aJg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aJh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/virology) "aJi" = ( /obj/item/trash/popcorn, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "aJj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/virology) "aJl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical Clinic" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "aJm" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/c) "aJn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/bigredv2/outside/bar) "aJo" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/bigredv2/outside/bar) "aJp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/bigredv2/outside/bar) "aJq" = ( /obj/structure/bed/chair/wood/normal{ @@ -11840,47 +8964,35 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aJr" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Bar Backroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "aJs" = ( /obj/effect/decal/cleanable/flour, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aJt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aJv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aJw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aJx" = ( /obj/effect/decal/cleanable/dirt, @@ -11888,15 +9000,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aJy" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "aJz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11905,9 +9013,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Kitchen Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "aJA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11920,58 +9026,42 @@ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aJD" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/dice/d20, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aJE" = ( -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/research) "aJF" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJG" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aJJ" = ( /obj/structure/machinery/light/built, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11979,26 +9069,20 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "damaged3" - }, +/turf/open/floor/bluegrid/damaged3, /area/bigredv2/caves/lambda/research) "aJN" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJO" = ( /obj/structure/machinery/light, @@ -12008,15 +9092,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJR" = ( /obj/structure/machinery/access_button/airlock_exterior{ @@ -12026,9 +9106,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJS" = ( /obj/structure/sign/safety/biohazard{ @@ -12041,43 +9119,31 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "aJT" = ( /obj/structure/filingcabinet/medical, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aJU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/caves/lambda/virology) "aJV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/virology) "aJW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/caves/lambda/virology) "aJX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12087,9 +9153,7 @@ dir = 1; name = "\improper Lambda Lab Virology Wing" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/virology) "aJY" = ( /obj/effect/decal/warning_stripes{ @@ -12101,10 +9165,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/bigredv2/caves/lambda/virology) "aJZ" = ( /obj/structure/window/reinforced/toughened, @@ -12114,27 +9175,19 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) "aKa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/lambda/virology) "aKb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) "aKc" = ( /obj/structure/pipes/vents/scrubber/on{ @@ -12142,64 +9195,44 @@ }, /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) "aKd" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/lambda/virology) "aKe" = ( /obj/structure/window/reinforced/toughened, /obj/structure/machinery/door/window{ layer = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/caves/lambda/virology) "aKf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/caves/lambda/virology) "aKg" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aKi" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "aKk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/c) "aKl" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/c) "aKm" = ( /obj/structure/sign/safety/medical{ pixel_x = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aKn" = ( /obj/structure/surface/table, @@ -12208,84 +9241,61 @@ /area/bigredv2/outside/office_complex) "aKo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aKp" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aKq" = ( /obj/structure/sign/safety/medical{ pixel_x = -32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aKr" = ( /obj/effect/landmark/hunter_primary, /turf/open/mars, /area/bigredv2/outside/c) "aKt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/c) "aKv" = ( /obj/structure/bed/chair/wood/normal, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aKw" = ( /obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aKx" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aKy" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/glass, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aKz" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aKC" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aKD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aKE" = ( /obj/structure/machinery/door_control{ @@ -12296,70 +9306,48 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aKF" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aKG" = ( /obj/structure/machinery/gibber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aKH" = ( /obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aKI" = ( /obj/structure/machinery/processor, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "aKJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aKO" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aKP" = ( /turf/open/mars, /area/bigredv2/outside/e) "aKQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) "aKS" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/virology) "aKT" = ( /obj/structure/machinery/light/small/built{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) "aKU" = ( /obj/effect/decal/warning_stripes{ @@ -12373,44 +9361,30 @@ pixel_y = -30 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "aKV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-in" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/bigredv2/caves/lambda/virology) "aKW" = ( /obj/structure/window/reinforced/toughened{ dir = 8 }, /obj/structure/window/reinforced/toughened, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) "aKX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/lambda/virology) "aKY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/lambda/virology) "aKZ" = ( /obj/structure/window/reinforced/toughened{ @@ -12422,18 +9396,13 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/caves/lambda/virology) "aLa" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-in" }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/bigredv2/caves/lambda/virology) "aLb" = ( /obj/effect/decal/warning_stripes{ @@ -12442,10 +9411,7 @@ /obj/structure/machinery/light/built{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) "aLc" = ( /obj/effect/decal/cleanable/blood{ @@ -12454,17 +9420,13 @@ /turf/open/mars, /area/bigredv2/outside/c) "aLd" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/c) "aLe" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Command Complex" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aLf" = ( /obj/structure/surface/table, @@ -12472,26 +9434,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "aLg" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "aLi" = ( /obj/structure/closet/jcloset, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "aLl" = ( /obj/structure/filingcabinet, @@ -12514,35 +9469,27 @@ /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aLq" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/vents/pump, /obj/item/trash/cheesie, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aLr" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aLs" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aLt" = ( /obj/structure/surface/table/woodentable{ @@ -12550,92 +9497,66 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aLu" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aLv" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aLw" = ( /obj/structure/surface/table/reinforced, /obj/item/trash/waffles, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLx" = ( /obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLy" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/knife, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLz" = ( /obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, /obj/item/trash/waffles, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLA" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLB" = ( /obj/structure/surface/table/reinforced, /obj/item/trash/plate, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLC" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLD" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aLH" = ( -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "aLI" = ( /turf/open/floor/greengrid, @@ -12643,10 +9564,7 @@ "aLJ" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "aLM" = ( /obj/structure/machinery/shower{ @@ -12663,27 +9581,20 @@ dir = 1; opacity = 1 }, -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/bigredv2/caves/lambda/virology) "aLO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, /obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "aLP" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "aLQ" = ( /obj/structure/window/reinforced/toughened{ @@ -12692,10 +9603,7 @@ /obj/structure/window/reinforced/toughened{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) "aLR" = ( /obj/structure/window/reinforced/toughened{ @@ -12706,141 +9614,89 @@ }, /obj/structure/machinery/computer/pandemic, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/caves/lambda/virology) "aLS" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) "aLT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "aLU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aLV" = ( /obj/structure/sign/safety/biohazard{ pixel_x = 7; pixel_y = -24 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aLW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aLX" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aLY" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/virology) "aLZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "aMa" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "aMb" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "aMc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "aMd" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/c) "aMf" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aMg" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/c) "aMh" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aMi" = ( /obj/structure/surface/table/woodentable, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aMj" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aMk" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/ne) "aMl" = ( /obj/structure/machinery/light{ @@ -12852,25 +9708,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aMn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aMo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aMp" = ( /obj/effect/decal/cleanable/dirt, @@ -12881,9 +9731,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) "aMr" = ( /obj/structure/machinery/computer3/server/rack, @@ -12921,18 +9769,13 @@ req_access_txt = "7"; specialfunctions = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "aMw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/virology) "aMx" = ( /obj/effect/decal/warning_stripes{ @@ -12940,9 +9783,7 @@ }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/virology) "aMy" = ( /obj/effect/decal/warning_stripes{ @@ -12953,19 +9794,13 @@ pixel_y = -32 }, /obj/structure/machinery/light/built, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) "aMB" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "aMC" = ( /obj/effect/landmark/railgun_camera_pos, @@ -12976,18 +9811,14 @@ dir = 1; name = "\improper General Store" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_store) "aMF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aMG" = ( /obj/structure/machinery/light{ @@ -12996,25 +9827,18 @@ /obj/structure/surface/table, /obj/item/tool/surgery/retractor, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "aMH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aMI" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/sosjerky, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aMJ" = ( /obj/structure/machinery/chem_dispenser/soda{ @@ -13029,18 +9853,14 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aMK" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aML" = ( /obj/structure/bed/chair, @@ -13048,16 +9868,12 @@ /area/bigredv2/outside/hydroponics) "aMM" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aMN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aMO" = ( /obj/structure/bed/chair, @@ -13069,9 +9885,7 @@ /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aMQ" = ( /obj/effect/decal/cleanable/dirt, @@ -13079,112 +9893,76 @@ /turf/open/floor, /area/bigredv2/outside/hydroponics) "aMR" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/e) "aMT" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/caves_lambda) "aMV" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/caves_lambda) "aMW" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "aMX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Virology Quarantine" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/virology) "aMY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/virology) "aMZ" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aNa" = ( /obj/structure/closet/l3closet/general, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aNb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aNc" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aNd" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/window/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/virology) "aNe" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aNf" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aNg" = ( /obj/structure/surface/table, /obj/item/tool/surgery/surgicaldrill, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aNh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "aNi" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aNj" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aNk" = ( /obj/structure/barricade/wooden{ @@ -13192,32 +9970,20 @@ dir = 1; health = 25000 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aNl" = ( /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aNm" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aNn" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aNo" = ( /turf/open/floor, @@ -13233,59 +9999,42 @@ "aNr" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aNs" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aNt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aNu" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aNv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aNw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/c) "aNx" = ( /obj/structure/surface/table, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "aNy" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aNz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -13294,9 +10043,7 @@ dir = 1; health = 25000 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aNA" = ( /obj/structure/barricade/wooden{ @@ -13304,23 +10051,17 @@ dir = 1; health = 25000 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aNB" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aNC" = ( /obj/structure/machinery/computer/station_alert, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aND" = ( /obj/structure/surface/table, @@ -13328,9 +10069,7 @@ density = 0; req_one_access_txt = "200" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aNE" = ( /obj/structure/surface/table, @@ -13343,18 +10082,13 @@ phone_color = "blue"; phone_id = "Administration" }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/east, /area/bigredv2/outside/admin_building) "aNG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aNH" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -13363,151 +10097,107 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aNI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/bigredv2/outside/admin_building) "aNJ" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/bigredv2/outside/admin_building) "aNK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/bigredv2/outside/admin_building) "aNL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aNM" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aNN" = ( /obj/structure/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aNO" = ( /obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aNP" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aNQ" = ( /obj/structure/bed, /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aNR" = ( /obj/structure/bed/chair/wood/normal, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNT" = ( /obj/structure/bed/chair/wood/normal, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNU" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNW" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNX" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNY" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aNZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aOa" = ( /obj/structure/bed/chair{ @@ -13521,9 +10211,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/plate, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aOc" = ( /obj/structure/surface/table, @@ -13535,9 +10223,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aOe" = ( /obj/structure/bed/chair{ @@ -13552,9 +10238,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aOg" = ( /obj/structure/surface/table, @@ -13566,90 +10250,62 @@ "aOh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aOk" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/e) "aOl" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/disk/nuclear, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/research) "aOm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/caves_lambda) "aOn" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/caves_lambda) "aOo" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "aOp" = ( /obj/structure/machinery/light/small/built{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/virology) "aOq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/virology) "aOr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aOs" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/virology) "aOt" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aOu" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aOv" = ( /obj/structure/barricade/wooden{ @@ -13657,10 +10313,7 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aOw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -13705,33 +10358,24 @@ "aOD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aOE" = ( /obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "aOF" = ( /obj/structure/machinery/computer/atmos_alert{ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aOG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aOH" = ( /obj/structure/surface/table, @@ -13740,16 +10384,11 @@ dir = 4; health = 80 }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/east, /area/bigredv2/outside/admin_building) "aOI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aOJ" = ( /obj/structure/surface/table, @@ -13758,40 +10397,26 @@ /turf/open/floor/plating, /area/bigredv2/caves/eta/research) "aOK" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "aOL" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aOM" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aON" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Operations Bedroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aOO" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aOP" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "aOQ" = ( /obj/structure/surface/table, @@ -13800,43 +10425,31 @@ phone_color = "Blue"; phone_id = "Director" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/bigredv2/caves/eta/research) "aOR" = ( /obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "aOS" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/cheesie, /obj/item/trash/pistachios, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aOU" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Crew Habitation Complex" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "aOV" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aOW" = ( /obj/structure/surface/table, @@ -13853,9 +10466,7 @@ }, /obj/item/trash/tray, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aOY" = ( /obj/structure/bed/chair{ @@ -13873,9 +10484,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aPa" = ( /obj/structure/surface/table, @@ -13901,16 +10510,11 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aPd" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) "aPe" = ( /obj/structure/surface/table, @@ -13919,9 +10523,7 @@ }, /obj/item/trash/plate, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aPf" = ( /obj/structure/surface/table, @@ -13929,19 +10531,14 @@ phone_category = "Eta Labs"; phone_id = "Workshop" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) "aPg" = ( /obj/structure/surface/table, -/obj/item/XenoBio/Blood, -/obj/item/XenoBio/Blood, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, /obj/item/paper, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "aPh" = ( /obj/structure/bed/chair{ @@ -13965,23 +10562,17 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aPq" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; name = "\improper Lambda Lab Anomaly Chamber" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) "aPr" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/virology) "aPs" = ( /obj/structure/machinery/light/small/built{ @@ -13990,9 +10581,7 @@ /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/virology) "aPt" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -14000,24 +10589,17 @@ dir = 1; name = "\improper Virology Lab Decontamination" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "aPu" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aPv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPw" = ( /obj/structure/surface/table, @@ -14026,58 +10608,40 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPx" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/cookie, /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPy" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/candy, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPz" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/cola, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPA" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/cola, /obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPB" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPC" = ( /obj/effect/landmark/hunter_primary, @@ -14086,28 +10650,19 @@ "aPD" = ( /obj/structure/surface/table, /obj/item/storage/briefcase, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPE" = ( /obj/structure/surface/table, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPF" = ( /obj/structure/surface/table, /obj/item/storage/box/snappops, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aPG" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -14117,55 +10672,40 @@ "aPH" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "aPI" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aPJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aPK" = ( /obj/structure/machinery/computer/communications{ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aPL" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aPM" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aPN" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aPO" = ( /obj/structure/surface/table, @@ -14174,19 +10714,14 @@ health = 80 }, /obj/item/phone, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/east, /area/bigredv2/outside/admin_building) "aPP" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aPQ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -14194,33 +10729,24 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aPS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aPT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "aPV" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aPW" = ( /obj/structure/coatrack{ @@ -14234,32 +10760,23 @@ pixel_x = -6; pixel_y = 15 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aPX" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/lighter/zippo, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aPY" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aPZ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "aQa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14280,9 +10797,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aQd" = ( /obj/structure/bed/chair{ @@ -14300,9 +10815,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aQf" = ( /obj/structure/surface/table, @@ -14323,18 +10836,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aQh" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aQi" = ( /obj/structure/bed/chair{ @@ -14346,9 +10855,7 @@ "aQj" = ( /obj/item/tool/wet_sign, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aQk" = ( /obj/structure/pipes/vents/pump{ @@ -14360,9 +10867,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aQm" = ( /obj/structure/bed/chair{ @@ -14383,9 +10888,7 @@ "aQp" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aQq" = ( /obj/structure/bed/chair{ @@ -14395,36 +10898,24 @@ /area/bigredv2/outside/hydroponics) "aQt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "aQu" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/e) "aQv" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 1; - icon_state = "podhatch" - }, +/turf/open/floor/podhatch/north, /area/bigredv2/caves/lambda/research) "aQw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 5; - icon_state = "podhatch" - }, +/turf/open/floor/podhatch/northeast, /area/bigredv2/caves/lambda/research) "aQy" = ( /obj/structure/surface/table, /obj/item/tool/pen, /obj/item/paper_bundle, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "aQz" = ( /obj/structure/machinery/light{ @@ -14435,59 +10926,42 @@ "aQA" = ( /obj/item/frame/table, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aQB" = ( /obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aQC" = ( /obj/structure/machinery/power/apc{ dir = 1; name = "Virology APC" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aQD" = ( /obj/structure/surface/table, /obj/item/stock_parts/smes_coil, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "aQE" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aQF" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/bigredv2/outside/w) "aQG" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars/mars_dirt_6, /area/bigredv2/outside/w) "aQH" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/cookie, /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aQI" = ( /obj/structure/surface/table, @@ -14497,10 +10971,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aQJ" = ( /obj/structure/surface/table, @@ -14509,20 +10980,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aQL" = ( /obj/structure/surface/table, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aQM" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -14533,10 +10998,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aQO" = ( /obj/structure/surface/table, @@ -14544,18 +11006,14 @@ /obj/effect/decal/cleanable/blood, /obj/item/alien_embryo, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aQP" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/blood, /obj/item/tool/kitchen/knife, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aQQ" = ( /obj/structure/surface/table, @@ -14563,9 +11021,7 @@ /obj/item/tool/lighter/random, /obj/item/storage/toolbox/mechanical, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aQR" = ( /obj/structure/surface/table, @@ -14575,14 +11031,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aQS" = ( -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aQT" = ( /obj/effect/decal/cleanable/dirt, @@ -14591,62 +11043,46 @@ /area/bigredv2/outside/general_store) "aQU" = ( /obj/item/device/flashlight, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aQV" = ( /obj/structure/surface/table, /obj/item/paper, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aQW" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aQX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aQY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aQZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRa" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRb" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRc" = ( /obj/item/device/radio/intercom{ @@ -14658,31 +11094,22 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aRe" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aRf" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "aRh" = ( /obj/structure/machinery/door_control{ @@ -14691,71 +11118,52 @@ pixel_y = -32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "aRi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/outside/admin_building) "aRj" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aRk" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aRl" = ( /obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aRm" = ( /obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aRn" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "aRo" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Bar" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "aRp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Kitchen" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "aRq" = ( /obj/effect/decal/cleanable/dirt, @@ -14776,31 +11184,22 @@ name = "Storm Shutters"; pixel_x = 32 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "aRu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Library" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/library) "aRx" = ( /obj/structure/machinery/teleport/station, -/turf/open/floor{ - icon_state = "podhatch" - }, +/turf/open/floor/podhatch, /area/bigredv2/caves/lambda/research) "aRy" = ( /obj/structure/machinery/teleport/hub, -/turf/open/floor{ - dir = 6; - icon_state = "podhatch" - }, +/turf/open/floor/podhatch/southeast, /area/bigredv2/caves/lambda/research) "aRz" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -14815,28 +11214,19 @@ }, /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aRA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/caves/lambda/virology) "aRB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/caves/lambda/virology) "aRC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -14850,10 +11240,7 @@ /obj/structure/machinery/light/built{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aRD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -14864,51 +11251,38 @@ /area/bigredv2/outside/virology) "aRF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aRG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aRH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aRI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aRJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aRK" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cheesewedge, /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aRL" = ( /obj/structure/surface/table, @@ -14918,10 +11292,7 @@ /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aRM" = ( /obj/effect/landmark/crap_item, @@ -14932,18 +11303,12 @@ /obj/item/reagent_container/food/drinks/cans/thirteenloko, /obj/item/reagent_container/food/drinks/cans/cola, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aRO" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aRP" = ( /obj/effect/decal/cleanable/dirt, @@ -14955,186 +11320,124 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aRR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aRS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aRT" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRU" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRV" = ( /obj/structure/sign/safety/terminal{ pixel_y = -32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRX" = ( /obj/structure/machinery/lapvend, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aRY" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aRZ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aSc" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bar" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "aSe" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Kitchen" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "aSf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/e) "aSg" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/e) "aSh" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/e) "aSi" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/e) "aSl" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/caves_lambda) "aSm" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/caves_lambda) "aSn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_lambda) "aSo" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aSp" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) "aSq" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/vents/scrubber/on{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/caves/lambda/virology) "aSr" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/caves/lambda/virology) "aSs" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/lambda/virology) "aSt" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aSu" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; health = 25000 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aSv" = ( /obj/structure/barricade/wooden{ @@ -15147,45 +11450,32 @@ /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aSx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aSy" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aSA" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; name = "\improper Virology Lab Cell" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "aSB" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/w) "aSC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aSD" = ( /obj/structure/surface/table, @@ -15193,10 +11483,7 @@ /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/donkpocket, /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aSE" = ( /obj/structure/surface/table, @@ -15204,10 +11491,7 @@ /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/chips, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aSF" = ( /obj/structure/surface/table, @@ -15215,19 +11499,13 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/aspen, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aSG" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask, /obj/item/reagent_container/food/drinks/flask, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aSH" = ( /obj/structure/surface/table, @@ -15235,10 +11513,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aSI" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -15250,10 +11525,7 @@ dir = 4 }, /obj/structure/bed/roller, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aSK" = ( /obj/structure/surface/table, @@ -15262,9 +11534,7 @@ }, /obj/item/tool/surgery/surgicaldrill, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aSL" = ( /obj/structure/surface/table, @@ -15273,9 +11543,7 @@ }, /obj/item/device/healthanalyzer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aSM" = ( /obj/structure/surface/table, @@ -15284,9 +11552,7 @@ }, /obj/item/device/multitool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aSN" = ( /obj/structure/surface/table, @@ -15296,17 +11562,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aSO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aSP" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15314,9 +11576,7 @@ dir = 1; name = "\improper General Store Security" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_store) "aSQ" = ( /obj/effect/decal/warning_stripes{ @@ -15331,64 +11591,44 @@ dir = 1; name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aSR" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/rack, /obj/item/weapon/gun/smg/mp27, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/admin_building) "aSS" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/smg/mp27, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/admin_building) "aST" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/bigredv2/outside/admin_building) "aSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aSV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aSW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/north, /area/bigredv2/outside/admin_building) "aSX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15396,9 +11636,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aSZ" = ( /obj/structure/machinery/power/apc{ @@ -15415,40 +11653,28 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aTc" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "aTd" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "aTe" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aTf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aTg" = ( /obj/structure/sign/double/barsign{ @@ -15457,154 +11683,95 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aTh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "aTi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aTj" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aTk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/e) "aTl" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "aTp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "aTq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "aTr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/e) "aTs" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigred/ground/garage_workshop) "aTt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "aTu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/e) "aTv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_lambda) "aTw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_lambda) "aTC" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) "aTD" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) "aTE" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/lambda/virology) "aTG" = ( /obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) "aTH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/bigredv2/caves/lambda/virology) "aTI" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/lambda/virology) "aTJ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) "aTK" = ( /obj/structure/barricade/wooden{ @@ -15612,15 +11779,11 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aTL" = ( /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aTM" = ( /obj/structure/surface/table, @@ -15628,10 +11791,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aTN" = ( /obj/structure/surface/table, @@ -15641,28 +11801,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aTO" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/reagent_container/food/drinks/cans/aspen, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aTP" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aTQ" = ( /obj/structure/reagent_dispensers/watertank, @@ -15674,10 +11825,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aTS" = ( /obj/structure/surface/table, @@ -15685,63 +11833,40 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aTU" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; pixel_y = 16 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "aTV" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "aTY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/admin_building) "aTZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/admin_building) "aUa" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/outside/admin_building) "aUb" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "aUc" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/bigredv2/outside/admin_building) "aUd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/bigredv2/outside/admin_building) "aUe" = ( /obj/structure/machinery/light{ @@ -15757,144 +11882,95 @@ "aUf" = ( /obj/effect/landmark/good_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aUg" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aUh" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "aUi" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aUk" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/e) "aUl" = ( /obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/e) "aUm" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/e) "aUn" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/e) "aUv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lambda_cave_cas) "aUD" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "aUE" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) "aUF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/lambda/virology) "aUG" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) "aUH" = ( /obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/lambda/virology) "aUI" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/caves/lambda/virology) "aUJ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /obj/effect/landmark/objective_landmark/science, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) "aUM" = ( /obj/structure/machinery/computer/operating, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aUO" = ( /obj/structure/surface/table, /obj/item/tank/anesthetic, /obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aUP" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aUQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/w) "aUS" = ( /obj/structure/surface/table, @@ -15902,10 +11978,7 @@ /obj/item/reagent_container/food/snacks/bun, /obj/item/reagent_container/food/snacks/cheesewedge, /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aUT" = ( /obj/structure/surface/table, @@ -15913,19 +11986,13 @@ /obj/item/reagent_container/food/snacks/bun, /obj/item/reagent_container/food/snacks/cheesewedge, /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aUU" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/bun, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aUV" = ( /obj/effect/decal/cleanable/dirt, @@ -15941,86 +12008,61 @@ /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/coffee, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aUY" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/coffee, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aUZ" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask, /obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aVa" = ( /obj/structure/surface/table, /obj/item/device/flashlight, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aVb" = ( /obj/structure/surface/table, /obj/item/storage/box/snappops, /obj/item/storage/box/snappops, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aVc" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/space) "aVd" = ( /obj/structure/surface/table, /obj/item/toy/dice, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVe" = ( /obj/structure/surface/table, /obj/item/weapon/gun/pistol/holdout, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVf" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/knife, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVg" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/pod/old{ name = "Register" }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVh" = ( /obj/structure/bed/chair/office/dark{ @@ -16035,84 +12077,54 @@ name = "Storm Shutters"; pixel_x = 32 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "aVk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/admin_building) "aVl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aVm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aVn" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/c) "aVo" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/c) "aVp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aVq" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/e) "aVr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/e) "aVs" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/e) "aVt" = ( /obj/effect/landmark/hunter_primary, /turf/open/mars, /area/bigredv2/outside/e) "aVv" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/e) "aVx" = ( /obj/structure/curtain/medical, @@ -16120,35 +12132,21 @@ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "aVy" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) "aVz" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/caves/lambda/virology) "aVA" = ( /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/caves/lambda/virology) "aVB" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) "aVC" = ( /obj/structure/machinery/camera/autoname{ @@ -16159,57 +12157,37 @@ name = "Virology Lockdown"; pixel_x = -25 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aVD" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aVE" = ( /obj/structure/surface/table, /obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aVF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/w) "aVG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/w) "aVH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/w) "aVI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/w) "aVJ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper General Store" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_store) "aVK" = ( /obj/effect/decal/cleanable/blood{ @@ -16231,24 +12209,18 @@ /area/bigredv2/outside/general_store) "aVN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVP" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) "aVQ" = ( /obj/structure/platform_decoration/kutjevo/rock, @@ -16258,39 +12230,26 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/space) "aVS" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("interrogation") }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "aVT" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/bigredv2/outside/admin_building) "aVU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/outside/admin_building) "aVV" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/outside/admin_building) "aVW" = ( /obj/structure/bed/chair/office/dark{ @@ -16303,20 +12262,14 @@ pixel_y = 24 }, /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/outside/admin_building) "aVX" = ( /obj/structure/machinery/computer/cameras{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/bigredv2/outside/admin_building) "aVY" = ( /obj/effect/landmark/crap_item, @@ -16326,10 +12279,7 @@ /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "aWb" = ( /obj/structure/surface/table/reinforced, @@ -16338,18 +12288,13 @@ pixel_x = 6; pixel_y = 8 }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/caves/lambda/virology) "aWc" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/caves/lambda/virology) "aWd" = ( /obj/structure/sink{ @@ -16357,45 +12302,31 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aWe" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aWf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aWg" = ( /obj/structure/machinery/computer/pandemic, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aWh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/northwest, /area/bigredv2/outside/virology) "aWi" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/north, /area/bigredv2/outside/virology) "aWj" = ( /obj/effect/decal/warning_stripes{ @@ -16403,77 +12334,51 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/red/southwest, /area/bigredv2/outside/marshal_office) "aWk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/w) "aWs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWv" = ( /obj/structure/machinery/alarm{ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWx" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWy" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/telecomm/n_cave) "aWz" = ( /obj/structure/showcase{ @@ -16488,10 +12393,7 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -16499,61 +12401,39 @@ dir = 1; name = "\improper Operations Armory" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aWD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/outside/admin_building) "aWE" = ( -/turf/open/floor{ - icon_state = "darkbluecorners2" - }, +/turf/open/floor/darkbluecorners2, /area/bigredv2/outside/admin_building) "aWF" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/bigredv2/outside/admin_building) "aWG" = ( /obj/structure/machinery/computer/communications{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/bigredv2/outside/admin_building) "aWH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aWI" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/c) "aWJ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/c) "aWK" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/e) "aWL" = ( /obj/effect/landmark/hunter_secondary, @@ -16562,26 +12442,19 @@ "aWM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/e) "aWN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "aWO" = ( /obj/structure/reagent_dispensers/virusfood{ pixel_x = -32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aWP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16590,9 +12463,7 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Virology Lab Chemistry" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "aWQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16603,32 +12474,23 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aWR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/virology) "aWS" = ( /obj/structure/surface/table, /obj/item/reagent_container/glass/bottle/toxin, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aWT" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aWU" = ( /obj/structure/sink{ @@ -16638,32 +12500,21 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aWV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/w) "aWW" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "aWX" = ( /obj/structure/surface/table, /obj/item/toy/prize/ripley, /obj/item/toy/prize/odysseus, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aWY" = ( /obj/effect/decal/cleanable/dirt, @@ -16679,9 +12530,7 @@ /area/bigredv2/outside/cargo) "aXc" = ( /obj/structure/machinery/light, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "aXd" = ( /obj/structure/machinery/light{ @@ -16698,32 +12547,23 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aXj" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aXk" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aXl" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aXm" = ( /obj/structure/surface/table, @@ -16735,64 +12575,46 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/outside/admin_building) "aXn" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aXo" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "aXq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Office Complex" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "aXr" = ( /turf/open/floor, /area/bigredv2/outside/office_complex) "aXu" = ( /obj/structure/machinery/computer/med_data, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aXw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/virology) "aXx" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Virology Lab Cell" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "aXy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aXz" = ( /obj/structure/toilet{ @@ -16801,42 +12623,28 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aXA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/w) "aXB" = ( /obj/structure/surface/table, /obj/item/toy/prize/mauler, /obj/item/toy/prize/odysseus, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aXC" = ( /obj/structure/surface/table, /obj/structure/machinery/light, /obj/item/toy/prize/ripley, /obj/item/toy/prize/odysseus, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aXD" = ( /obj/structure/surface/table, /obj/item/toy/prize/mauler, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aXE" = ( /obj/structure/surface/table, @@ -16845,36 +12653,24 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aXG" = ( /obj/structure/surface/table, /obj/item/toy/sword, /obj/item/toy/gun, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "aXH" = ( /turf/open/floor/plating, /area/bigredv2/outside/cargo) "aXL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aXM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "aXN" = ( /obj/structure/surface/table, @@ -16885,31 +12681,21 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/bigredv2/outside/admin_building) "aXO" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/bigredv2/outside/admin_building) "aXP" = ( /obj/structure/surface/table, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/bigredv2/outside/admin_building) "aXQ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/bigredv2/outside/admin_building) "aXS" = ( /obj/structure/machinery/vending/snack, @@ -16933,16 +12719,10 @@ /turf/open/floor, /area/bigredv2/outside/office_complex) "aXW" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/e) "aXY" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/w) "aXZ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -16950,9 +12730,7 @@ dir = 1; name = "\improper General Store Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_store) "aYc" = ( /obj/structure/machinery/light, @@ -16960,42 +12738,30 @@ /area/bigredv2/outside/cargo) "aYh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/outside/admin_building) "aYi" = ( /obj/effect/spawner/random/toolbox, /obj/structure/platform_decoration, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aYk" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aYl" = ( /obj/item/cell/hyper/empty, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "aYm" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; name = "\improper Operations Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aYo" = ( /obj/effect/decal/warning_stripes{ @@ -17003,18 +12769,13 @@ pixel_y = -1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/bigredv2/outside/admin_building) "aYp" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Operations Toilet" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aYq" = ( /obj/effect/landmark/objective_landmark/far, @@ -17025,9 +12786,7 @@ /obj/structure/mirror{ pixel_y = 29 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/admin_building) "aYr" = ( /obj/structure/toilet{ @@ -17037,9 +12796,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/admin_building) "aYs" = ( /obj/structure/machinery/vending/cola, @@ -17064,25 +12821,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "aYx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/e) "aYA" = ( /obj/structure/closet/l3closet/virology, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aYB" = ( /obj/structure/closet/l3closet/virology, @@ -17091,14 +12840,10 @@ /area/bigredv2/outside/virology) "aYC" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "aYE" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/w) "aYF" = ( /turf/open/mars, @@ -17131,40 +12876,28 @@ /turf/open/floor/plating, /area/bigredv2/outside/cargo) "aYK" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/c) "aYL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aYM" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "aYN" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; name = "\improper Operations Meeting Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "aYO" = ( /turf/open/floor, /area/bigredv2/outside/admin_building) "aYS" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/outside/admin_building) "aYT" = ( /obj/structure/machinery/atm{ @@ -17172,50 +12905,32 @@ pixel_y = 30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aYU" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aYV" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "aYW" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/north, /area/bigredv2/outside/admin_building) "aYX" = ( /obj/structure/machinery/robotic_fabricator, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aYY" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aYZ" = ( /obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aZa" = ( /obj/effect/decal/mecha_wreckage/ripley/firefighter, @@ -17223,9 +12938,7 @@ /area/bigredv2/outside/office_complex) "aZb" = ( /obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aZc" = ( /obj/structure/surface/table, @@ -17240,33 +12953,24 @@ /area/bigredv2/outside/office_complex) "aZe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/e) "aZh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Chapel" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/chapel) "aZi" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/chapel) "aZj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "aZk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17275,19 +12979,14 @@ /obj/structure/machinery/door/airlock/almayer/research/colony{ name = "\improper Virology Lab Decontamination" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "aZl" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/bigredv2/outside/virology) "aZm" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17347,15 +13046,10 @@ dir = 8 }, /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aZA" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/admin_building) "aZB" = ( /obj/structure/bed/chair/comfy/black, @@ -17365,38 +13059,26 @@ /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) "aZE" = ( -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) "aZF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "aZG" = ( /obj/structure/sign/safety/galley{ pixel_x = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "aZH" = ( /obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "aZJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "aZL" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17404,9 +13086,7 @@ dir = 1; name = "\improper General Store Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "aZM" = ( /obj/effect/landmark/crap_item, @@ -17438,9 +13118,7 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "aZT" = ( /obj/structure/surface/table, @@ -17457,26 +13135,19 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "aZW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/outside/admin_building) "aZX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "aZY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17488,134 +13159,91 @@ pixel_y = -32 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "aZZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "baa" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "bac" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bad" = ( /obj/item/device/analyzer, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bae" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "baf" = ( /obj/structure/surface/table, /obj/item/cell/hyper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bag" = ( /obj/structure/surface/table, /obj/item/reagent_container/glass/beaker/sulphuric, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bah" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bai" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "baj" = ( /obj/structure/bed/chair/office/light, /turf/open/floor, /area/bigredv2/outside/office_complex) "bal" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "bam" = ( -/turf/open/floor{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/rampbottom/north, /area/bigredv2/outside/chapel) "ban" = ( /obj/structure/surface/table/woodentable, /obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "bao" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "bap" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "baq" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "bar" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "bat" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "bay" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17663,10 +13291,7 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "baF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "baG" = ( /obj/structure/bed/chair/comfy/blue{ @@ -17678,9 +13303,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "baJ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17691,29 +13314,21 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "baL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/hotdog, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "baM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/folder/black, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "baN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_sw) "baO" = ( /obj/structure/machinery/light{ @@ -17728,47 +13343,32 @@ /area/bigredv2/outside/office_complex) "baR" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "baS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "baT" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) "baU" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "baW" = ( -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) "bba" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/w) "bbb" = ( /obj/effect/decal/cleanable/blood{ @@ -17778,9 +13378,7 @@ /turf/open/mars, /area/bigredv2/outside/w) "bbc" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/w) "bbe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17796,9 +13394,7 @@ dir = 1; name = "\improper Cargo Bay" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bbh" = ( /obj/effect/landmark/survivor_spawner, @@ -17822,10 +13418,7 @@ dir = 4 }, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "bbl" = ( /obj/structure/bed/chair{ @@ -17834,28 +13427,20 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/bigredv2/outside/admin_building) "bbm" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/admin_building) "bbn" = ( /obj/structure/safe, /obj/effect/landmark/objective_landmark/close, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bbo" = ( /obj/structure/bed/chair/comfy/blue, @@ -17895,26 +13480,20 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bbt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bbu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bbv" = ( /obj/effect/decal/cleanable/blood, @@ -17923,9 +13502,7 @@ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bbw" = ( /obj/effect/decal/cleanable/dirt, @@ -17933,9 +13510,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bbx" = ( /obj/effect/decal/cleanable/dirt, @@ -17943,39 +13518,28 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bby" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bbz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bbA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bbB" = ( -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bbC" = ( /obj/structure/bed/chair/office/light{ @@ -17987,9 +13551,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "bbE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17998,45 +13560,33 @@ /obj/structure/surface/table/woodentable, /obj/item/storage/bible, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "bbF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "bbG" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "bbH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "bbI" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "bbJ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/w) "bbM" = ( /obj/structure/machinery/camera/autoname{ @@ -18090,9 +13640,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bbW" = ( /obj/structure/bed/chair{ @@ -18101,16 +13649,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/bigredv2/outside/admin_building) "bbY" = ( /obj/structure/bed/chair/comfy/blue, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bbZ" = ( /obj/structure/surface/table, @@ -18120,9 +13663,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bca" = ( /obj/structure/machinery/camera/autoname{ @@ -18132,14 +13673,10 @@ /area/bigredv2/outside/admin_building) "bcb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/admin_building) "bcc" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/admin_building) "bcd" = ( /obj/effect/landmark/survivor_spawner, @@ -18148,84 +13685,59 @@ "bce" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bcf" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bcg" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bch" = ( /obj/structure/surface/table, /obj/item/clipboard, -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) "bci" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) "bcj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bck" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Private Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "bcl" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "bcn" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_virology) "bco" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "bcq" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/w) "bct" = ( /obj/structure/barricade/wooden{ @@ -18233,10 +13745,7 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/east, /area/bigredv2/outside/cargo) "bcu" = ( /obj/structure/barricade/wooden{ @@ -18244,9 +13753,7 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bcv" = ( /obj/effect/decal/cleanable/blood, @@ -18306,9 +13813,7 @@ dir = 1; name = "\improper Cargo Bay Offices" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bcE" = ( /obj/structure/surface/table, @@ -18337,27 +13842,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bcI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "bcJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "bcK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18366,36 +13863,24 @@ /obj/structure/machinery/door/airlock/almayer/command/colony{ name = "\improper Operations Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "bcL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bcM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/bigredv2/outside/admin_building) "bcN" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/bigredv2/outside/admin_building) "bcO" = ( /obj/structure/surface/table, /obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bcP" = ( /obj/structure/surface/table, @@ -18403,9 +13888,7 @@ density = 0; req_one_access_txt = "200" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bcQ" = ( /obj/structure/machinery/vending/cola, @@ -18415,26 +13898,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/admin_building) "bcS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/admin_building) "bcT" = ( /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/admin_building) "bcU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18481,14 +13958,10 @@ /turf/open/floor, /area/bigredv2/outside/office_complex) "bdd" = ( -/turf/open/floor{ - icon_state = "rampbottom" - }, +/turf/open/floor/rampbottom, /area/bigredv2/outside/chapel) "bdg" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bdh" = ( /obj/effect/spawner/random/tool, @@ -18506,27 +13979,19 @@ dir = 1; name = "\improper Cargo Bay Offices" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bdk" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "bdl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "bdm" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bdn" = ( /obj/structure/machinery/light{ @@ -18534,30 +13999,20 @@ }, /obj/structure/surface/table/woodentable, /obj/item/device/camera, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bdo" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/bigredv2/outside/admin_building) "bdp" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/bigredv2/outside/admin_building) "bdq" = ( /obj/structure/surface/table, /obj/item/trash/snack_bowl, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bdr" = ( /obj/structure/machinery/vending/snack, @@ -18566,9 +14021,7 @@ /area/bigredv2/outside/admin_building) "bds" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/admin_building) "bdt" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -18576,23 +14029,17 @@ /area/bigredv2/outside/admin_building) "bdu" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bdv" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bdx" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bdy" = ( /obj/structure/bed/chair/comfy/lime{ @@ -18619,9 +14066,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Private Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "bdD" = ( /obj/structure/machinery/light{ @@ -18639,30 +14084,22 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "bdF" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "bdG" = ( /obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "bdI" = ( /obj/structure/machinery/alarm{ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "bdK" = ( /obj/structure/largecrate, @@ -18684,15 +14121,11 @@ /area/bigredv2/outside/cargo) "bdO" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bdP" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bdU" = ( /obj/structure/machinery/door_control{ @@ -18701,10 +14134,7 @@ pixel_x = -32 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bdW" = ( /obj/structure/bed/chair{ @@ -18720,10 +14150,7 @@ /turf/open/floor, /area/bigredv2/outside/office_complex) "bdZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/w) "bec" = ( /obj/effect/decal/cleanable/blood, @@ -18768,52 +14195,35 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "bek" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "bel" = ( /obj/structure/machinery/autolathe, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bem" = ( /obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "ben" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Robotics" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "bep" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) "beq" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/se) "ber" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/se) "bes" = ( /turf/open/mars, @@ -18821,21 +14231,15 @@ "bet" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "beu" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/w) "bev" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/w) "bex" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18855,70 +14259,44 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "beC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "beE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "beF" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "beG" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/c) "beH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "beI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "beJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "beK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "beL" = ( /obj/effect/decal/cleanable/dirt, @@ -18937,21 +14315,14 @@ /obj/structure/sign/prop3{ pixel_y = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "beP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/w) "beQ" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/w) "beT" = ( /obj/structure/machinery/light{ @@ -18960,18 +14331,14 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "beU" = ( -/turf/open/floor{ - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea, /area/bigredv2/outside/cargo) "beV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Cargo Offices" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "beW" = ( /obj/structure/machinery/computer/cameras, @@ -18986,29 +14353,20 @@ /area/bigredv2/outside/cargo) "beY" = ( /obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "beZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "bfb" = ( /obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "bfc" = ( /obj/structure/barricade/wooden, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/c) "bfd" = ( /obj/structure/surface/table, @@ -19017,16 +14375,12 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bfe" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bfi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19035,19 +14389,14 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Office Complex Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "bfj" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bfk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19057,9 +14406,7 @@ /area/bigredv2/outside/office_complex) "bfl" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bfn" = ( /obj/structure/machinery/light, @@ -19067,25 +14414,19 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bfo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bfp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bfq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19106,25 +14447,19 @@ dir = 4 }, /obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bft" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bfu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bfv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -19134,16 +14469,11 @@ /turf/open/floor, /area/bigredv2/outside/office_complex) "bfw" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/se) "bfy" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bfz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19162,20 +14492,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bfD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bfE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19185,10 +14509,7 @@ /area/bigredv2/outside/cargo) "bfF" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bfG" = ( /obj/structure/bed/chair/office/dark{ @@ -19206,97 +14527,67 @@ /area/bigredv2/outside/cargo) "bfI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "bfJ" = ( /obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bfK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bfL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bfM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bfO" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bfP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bfQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Office Complex Janitor Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "bfR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bfV" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bfX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/trashcart, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bfY" = ( /obj/structure/largecrate/cow, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bfZ" = ( /obj/effect/decal/cleanable/dirt, @@ -19312,9 +14603,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cargo Bay Security" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bgb" = ( /obj/structure/surface/table, @@ -19325,48 +14614,34 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "bgc" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bgd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bge" = ( /obj/effect/decal/cleanable/blood/gibs/down, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bgf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/office_complex) "bgg" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/office_complex) "bgh" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "bgi" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "bgj" = ( /obj/structure/surface/table, @@ -19374,19 +14649,14 @@ icon_state = "pottedplant_15"; pixel_y = 10 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "bgk" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bgl" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19396,46 +14666,29 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bgm" = ( /obj/structure/janitorialcart, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgn" = ( /obj/structure/janitorialcart, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgp" = ( /obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgq" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bgr" = ( /obj/structure/closet/secure_closet/security, @@ -19444,79 +14697,54 @@ /area/bigredv2/outside/cargo) "bgs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bgt" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/trash/syndi_cakes, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bgu" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "bgv" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "bgw" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "bgx" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bgy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgD" = ( /obj/effect/decal/cleanable/dirt, @@ -19525,10 +14753,7 @@ /area/bigredv2/outside/cargo) "bgE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bgF" = ( /obj/structure/barricade/wooden{ @@ -19536,10 +14761,7 @@ dir = 4; health = 25000 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/c) "bgI" = ( /obj/structure/surface/table, @@ -19547,31 +14769,23 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bgJ" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "bgK" = ( /obj/structure/surface/table, /obj/item/device/multitool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bgL" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "bgM" = ( /obj/item/device/radio/intercom{ @@ -19580,39 +14794,29 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bgN" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/office_complex) "bgO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/office_complex) "bgP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port) "bgQ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/office_complex) "bgR" = ( /obj/structure/machinery/door_control{ @@ -19620,10 +14824,7 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bgS" = ( /obj/structure/machinery/light{ @@ -19634,25 +14835,16 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgU" = ( /obj/item/clothing/shoes/galoshes, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgV" = ( /obj/item/device/radio/intercom{ @@ -19661,43 +14853,27 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bgW" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/space_port_lz2) "bgX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port_lz2) "bgZ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/explosive/grenade/high_explosive/frag{ desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "bhb" = ( -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "bhe" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bhf" = ( /obj/structure/machinery/power/apc{ @@ -19710,35 +14886,24 @@ /area/bigredv2/outside/c) "bhk" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bhl" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bhm" = ( /obj/structure/surface/table, /obj/item/trash/kepler, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bhn" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/lighter/random, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bhp" = ( /obj/structure/closet/jcloset, @@ -19749,15 +14914,10 @@ /obj/item/clothing/head/beret/jan, /obj/item/clothing/head/beret/jan, /obj/item/clothing/head/beret/jan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bhq" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/se) "bhr" = ( /obj/effect/landmark/crap_item, @@ -19765,60 +14925,42 @@ /area/bigredv2/outside/se) "bhs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_east) "bhu" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "bhv" = ( /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "bhw" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "bhx" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "bhy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "bhz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "bhA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "bhD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "bhE" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19829,15 +14971,11 @@ /area/bigredv2/outside/cargo) "bhI" = ( /obj/item/stack/sheet/metal/med_small_stack, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "bhL" = ( /obj/item/prop/helmetgarb/gunoil, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "bhO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19853,58 +14991,39 @@ /area/bigredv2/outside/c) "bhQ" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "bhR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "bhT" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "bhU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "bhX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/office_complex) "bhY" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/office_complex) "bhZ" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/paper/janitor, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bia" = ( /obj/structure/noticeboard{ @@ -19912,10 +15031,7 @@ pixel_y = -27 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "bic" = ( /obj/effect/landmark/yautja_teleport, @@ -19925,10 +15041,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) "bie" = ( /turf/open/floor/plating, @@ -19937,9 +15050,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "biq" = ( /obj/effect/decal/cleanable/dirt, @@ -19970,33 +15081,23 @@ dir = 4; health = 25000 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bix" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "biy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "biz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "biA" = ( /obj/structure/machinery/door_control{ @@ -20004,34 +15105,25 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "biD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Office Complex" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "biE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Office Complex Janitor Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "biH" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) "biI" = ( /obj/docking_port/stationary/marine_dropship/lz2{ @@ -20064,36 +15156,27 @@ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; health = 25000 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "biS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "biT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "biU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "biV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20104,36 +15187,23 @@ /area/bigredv2/outside/c) "biY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "bja" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "bjb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "bjc" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/se) "bjd" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) "bje" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -20145,28 +15215,19 @@ /area/bigredv2/outside/cargo) "bjk" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "bjl" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/se) "bjm" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/se) "bjn" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) "bjo" = ( /obj/effect/landmark/crap_item, @@ -20177,40 +15238,25 @@ /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "bjw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/s) "bjx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/s) "bjy" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "bjz" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/s) "bjA" = ( /turf/open/mars, /area/bigredv2/outside/s) "bjB" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/s) "bjC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20222,68 +15268,47 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "bjE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/s) "bjF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/s) "bjG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "bjH" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/s) "bjJ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "bjK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "bjL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "bjM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20300,10 +15325,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "bjR" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -20311,71 +15333,43 @@ dir = 1; name = "\improper Cargo Bay Quartermaster" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bjY" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/s) "bjZ" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "bka" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/s) "bkb" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/s) "bkc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/s) "bkd" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/s) "bkf" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_y = -32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "bkg" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "bkh" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/se) "bki" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/se) "bkl" = ( /obj/structure/filingcabinet, @@ -20391,30 +15385,21 @@ dir = 1; name = "\improper Cargo Bay Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bkp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/s) "bkq" = ( /obj/effect/landmark/crap_item, /turf/open/mars, /area/bigredv2/outside/s) "bkr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/s) "bks" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/s) "bku" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -20422,18 +15407,14 @@ dir = 1; name = "\improper Atmospherics Condenser" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bkw" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Atmospherics Condenser" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bkx" = ( /obj/effect/spawner/gibspawner/human, @@ -20442,22 +15423,16 @@ dir = 1; name = "\improper Atmospherics Condenser" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bky" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/se) "bkz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Cargo Bay Quartermaster" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bkA" = ( /obj/structure/bed/chair/office/dark, @@ -20471,60 +15446,40 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "bkC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/s) "bkD" = ( /obj/structure/machinery/vending/sovietsoda{ icon_state = "sovietsoda-broken"; stat = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) "bkE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bkG" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bkH" = ( /obj/structure/dispenser/oxygen, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "bkI" = ( /obj/structure/cryofeed/right{ name = "\improper coolant feed" }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) "bkJ" = ( /obj/structure/cryofeed, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) "bkK" = ( /obj/structure/closet/toolcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bkL" = ( /obj/structure/surface/table, @@ -20532,43 +15487,29 @@ dir = 1 }, /obj/item/tank/air, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) "bkM" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bkN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bkO" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bkP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Atmospherics Condenser Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bkS" = ( /obj/structure/closet/toolcloset, @@ -20576,10 +15517,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bkT" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, @@ -20589,9 +15527,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) "bkV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/se) "bkY" = ( /obj/structure/sink{ @@ -20602,9 +15538,7 @@ pixel_x = 30 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) "bld" = ( /obj/structure/surface/table, @@ -20674,73 +15608,48 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "blq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/s) "blr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/s) "bls" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/s) "blt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/s) "blu" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/s) "blv" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/s) "blx" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/item/tool/extinguisher, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bly" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "blA" = ( /obj/structure/dispenser/oxygen, /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "blB" = ( /obj/effect/landmark/survivor_spawner, @@ -20752,34 +15661,24 @@ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) "blC" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "blD" = ( /obj/structure/surface/table, /obj/item/circuitboard/firealarm, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "blE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "blF" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -20800,9 +15699,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "blV" = ( /obj/structure/bed/chair/office/light{ @@ -20811,9 +15708,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "blW" = ( /obj/structure/surface/table, @@ -20823,35 +15718,25 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "blX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) "blY" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "blZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bma" = ( /obj/effect/decal/cleanable/dirt, @@ -20860,9 +15745,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bmb" = ( /obj/structure/surface/table, @@ -20871,19 +15754,14 @@ pixel_x = 32 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bme" = ( /turf/open/mars, /area/bigredv2/outside/sw) "bmf" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bmg" = ( /obj/effect/decal/cleanable/dirt, @@ -20891,49 +15769,33 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bmh" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bmi" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/structure/curtain/red, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) "bmj" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) "bml" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "bmm" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bmn" = ( /obj/structure/machinery/power/smes/buildable{ @@ -20943,41 +15805,26 @@ /area/bigredv2/outside/engineering) "bmp" = ( /obj/structure/machinery/mill, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bmq" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bms" = ( /obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "bmt" = ( /obj/structure/machinery/computer/atmos_alert, /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "bmu" = ( /obj/structure/machinery/computer/station_alert, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bmw" = ( /obj/structure/closet/secure_closet/engineering_chief, @@ -20985,45 +15832,28 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bmx" = ( /obj/structure/bookcase/manuals/engineering, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "bmy" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bmz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bmA" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/s) "bmB" = ( /obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "bmC" = ( /obj/structure/surface/table, @@ -21032,59 +15862,40 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bmD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bmF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bmG" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bmH" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bmJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bmM" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, /area/bigredv2/outside/space_port_lz2) "bmN" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) "bmO" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -21093,28 +15904,20 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bmP" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/liquid_fuel, /obj/item/stack/sheet/metal, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bmQ" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) "bmR" = ( /obj/structure/machinery/portable_atmospherics/canister/air, @@ -21122,18 +15925,13 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bmS" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bmT" = ( /obj/structure/machinery/power/terminal{ @@ -21142,15 +15940,6 @@ /obj/structure/machinery/light, /turf/open/floor/plating, /area/bigredv2/outside/engineering) -"bmU" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) "bmV" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -21159,33 +15948,23 @@ /area/bigredv2/outside/engineering) "bmW" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bmX" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bmZ" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bna" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bnb" = ( /obj/structure/machinery/door_control{ @@ -21193,36 +15972,25 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bnd" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/computer3/server, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bne" = ( /obj/structure/cryofeed, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) "bnf" = ( /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bng" = ( /obj/effect/decal/cleanable/dirt, @@ -21230,16 +15998,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21248,50 +16012,37 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Atmospherics Condenser Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bnl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnn" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bno" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnp" = ( /obj/structure/machinery/computer/area_atmos/area, /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bnq" = ( /obj/effect/decal/cleanable/dirt, @@ -21299,51 +16050,36 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bnr" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bns" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Engineering SMES" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bnt" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bnu" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bnw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bnx" = ( /obj/structure/surface/table, @@ -21353,9 +16089,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/meson, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bny" = ( /obj/structure/window/reinforced/toughened{ @@ -21371,64 +16105,45 @@ phone_category = "Lambda Labs"; phone_id = "Virology" }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/lambda/virology) "bnz" = ( /obj/structure/surface/table, /obj/item/tool/lighter/zippo, /obj/item/tool/lighter/zippo, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bnA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 1; name = "\improper Atmospherics Condenser" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bnB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnE" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bnH" = ( /obj/structure/machinery/computer/general_air_control, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bnI" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bnK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21437,99 +16152,72 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bnL" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bnM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bnN" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bnO" = ( /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "bnQ" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bnR" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) "bnS" = ( /obj/item/trash/eat, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bnT" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "\improper Engineering Secure Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bnV" = ( /obj/structure/sign/safety/electronics{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bnW" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) "bnX" = ( /obj/item/folder/yellow, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bnY" = ( /obj/structure/machinery/photocopier, @@ -21539,36 +16227,26 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bnZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "boa" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bob" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "boc" = ( /obj/structure/machinery/light{ @@ -21576,92 +16254,64 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "boe" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bof" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "boj" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bok" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "boq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bor" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bos" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bou" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bov" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/item/weapon/twohanded/fireaxe, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "box" = ( /obj/item/frame/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "boy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "boA" = ( /obj/effect/decal/cleanable/dirt, @@ -21669,57 +16319,40 @@ /area/bigredv2/outside/filtration_plant) "boG" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "boH" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "boI" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "boK" = ( /obj/item/trash/pistachios, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "boL" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "boM" = ( /obj/structure/closet/firecloset/full, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "boN" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "boR" = ( /obj/structure/surface/table, @@ -21728,19 +16361,14 @@ dir = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "boS" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/technology_scanner, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "boU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21748,31 +16376,22 @@ dir = 1; name = "\improper Chief Engineer's Office" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "boV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Engineering Complex" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "boW" = ( /obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "boX" = ( /obj/structure/machinery/pipedispenser, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) "boY" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, @@ -21782,30 +16401,21 @@ phone_id = "Filtration"; pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "boZ" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpa" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpc" = ( /obj/structure/barricade/handrail, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) "bpe" = ( /obj/effect/landmark/survivor_spawner, @@ -21813,37 +16423,26 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "bpf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bpi" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bpj" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bpk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21851,26 +16450,19 @@ dir = 1; name = "\improper Engineering Tool Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bpl" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "bpm" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bpn" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21879,62 +16471,44 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bpo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpu" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "bpx" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/sw) "bpy" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/sw) "bpz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Engineering Lockers" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bpA" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21942,51 +16516,34 @@ dir = 1; name = "\improper Engineering Lockers" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bpC" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "bpD" = ( /obj/structure/surface/rack, /obj/item/device/camera_film, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "bpE" = ( /obj/structure/surface/rack, /obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bpF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bpH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bpI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21994,10 +16551,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/device/lightreplacer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bpK" = ( /obj/structure/machinery/light{ @@ -22006,43 +16560,31 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bpL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) "bpM" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bpN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bpO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bpP" = ( /obj/structure/machinery/camera/autoname{ @@ -22051,9 +16593,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpQ" = ( /obj/structure/machinery/light{ @@ -22063,32 +16603,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "bpU" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, @@ -22103,62 +16635,40 @@ /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) "bpX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/se) "bpY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/se) "bpZ" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_cave_cas) "bqa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/se) "bqb" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_cave_cas) "bqc" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "bqd" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "bqf" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Engineering Break Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bqk" = ( /obj/effect/decal/cleanable/dirt, @@ -22166,9 +16676,7 @@ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bql" = ( /obj/structure/machinery/door_control{ @@ -22176,17 +16684,13 @@ name = "Storm Shutters"; pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bqo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bqv" = ( /obj/effect/decal/warning_stripes{ @@ -22209,40 +16713,28 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "bqI" = ( /obj/structure/machinery/vending/snack{ icon_state = "snack-broken"; stat = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "bqJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) "bqK" = ( /obj/item/folder/yellow, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "bqL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22251,27 +16743,21 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engineering Workshop" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bqM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bqN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bqP" = ( /obj/effect/decal/warning_stripes{ @@ -22283,16 +16769,12 @@ dir = 1; name = "\improper Engine Reactor Control" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bqT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bqV" = ( /obj/structure/machinery/light{ @@ -22301,10 +16783,7 @@ /obj/structure/surface/table, /obj/item/paper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bqX" = ( /obj/effect/decal/warning_stripes{ @@ -22316,98 +16795,65 @@ /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "bre" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "brf" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engineering Workshop" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "brg" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bri" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "brj" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "brn" = ( /obj/structure/machinery/power/breakerbox/activated, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "bro" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bru" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "brv" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "brw" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "brx" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bry" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -22415,18 +16861,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "brz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "brA" = ( /obj/structure/surface/table, @@ -22441,25 +16883,17 @@ pixel_x = 30 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "brB" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "brC" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "brD" = ( /turf/open/floor/plating, @@ -22474,50 +16908,36 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "brJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "brK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "brL" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "brM" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "brO" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "brP" = ( /obj/structure/bed/chair/office/light{ @@ -22526,9 +16946,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "brR" = ( /obj/item/device/radio/intercom{ @@ -22537,92 +16955,64 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) "brU" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "brV" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "brW" = ( /obj/structure/surface/table, /obj/item/weapon/baton, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "brY" = ( /obj/structure/bed/chair/office/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "brZ" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/filtration_plant) "bsa" = ( /obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port_lz2) "bsb" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port_lz2) "bsc" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port_lz2) "bsd" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port_lz2) "bse" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port_lz2) "bsm" = ( /obj/effect/decal/cleanable/dirt, @@ -22630,9 +17020,7 @@ amount = 30 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bss" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -22647,81 +17035,58 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "bsC" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bsD" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bsE" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bsF" = ( /obj/structure/surface/table, /obj/item/circuitboard/solar_tracker, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "bsG" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bsH" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) "bsI" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/sw) "bsJ" = ( /obj/structure/machinery/vending/coffee{ icon_state = "coffee-broken"; stat = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "bsK" = ( /obj/structure/machinery/light, /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bsL" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bsM" = ( /obj/structure/machinery/door_control{ @@ -22729,10 +17094,7 @@ name = "Storm Shutters"; pixel_y = -32 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "bsN" = ( /obj/structure/surface/table, @@ -22744,62 +17106,44 @@ /obj/item/stack/sheet/glass{ amount = 30 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bsP" = ( /obj/structure/closet/radiation, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bsX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Engineering Complex" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bsY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Atmospherics Condenser" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bsZ" = ( /obj/structure/janitorialcart, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "bta" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "btb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/constructable_frame, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "btc" = ( /obj/structure/surface/table, /obj/structure/machinery/light, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "btd" = ( /obj/structure/surface/table, @@ -22807,10 +17151,7 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "bte" = ( /obj/structure/machinery/light{ @@ -22819,88 +17160,56 @@ /obj/structure/sign/safety/high_rad{ pixel_x = 32 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bti" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "btj" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "btk" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "btn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/s) "bto" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/se) "btr" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "btt" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "btu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "btw" = ( /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) "btA" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "btB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "btD" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/s) "btH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22910,28 +17219,21 @@ dir = 1; name = "\improper Engineering Complex" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "btJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "btK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "btN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22941,108 +17243,68 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "bua" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Engineering Complex" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "bub" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/s) "buc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/s) "bud" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/s) "buj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/mining) "bun" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/s) "buo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/s) "buu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/s) "buy" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "buz" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_sw) "buB" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "buJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/s) "buQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) "buR" = ( /obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "buY" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib1" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "bvk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/s) "bvv" = ( /obj/structure/machinery/light{ @@ -23052,9 +17314,7 @@ /area/bigredv2/outside/lz2_south_cas) "bvw" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "bvz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23062,17 +17322,13 @@ id = "eta"; name = "Eta Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/eta) "bvD" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) "bvF" = ( /obj/structure/bed/chair/office/light{ @@ -23082,40 +17338,29 @@ /area/bigredv2/outside/lz2_south_cas) "bvH" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/eta) "bvK" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Power Substation" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lz2_south_cas) "bvO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/caves/eta/xenobiology) "bvP" = ( /turf/open/mars, /area/bigredv2/caves/eta/research) "bvQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/eta) "bvR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_se) "bvS" = ( /obj/structure/machinery/power/port_gen/pacman/super, @@ -23123,25 +17368,16 @@ /area/bigredv2/outside/lz2_south_cas) "bvV" = ( /obj/structure/machinery/door/poddoor/almayer/closed, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "bvW" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/eta) "bvX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/eta) "bvY" = ( /turf/open/floor/plating, @@ -23149,38 +17385,24 @@ "bvZ" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "bwa" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "bwb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "bwc" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "bwj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/caves/eta/xenobiology) "bwr" = ( /obj/structure/machinery/light, @@ -23190,23 +17412,17 @@ phone_color = "green"; phone_id = "Virology Lab" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "bww" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) "bwx" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/eta/xenobiology) "bwz" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) "bwA" = ( /obj/structure/surface/table, @@ -23217,23 +17433,17 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Eta Lab Storage Bay" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/storage) "bwH" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/storage) "bwI" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ dir = 1; name = "\improper Eta Lab Decontamination" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) "bwK" = ( /obj/effect/decal/cleanable/blood, @@ -23243,19 +17453,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/north, /area/bigredv2/caves/eta/storage) "bwM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/north, /area/bigredv2/caves/eta/storage) "bwN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23271,9 +17475,7 @@ /area/bigredv2/caves/eta/storage) "bwP" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bwQ" = ( /obj/structure/surface/table, @@ -23283,86 +17485,57 @@ phone_color = "yellow"; phone_id = "Robotics" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bwR" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bwS" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bwT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bwU" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/research) "bwV" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/research) "bwW" = ( /obj/structure/closet/l3closet/scientist, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/research) "bwX" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/caves/eta/research) "bwY" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/eta/research) "bwZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/eta/research) "bxa" = ( /obj/structure/surface/rack, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/eta/research) "bxb" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/caves/eta/research) "bxc" = ( /turf/open/floor, @@ -23381,23 +17554,15 @@ /turf/open/floor, /area/bigredv2/caves/eta/storage) "bxh" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/bigredv2/caves/eta/storage) "bxi" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/bigredv2/caves/eta/storage) "bxj" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxk" = ( /obj/structure/surface/table, @@ -23410,34 +17575,23 @@ pixel_x = -4; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxl" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/research) "bxn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bxo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bxp" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/caves/eta/research) "bxq" = ( /obj/effect/decal/cleanable/dirt, @@ -23453,44 +17607,29 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Robotics" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/storage) "bxs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/storage) "bxu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/storage) "bxv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/storage) "bxw" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxx" = ( /obj/structure/closet/l3closet/scientist, @@ -23498,42 +17637,29 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/research) "bxy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bxz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bxA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bxB" = ( /obj/structure/largecrate/guns, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "bot" - }, +/turf/open/floor/bot, /area/bigredv2/caves/eta/storage) "bxC" = ( /obj/structure/largecrate/guns, -/turf/open/floor{ - icon_state = "bot" - }, +/turf/open/floor/bot, /area/bigredv2/caves/eta/storage) "bxD" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23543,32 +17669,22 @@ "bxE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/storage) "bxG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/storage) "bxH" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxI" = ( /obj/structure/sink{ @@ -23576,17 +17692,11 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bxJ" = ( /obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/caves/eta/research) "bxK" = ( /obj/structure/machinery/light{ @@ -23596,60 +17706,42 @@ /area/bigredv2/caves/eta/storage) "bxL" = ( /obj/structure/powerloader_wreckage/ft, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxM" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxO" = ( /obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bxP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bxQ" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/caves/eta/research) "bxR" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "bxS" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "bxT" = ( /obj/structure/bed, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "bxU" = ( /obj/structure/largecrate/cow, @@ -23657,53 +17749,35 @@ /area/bigredv2/caves/eta/storage) "bxV" = ( /obj/structure/largecrate/cow, -/turf/open/floor{ - icon_state = "bot" - }, +/turf/open/floor/bot, /area/bigredv2/caves/eta/storage) "bxW" = ( /obj/effect/spawner/random/toolbox, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bxX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/storage) "bxY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bya" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) "byb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "byc" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "bye" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/bigredv2/caves_research) "byf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -23723,107 +17797,76 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/storage) "byk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byl" = ( /obj/structure/machinery/photocopier, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byn" = ( /obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/caves/eta/research) "byo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) "byp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) "byq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) "byr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) "bys" = ( /obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/caves/eta/research) "byt" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "byu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "byv" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/research) "byw" = ( /obj/structure/largecrate/mule, -/turf/open/floor{ - icon_state = "bot" - }, +/turf/open/floor/bot, /area/bigredv2/caves/eta/storage) "byx" = ( /obj/structure/largecrate/mule, @@ -23833,35 +17876,21 @@ "byy" = ( /obj/structure/largecrate/lisa, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "bot" - }, +/turf/open/floor/bot, /area/bigredv2/caves/eta/storage) "byz" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/bigredv2/caves/eta/storage) "byA" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/bigredv2/caves/eta/storage) "byB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/bigredv2/caves/eta/storage) "byC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/bigredv2/caves/eta/storage) "byE" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23869,9 +17898,7 @@ dir = 1; name = "\improper Eta Lab Technical Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) "byF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23879,16 +17906,12 @@ dir = 1; name = "\improper Eta Lab Dormitories" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) "byG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_se) "byH" = ( /obj/structure/machinery/light, @@ -23908,125 +17931,88 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byK" = ( /obj/structure/closet/l3closet/scientist, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byL" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "byP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "byQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "byR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/eta/research) "byS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/eta/research) "byT" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/eta/research) "byU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/eta/research) "byV" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/eta/research) "byW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/caves/eta/research) "byX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/eta/research) "byY" = ( /obj/structure/flora/pottedplant{ @@ -24040,95 +18026,65 @@ dir = 1; name = "\improper Eta Lab Robotics" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bza" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bzb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bze" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bzf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bzg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bzh" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bzj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bzk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24136,18 +18092,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzm" = ( /obj/structure/pipes/vents/pump{ @@ -24156,37 +18108,24 @@ /turf/open/floor/plating, /area/bigredv2/caves/eta/research) "bzn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/bigredv2/caves/eta/research) "bzo" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_research) "bzp" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/bigredv2/caves/eta/storage) "bzq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/bigredv2/caves/eta/storage) "bzr" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/bigredv2/caves/eta/storage) "bzs" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -24194,56 +18133,39 @@ dir = 1; name = "\improper Eta Lab Armory" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) "bzt" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bzu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves/eta/research) "bzv" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves/eta/research) "bzw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) "bzx" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) "bzy" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bzz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bzA" = ( /obj/effect/decal/cleanable/dirt, @@ -24251,91 +18173,63 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) "bzB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) "bzC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) "bzD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzE" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/caves/eta/research) "bzF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, /obj/item/phone, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/caves/eta/research) "bzG" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/caves/eta/research) "bzH" = ( /obj/structure/closet/secure_closet/RD, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/caves/eta/research) "bzI" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/bigredv2/caves/eta/research) "bzJ" = ( /obj/item/weapon/gun/smg/m39, /obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "bzK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzL" = ( /obj/structure/machinery/light{ @@ -24345,46 +18239,31 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "bzM" = ( /obj/structure/closet/secure_closet, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "bzN" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bzO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/eta/research) "bzP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves/eta/research) "bzQ" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; name = "\improper Eta Lab Server" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/storage) "bzR" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -24392,24 +18271,17 @@ dir = 1; name = "\improper Eta Lab Security Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/storage) "bzT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bzU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzW" = ( /obj/structure/bed/chair/office/light{ @@ -24418,34 +18290,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/bigredv2/caves/eta/research) "bzX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bzY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "bzZ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bAa" = ( /obj/structure/bed/chair, @@ -24453,85 +18314,60 @@ /area/bigredv2/caves/eta/research) "bAb" = ( /obj/structure/bed/chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/eta/research) "bAc" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/eta/research) "bAd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/eta/research) "bAe" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_se) "bAf" = ( /obj/structure/machinery/r_n_d/server, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/eta/storage) "bAg" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/eta/storage) "bAh" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) "bAi" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bAj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bAn" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bAo" = ( /obj/structure/surface/table, /obj/item/trash/kepler, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bAp" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/research) "bAq" = ( /obj/structure/machinery/light{ @@ -24539,25 +18375,16 @@ }, /obj/structure/machinery/computer/aifixer, /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/research) "bAr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "bAs" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bAu" = ( /obj/structure/surface/table, @@ -24569,64 +18396,47 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) "bAw" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Server" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) "bAx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) "bAy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) "bAz" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/secure_closet/security, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bAA" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bAB" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bAC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bAD" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24635,50 +18445,33 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Director's Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) "bAE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/research) "bAF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/bigredv2/caves/eta/research) "bAH" = ( /obj/structure/lamarr, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/research) "bAI" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "bAJ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) "bAK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -24689,86 +18482,59 @@ /turf/open/floor/plating, /area/bigredv2/caves/eta/research) "bAM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/bigredv2/caves/eta/research) "bAN" = ( /obj/structure/machinery/telecomms/server, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/caves/eta/storage) "bAO" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) "bAP" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) "bAQ" = ( /obj/structure/closet/secure_closet/security/science, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bAR" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/bigredv2/caves/eta/research) "bAS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/bigredv2/caves/eta/research) "bAT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/bigredv2/caves/eta/research) "bAU" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "bAV" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/caves/eta/research) "bAW" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) "bAX" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) "bAY" = ( /obj/structure/machinery/light{ @@ -24781,141 +18547,88 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bBa" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) "bBb" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/bigredv2/caves/eta/xenobiology) "bBc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/xenobiology) "bBd" = ( /obj/structure/target, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/xenobiology) "bBe" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/xenobiology) "bBf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/bigredv2/caves/eta/xenobiology) "bBg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bBh" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/bigredv2/caves/eta/research) "bBj" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) "bBk" = ( /obj/structure/filingcabinet/medical, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) "bBl" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) "bBn" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/biogenerator, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) "bBo" = ( /obj/structure/machinery/seed_extractor, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/bigredv2/caves/eta/research) "bBp" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/research) "bBq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/xenobiology) "bBr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "bBs" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "bBt" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/xenobiology) "bBv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -24925,66 +18638,44 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Eta Lab Maintenance Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/storage) "bBA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bBB" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bBC" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/research) "bBH" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) "bBI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/research) "bBJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/bigredv2/caves/eta/xenobiology) "bBK" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/caves/eta/xenobiology) "bBL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/bigredv2/caves/eta/xenobiology) "bBN" = ( /obj/structure/closet/firecloset, @@ -24995,269 +18686,175 @@ /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) "bBP" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/research) "bBQ" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/caves/eta/research) "bBR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/research) "bBS" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; name = "\improper Eta Lab Cell" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/xenobiology) "bBT" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bBU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "bBV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bBW" = ( /obj/item/tool/pen, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bBX" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "bBY" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "bBZ" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bCa" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "bCb" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/caves/eta/xenobiology) "bCc" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/caves/eta/xenobiology) "bCd" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/caves/eta/xenobiology) "bCe" = ( /obj/structure/surface/table, /obj/item/alienjar, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/caves/eta/xenobiology) "bCf" = ( /obj/structure/surface/table, /obj/structure/xenoautopsy, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/caves/eta/xenobiology) "bCg" = ( /obj/structure/surface/table, -/obj/item/XenoBio/Blood, -/obj/item/XenoBio/Blood, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, /obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/caves/eta/xenobiology) "bCi" = ( /obj/structure/closet/l3closet/scientist, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/eta/xenobiology) "bCj" = ( /obj/structure/closet/l3closet/scientist, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/caves/eta/xenobiology) "bCk" = ( /obj/structure/closet/l3closet/scientist, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/eta/xenobiology) "bCl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "bCm" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "bCn" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "bCo" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "bCp" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "bCq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/bigredv2/caves/eta/xenobiology) "bCr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/caves/eta/xenobiology) "bCs" = ( /obj/effect/landmark/good_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bCt" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "bCu" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bCv" = ( /obj/structure/surface/table, /obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "bCw" = ( /obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "bCx" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "bCy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "bCz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25266,18 +18863,14 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Xenobiology Lab" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/xenobiology) "bCA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "bCC" = ( /obj/structure/surface/table, @@ -25285,10 +18878,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "bCE" = ( /obj/item/stack/sheet/xenochitin, @@ -25302,17 +18892,12 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "bCI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "bCJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -25332,171 +18917,112 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "bCN" = ( /obj/structure/closet/crate/secure, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "bCO" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/eta/xenobiology) "bCP" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/caves/eta/xenobiology) "bCQ" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/caves/eta/xenobiology) "bCR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Eta Lab" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/living) "bCS" = ( /obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "bCT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "bCU" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "bCV" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "bCW" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "bCX" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bCY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "bCZ" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bDa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/caves/eta/research) "bDb" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/xenobiology) "bDc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "bDd" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/xenobiology) "bDe" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) "bDf" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bDg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/bigredv2/caves/eta/research) "bDh" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/teleport/station, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bDi" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "bDj" = ( /obj/structure/machinery/computer/WYresearch, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "bDk" = ( /obj/structure/machinery/light{ @@ -25510,33 +19036,23 @@ }, /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) "bDm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bDn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "bDo" = ( /obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDp" = ( /obj/structure/machinery/light{ @@ -25546,9 +19062,7 @@ /obj/item/disk/nuclear, /obj/item/weapon/gun/pistol/mod88, /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDq" = ( /obj/structure/machinery/light{ @@ -25557,9 +19071,7 @@ /obj/structure/closet/cabinet, /obj/item/clothing/accessory/armband, /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDr" = ( /obj/structure/machinery/light{ @@ -25568,41 +19080,29 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "bDs" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -30 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bDt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "bDu" = ( /obj/structure/surface/table, /obj/item/book/manual/nuclear, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDx" = ( /obj/structure/machinery/light{ @@ -25618,42 +19118,32 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bDA" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/pod/old{ name = "Personal Computer" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDB" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDD" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDE" = ( /obj/item/trash/kepler, @@ -25668,40 +19158,28 @@ "bDG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "bDH" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bDJ" = ( /obj/structure/showcase, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/bigredv2/caves/eta/living) "bDK" = ( /obj/structure/showcase{ desc = "A stand with a plastic display of some kind of weird machine."; icon_state = "coinpress0" }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/bigredv2/caves/eta/living) "bDL" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bDM" = ( /obj/structure/surface/table, @@ -25710,9 +19188,7 @@ /area/bigredv2/caves/eta/living) "bDN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bDO" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -25720,31 +19196,23 @@ dir = 1; name = "\improper Eta Lab Research Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/living) "bDP" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; name = "\improper Eta Lab Canteen" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/living) "bDQ" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/living) "bDR" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/living) "bDS" = ( /obj/structure/machinery/light{ @@ -25754,48 +19222,32 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "bDT" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bDU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/caves/eta/living) "bDV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/caves/eta/living) "bDW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bDX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEc" = ( /obj/structure/machinery/light, @@ -25803,18 +19255,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "bEe" = ( /obj/structure/sink{ @@ -25823,82 +19271,56 @@ pixel_y = 2 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/living) "bEf" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/eta/xenobiology) "bEg" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/caves/eta/xenobiology) "bEh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bEj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Eta Lab Restroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/living) "bEk" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/eta/xenobiology) "bEl" = ( /obj/structure/showcase{ icon_state = "mechfab1" }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/bigredv2/caves/eta/living) "bEm" = ( /obj/structure/showcase{ icon_state = "bus" }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/bigredv2/caves/eta/living) "bEn" = ( /obj/structure/bookcase/manuals/medical, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bEo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bEp" = ( /obj/structure/sink{ @@ -25906,58 +19328,41 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/living) "bEq" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/caves/eta/living) "bEr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/bigredv2/caves/eta/xenobiology) "bEt" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bEv" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/living) "bEy" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bEz" = ( /obj/structure/bed/chair/comfy/orange, @@ -25966,17 +19371,12 @@ "bEA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEB" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/bigredv2/caves/eta/research) "bEC" = ( /obj/structure/machinery/light, @@ -25984,24 +19384,18 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bED" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bEE" = ( /obj/structure/surface/table, /obj/item/spacecash/c1000, /obj/item/spacecash/c1000, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "bEF" = ( /obj/structure/surface/table, @@ -26013,10 +19407,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "bEH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26025,9 +19416,7 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Relaxation" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/living) "bEI" = ( /obj/structure/bed/chair/comfy/orange{ @@ -26044,19 +19433,14 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "bEK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/caves/eta/living) "bEL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26064,19 +19448,13 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/caves/eta/living) "bEM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/caves/eta/living) "bEN" = ( /obj/structure/machinery/vending/coffee, @@ -26084,38 +19462,28 @@ /area/bigredv2/caves/eta/living) "bEO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEP" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bEQ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bER" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "bES" = ( /obj/structure/machinery/light, /turf/open/floor, /area/bigredv2/caves/eta/living) "bET" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/office_complex) "bFw" = ( /turf/closed/wall/solaris/reinforced, @@ -26127,22 +19495,15 @@ /turf/open/floor, /area/bigred/ground/garage_workshop) "bGC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/n) "bGL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lz2_south_cas) "bII" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "bJz" = ( /obj/structure/bed/chair{ @@ -26150,15 +19511,10 @@ pixel_x = -9; pixel_y = 13 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "bJQ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/n) "bJS" = ( /obj/structure/largecrate/random/barrel/green, @@ -26168,41 +19524,27 @@ "bKY" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/filtration_cave_cas) "bLA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "bMa" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/mod88, /obj/item/weapon/gun/pistol/mod88, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/admin_building) "bMf" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) "bMz" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/ne) "bNl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/lambda/xenobiology) "bNA" = ( /obj/structure/surface/table, @@ -26211,48 +19553,34 @@ /area/bigredv2/outside/dorms) "bNE" = ( /obj/structure/closet/secure_closet/brig, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bOZ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "bPy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "bQb" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lz2_west_cas) "bQe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) "bQh" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/n) "bQi" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) "bQG" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_lambda) "bRd" = ( /obj/structure/cable{ @@ -26262,9 +19590,7 @@ /area/bigredv2/oob) "bRm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz1_telecomm_cas) "bRC" = ( /obj/effect/landmark/nightmare{ @@ -26282,16 +19608,11 @@ pixel_y = -8 }, /obj/item/tool/pickaxe/drill, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "bRV" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "bSw" = ( /obj/structure/cable{ @@ -26300,19 +19621,13 @@ /obj/structure/cable{ icon_state = "4-10" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "bSy" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "bTm" = ( /obj/structure/surface/table, @@ -26320,15 +19635,10 @@ /obj/item/device/flashlight/lamp{ pixel_y = 15 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "bTW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_se) "bVX" = ( /obj/structure/barricade/wooden{ @@ -26337,22 +19647,14 @@ health = 25000 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves_north) "bWk" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "bWl" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "bXe" = ( /obj/structure/closet/crate/freezer/rations, @@ -26365,10 +19667,7 @@ /area/bigredv2/outside/cargo) "bYW" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bZp" = ( /obj/structure/bed/chair{ @@ -26379,24 +19678,16 @@ "bZJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "bZL" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) "caD" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/s) "caN" = ( /obj/structure/surface/table, @@ -26413,24 +19704,16 @@ layer = 2.5; pixel_x = -1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/bigredv2/outside/telecomm/warehouse) "ccP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "cdA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_west_cas) "cec" = ( /obj/structure/bed, @@ -26441,89 +19724,63 @@ /obj/effect/landmark/corpsespawner/ua_riot, /obj/item/weapon/gun/rifle/m41a/training, /obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "ceA" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/e) "cfr" = ( /obj/item/explosive/grenade/baton{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "cgt" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "cgO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/telecomm/n_cave) "chq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) "ciG" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/n) "ciY" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "cla" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "clB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "cmC" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; pixel_y = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "cmG" = ( /obj/item/ore/iron{ pixel_x = 6; pixel_y = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "cnk" = ( /obj/structure/platform/kutjevo/rock{ @@ -26541,9 +19798,7 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/space) "cns" = ( /obj/effect/landmark/nightmare{ @@ -26556,62 +19811,43 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "coT" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "cpc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_se) "cpQ" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "cqj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "cqZ" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "crd" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "crl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "crv" = ( /obj/structure/surface/table, @@ -26619,84 +19855,57 @@ pixel_x = 3; pixel_y = 12 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "cry" = ( /obj/structure/surface/table/reinforced, /obj/item/restraint/handcuffs, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "crQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_virology) "csB" = ( /obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "csC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "csE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) "ctT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "cud" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "cuG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "cvi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/tunnel{ id = "hole2" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "cxi" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) "cyv" = ( /obj/structure/machinery/prop/almayer/computer/PC{ @@ -26712,21 +19921,14 @@ /area/bigredv2/outside/admin_building) "czV" = ( /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "cAf" = ( /obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) "cAs" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "cAN" = ( /obj/effect/decal/cleanable/dirt, @@ -26737,48 +19939,33 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "cCr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_sw) "cCu" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "cDx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Abandoned Mining Storage" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "cGc" = ( /obj/structure/machinery/botany, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "cGi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) "cGT" = ( /obj/effect/decal/cleanable/dirt, @@ -26787,21 +19974,13 @@ pixel_x = -32; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "cGZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/lz1_north_cas) "cHn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/lz2_south_cas) "cHy" = ( /obj/item/device/flashlight, @@ -26814,15 +19993,10 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/lz2_cave) "cHH" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/ne) "cHI" = ( /obj/structure/closet/crate, @@ -26830,9 +20004,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "cIP" = ( /obj/item/paper/bigred/smuggling, @@ -26851,9 +20023,7 @@ dir = 1; name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "cJd" = ( /turf/open/space/basic, @@ -26864,26 +20034,18 @@ pixel_x = 7; pixel_y = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "cJA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "cJG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves_north) "cKu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cLq" = ( /obj/structure/bed/chair{ @@ -26897,24 +20059,18 @@ "cLZ" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "cNb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cNH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "cOa" = ( /obj/structure/bed/chair{ @@ -26922,14 +20078,10 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cOl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_research) "cOt" = ( /obj/structure/sign/poster/clf, @@ -26937,40 +20089,29 @@ /area/bigredv2/caves/mining) "cOu" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "cOJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/research) "cPg" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/n) "cPZ" = ( /obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "cQi" = ( /obj/effect/landmark/nightmare{ insert_tag = "medbay-v3" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "cQO" = ( /obj/effect/decal/cleanable/dirt, @@ -26989,10 +20130,7 @@ "cRP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "cSu" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -27005,9 +20143,7 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "cVd" = ( /obj/effect/decal/cleanable/dirt, @@ -27024,9 +20160,7 @@ "cVL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_se) "cVY" = ( /turf/open/mars, @@ -27035,9 +20169,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "cYy" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -27049,14 +20181,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "cYJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_west_cas) "cZj" = ( /obj/structure/filingcabinet, @@ -27065,15 +20193,11 @@ /area/bigredv2/caves/mining) "cZB" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "daf" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "daB" = ( /obj/structure/surface/table/reinforced, @@ -27081,10 +20205,7 @@ phone_category = "Lambda Labs"; phone_id = "Xenobiology" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/xenobiology) "dbi" = ( /turf/closed/wall/solaris/reinforced/hull, @@ -27093,22 +20214,16 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "dgy" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/c) "dgH" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/caves_north) "dhN" = ( /obj/structure/window/framed/solaris, @@ -27122,16 +20237,12 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "dij" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "din" = ( /obj/structure/machinery/blackbox_recorder, @@ -27139,31 +20250,21 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "djo" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "dka" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) "dkY" = ( /obj/structure/platform, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "dmB" = ( /obj/item/tool/pickaxe, @@ -27175,10 +20276,7 @@ /area/bigredv2/caves/eta/storage) "dnV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "dot" = ( /obj/structure/barricade/wooden{ @@ -27190,23 +20288,17 @@ /area/bigredv2/outside/cargo) "dov" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "dqy" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "drq" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "drx" = ( /obj/structure/filingcabinet{ @@ -27219,17 +20311,13 @@ pixel_x = -8; pixel_y = 18 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "drT" = ( /obj/structure/disposalpipe/broken{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "dsh" = ( /obj/effect/decal/cleanable/blood, @@ -27241,16 +20329,11 @@ dir = 8 }, /obj/item/ammo_magazine/pistol/m1911, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dsm" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "dsy" = ( /obj/structure/platform, @@ -27261,10 +20344,7 @@ /area/bigredv2/outside/engineering) "dtf" = ( /obj/structure/prop/server_equipment/broken, -/turf/open/floor{ - dir = 10; - icon_state = "podhatch" - }, +/turf/open/floor/podhatch/southwest, /area/bigredv2/caves/lambda/research) "dtX" = ( /obj/structure/barricade/wooden{ @@ -27272,9 +20352,7 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves_north) "duo" = ( /obj/effect/landmark/corpsespawner/colonist/burst, @@ -27296,15 +20374,11 @@ pixel_y = 8 }, /obj/item/ore/coal, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "dvC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "dws" = ( /obj/effect/decal/warning_stripes{ @@ -27312,10 +20386,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/bigredv2/outside/telecomm/warehouse) "dwL" = ( /obj/structure/bed/chair{ @@ -27323,9 +20394,7 @@ dir = 1; pixel_y = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "dwO" = ( /obj/structure/machinery/light/small{ @@ -27338,9 +20407,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "dxV" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) "dyv" = ( /turf/open/mars, @@ -27350,51 +20417,36 @@ dir = 1 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "dzY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "dAd" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "dAi" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) "dAX" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "dBa" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dBm" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "dBE" = ( /obj/item/trash/cigbutt/cigarbutt{ @@ -27407,10 +20459,7 @@ icon_state = "map"; name = "Pipe manifold" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dBU" = ( /obj/structure/barricade/handrail{ @@ -27418,10 +20467,7 @@ layer = 3.01; pixel_y = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "dCb" = ( /obj/effect/landmark/corpsespawner/security/marshal, @@ -27434,10 +20480,7 @@ icon_state = "1-5" }, /obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dCA" = ( /obj/effect/decal/cleanable/dirt, @@ -27457,14 +20500,10 @@ "dEr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_se) "dEV" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) "dFz" = ( /obj/item/tool/pickaxe{ @@ -27474,9 +20513,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib1" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "dFL" = ( /obj/effect/landmark/corpsespawner/security, @@ -27489,9 +20526,7 @@ /obj/item/stack/sheet/wood{ pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "dHr" = ( /obj/effect/decal/cleanable/blood{ @@ -27502,17 +20537,13 @@ /area/bigredv2/caves/mining) "dHH" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "dIb" = ( /turf/open/floor, /area/bigredv2/caves) "dIz" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_virology) "dIG" = ( /obj/structure/machinery/light{ @@ -27524,19 +20555,13 @@ /obj/item/ore/uranium{ desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dIH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "dJc" = ( /obj/structure/surface/table, @@ -27546,25 +20571,16 @@ "dJr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/caves_lambda) "dJM" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/shotgun, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dKk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/lambda_cave_cas) "dKo" = ( /obj/item/ore/iron{ @@ -27581,9 +20597,7 @@ "dKR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) "dLS" = ( /obj/effect/decal/cleanable/dirt, @@ -27595,21 +20609,14 @@ /obj/structure/window{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "dNd" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "dNn" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigred/ground/garage_workshop) "dNr" = ( /obj/structure/machinery/light{ @@ -27618,10 +20625,7 @@ /obj/structure/machinery/firealarm{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dNX" = ( /obj/effect/landmark/crap_item, @@ -27634,75 +20638,52 @@ pixel_x = -4; pixel_y = 7 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "dOZ" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/n) "dPb" = ( /obj/item/tool/pickaxe/drill, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "dPs" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) "dPC" = ( /obj/structure/barricade/wooden{ dir = 1; pixel_y = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/mining) "dPJ" = ( /turf/closed/wall/r_wall/unmeltable, /area/bigredv2/outside/c) "dQw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_sw) "dQF" = ( /obj/effect/spawner/random/tool, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "dQR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/n) "dQZ" = ( /obj/structure/closet/toolcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "dRc" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Lambda Checkpoint" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "dSg" = ( /obj/effect/landmark/crap_item, @@ -27714,9 +20695,7 @@ /area/bigredv2/caves/mining) "dTi" = ( /obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_north) "dTB" = ( /turf/closed/wall/solaris/reinforced, @@ -27726,74 +20705,50 @@ pixel_x = -8; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "dUz" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) "dVp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "dVA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "dVM" = ( /obj/structure/largecrate/supply/supplies, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "dWd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "dWl" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "dXs" = ( /obj/item/tool/pickaxe{ pixel_y = 12 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "dXu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "dXK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/n) "dZO" = ( /obj/effect/decal/cleanable/blood{ @@ -27803,9 +20758,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) "eaW" = ( /obj/structure/disposalpipe/segment, @@ -27815,35 +20768,23 @@ dir = 1 }, /obj/structure/pipes/valve/open, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "eaZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "yellowfull" - }, +/turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) "ebr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "ebZ" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) "eci" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/outside/lz1_telecomm_cas) "ecy" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -27856,24 +20797,17 @@ /obj/item/trash/cigbutt{ pixel_x = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) "ecK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_east) "ecX" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "eeI" = ( /obj/structure/machinery/light, @@ -27885,26 +20819,19 @@ icon_state = "pottedplant_10"; pixel_y = 11 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "efh" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/caves/eta/research) "efK" = ( /obj/structure/machinery/computer/crew{ density = 0; pixel_y = 16 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "egI" = ( /obj/item/ore, @@ -27912,17 +20839,12 @@ pixel_x = 13; pixel_y = 12 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "egL" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "egS" = ( /obj/structure/disposalpipe/segment, @@ -27932,18 +20854,14 @@ /obj/effect/landmark/nightmare{ insert_tag = "filtration_restored" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/s) "eju" = ( /obj/item/ore{ pixel_x = 9; pixel_y = 2 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "ejP" = ( /turf/closed/wall/solaris, @@ -27958,37 +20876,25 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "elh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/n) "els" = ( /obj/structure/ore_box, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "elM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "emC" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ene" = ( /obj/structure/surface/table, @@ -28018,70 +20924,46 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ name = "\improper Dormitories Restroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "eoU" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, +/turf/open/floor/almayer/w_y2/north, /area/bigredv2/outside/admin_building) "epe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/eta) "eql" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) "eqr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ dir = 1; name = "\improper Dormitories Restroom" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "erA" = ( /obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "erG" = ( /obj/effect/decal/hefa_cult_decals/d32, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "erJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/eta) "erX" = ( /obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) "esS" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/window, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "eup" = ( /obj/structure/bed/chair, @@ -28092,14 +20974,10 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "euF" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "euO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/bigredv2/caves_research) "euP" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -28108,50 +20986,33 @@ /obj/structure/closet/crate/miningcar/yellow{ layer = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "evA" = ( /obj/structure/platform_decoration/shiva{ dir = 8 }, /obj/structure/platform_decoration/shiva, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "evX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "ewv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/curtain/red, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) "exc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigred/ground/garage_workshop) "ezQ" = ( /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "eAU" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/eta) "eBn" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -28159,17 +21020,13 @@ pixel_y = 15 }, /obj/effect/spawner/gibspawner/xeno, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "eBL" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "eDQ" = ( /obj/structure/closet/secure_closet/engineering_personal, @@ -28183,9 +21040,7 @@ "eEm" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/queen_spawn, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "eEy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -28193,31 +21048,21 @@ /area/bigredv2/outside/lz2_west_cas) "eER" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "eFh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) "eFr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/bigredv2/outside/marshal_office) "eGa" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_research) "eGb" = ( /obj/structure/barricade/wooden{ @@ -28228,40 +21073,26 @@ /obj/item/weapon/twohanded/spear{ pixel_x = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "eGf" = ( /obj/structure/machinery/light/double, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "eGM" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) "eHA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "eIN" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "eJE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "eJU" = ( /obj/structure/surface/table, @@ -28270,16 +21101,11 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "eKm" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "eKU" = ( /obj/structure/machinery/door_control{ @@ -28288,27 +21114,19 @@ pixel_x = 30; throw_range = 15 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "eKZ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "eLp" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "eLq" = ( /obj/structure/surface/rack, @@ -28320,21 +21138,15 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "eLQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/filtration_plant) "eMX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_lambda) "eNe" = ( /obj/item/clothing/under/darkred, /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "eNx" = ( /obj/effect/landmark/nightmare{ @@ -28344,26 +21156,18 @@ /area/bigredv2/caves) "eNN" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "eOd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "ePk" = ( /obj/structure/prop/server_equipment/broken, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) "eRc" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/filtration_plant) "eRe" = ( /obj/structure/pipes/vents/pump{ @@ -28372,37 +21176,26 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "eRI" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/c) "eSm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "eSu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "eSN" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "eTj" = ( /obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/c) "eUs" = ( /obj/effect/decal/cleanable/dirt, @@ -28427,23 +21220,14 @@ /obj/structure/cable{ icon_state = "9-10" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "eVM" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "eWd" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "eWo" = ( /obj/effect/decal/cleanable/dirt, @@ -28451,10 +21235,7 @@ /area/bigredv2/outside/filtration_plant) "eWv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/telecomm/n_cave) "eWy" = ( /obj/effect/decal/cleanable/dirt, @@ -28465,9 +21246,7 @@ "eWB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "eWE" = ( /obj/structure/barricade/wooden{ @@ -28475,17 +21254,12 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_north) "eWG" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "eWP" = ( /obj/structure/surface/table, @@ -28500,18 +21274,13 @@ "eYy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "eYA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/e) "eYH" = ( /obj/structure/machinery/camera/autoname{ @@ -28523,9 +21292,7 @@ "eYK" = ( /obj/item/reagent_container/spray/cleaner, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "eZw" = ( /obj/effect/decal/warning_stripes{ @@ -28538,9 +21305,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "fbf" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/sw) "fbB" = ( /obj/effect/landmark/nightmare{ @@ -28552,37 +21317,25 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "fdr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_sw) "fdy" = ( /turf/open/floor, /area/bigredv2/caves/eta/living) "feN" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/space_port_lz2) "feS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_sw) "fgD" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Lambda Lab Server Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) "fgE" = ( /obj/effect/decal/cleanable/dirt, @@ -28590,24 +21343,17 @@ /obj/effect/landmark/static_comms/net_two{ broken_on_spawn = 1 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) "fhy" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/bigredv2/outside/admin_building) "fhI" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_north) "fin" = ( /turf/open/floor/plating, @@ -28617,42 +21363,28 @@ /obj/structure/machinery/computer/objective{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "fjF" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars/mars_dirt_6, /area/bigredv2/outside/w) "fjP" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves) "fmd" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "fmn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_virology) "fmL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/camera/oldcamera, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "fnh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28660,31 +21392,23 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "fni" = ( /obj/structure/machinery/door/airlock/almayer/medical{ name = "\improper Medical Clinic Morgue" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "fnv" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) "fnO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "foB" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/bigredv2/caves_east) "fpa" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -28694,45 +21418,30 @@ /turf/closed/wall/wood, /area/bigredv2/caves/mining) "fsT" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/n) "fsY" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars/mars_dirt_6, /area/bigredv2/outside/space_port_lz2) "ftY" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/sw) "fus" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "fvb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "fvu" = ( /obj/structure/machinery/light/double, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "fwa" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_virology) "fwD" = ( /obj/structure/barricade/wooden{ @@ -28740,10 +21449,7 @@ dir = 4; health = 25000 }, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/bigredv2/outside/cargo) "fwO" = ( /obj/structure/prop/almayer/cannon_cables{ @@ -28754,9 +21460,7 @@ desc = "A bewildering tangle of machinery and pipes."; name = "\improper coolant feed" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/bigredv2/oob) "fwV" = ( /obj/structure/surface/table, @@ -28766,39 +21470,26 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "fxn" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/oob) "fxK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/lz1_telecomm_cas) "fxZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_lambda) "fyp" = ( /obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) "fyz" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "fyO" = ( /obj/structure/transmitter/colony_net{ @@ -28807,29 +21498,21 @@ phone_id = "Clinic Labs"; pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "fyZ" = ( /obj/structure/surface/table/reinforced, /obj/item/device/camera, /obj/structure/machinery/light/small, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "fBc" = ( /obj/structure/pipes/standard/tank/phoron, /turf/open/floor/plating, /area/bigredv2/caves/mining) "fBo" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "fCb" = ( /turf/open/floor, @@ -28839,58 +21522,39 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Greenhouse Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "fDr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) "fEv" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "\improper Engine Reactor" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "fEE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/ne) "fFG" = ( /obj/structure/largecrate/random/barrel, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "fFO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/space_port_lz2) "fGK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_north) "fGN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves_research) "fHw" = ( /obj/structure/barricade/handrail, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "fHF" = ( /obj/effect/landmark/corpsespawner/miner, @@ -28899,23 +21563,16 @@ icon_state = "gib6" }, /obj/item/weapon/baseballbat, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "fJH" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/eta) "fJW" = ( /obj/structure/window, /obj/structure/surface/table/woodentable, /obj/item/newspaper, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "fKO" = ( /obj/structure/barricade/wooden{ @@ -28924,49 +21581,33 @@ health = 25000 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_north) "fKW" = ( /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/caves/eta/living) "fLj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_virology) "fLl" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "fLA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "fLR" = ( /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "fMl" = ( /obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "fML" = ( /obj/effect/decal/cleanable/dirt, @@ -28979,9 +21620,7 @@ pixel_x = -9; pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "fMZ" = ( /obj/structure/machinery/light{ @@ -28992,14 +21631,10 @@ phone_id = "Surgery"; pixel_y = 24 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "fOc" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_virology) "fOo" = ( /obj/effect/decal/warning_stripes{ @@ -29015,23 +21650,16 @@ pixel_x = 14; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "fOx" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "fOK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "fOM" = ( /obj/effect/decal/warning_stripes{ @@ -29042,10 +21670,7 @@ /area/bigredv2/caves/mining) "fPe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/telecomm/n_cave) "fPB" = ( /obj/effect/decal/cleanable/dirt, @@ -29062,43 +21687,29 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "fRo" = ( /obj/item/tool/pickaxe/drill, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) "fRH" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_se) "fRW" = ( /obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "fSJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/space_port) "fST" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "fSY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/lz2_west_cas) "fTg" = ( /obj/effect/decal/warning_stripes{ @@ -29106,10 +21717,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "fUk" = ( /obj/structure/surface/table, @@ -29118,19 +21726,14 @@ pixel_x = 7; pixel_y = 12 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) "fUp" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 1; name = "\improper Engine Reactor" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "fVt" = ( /obj/effect/decal/cleanable/dirt, @@ -29144,10 +21747,7 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "fWw" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) "fWY" = ( /obj/structure/window, @@ -29157,26 +21757,19 @@ /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, /obj/item/prop/magazine/book/starshiptroopers, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "fXm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "fXR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) "fYH" = ( /turf/closed/wall/solaris/reinforced/hull, @@ -29185,10 +21778,7 @@ /obj/structure/closet/boxinggloves, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "fZg" = ( /obj/structure/window/framed/solaris/reinforced, @@ -29196,20 +21786,13 @@ /obj/structure/sign/safety/hvac{ pixel_x = -32 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "fZm" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/eta) "gad" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "gan" = ( /obj/structure/platform_decoration/shiva{ @@ -29218,74 +21801,49 @@ /obj/structure/platform_decoration/shiva{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "gbA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "gcR" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_sw) "gda" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) "gdx" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "gdK" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/n) "gdN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) "gej" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/bigredv2/outside/medical) "geC" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz1_north_cas) "gfX" = ( /obj/structure/sign/safety/hazard{ pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "ggC" = ( /obj/structure/surface/rack, /obj/effect/landmark/good_item, /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ggW" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/research) "gio" = ( /turf/open/mars_cave, @@ -29301,23 +21859,17 @@ /obj/structure/barricade/handrail/wire{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "gke" = ( /obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/s) "gki" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "gkD" = ( /obj/structure/barricade/wooden{ @@ -29325,9 +21877,7 @@ dir = 4; health = 25000 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "glB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -29343,17 +21893,12 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "gmN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) "gnR" = ( /obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "gpg" = ( /turf/open/mars_cave, @@ -29362,38 +21907,27 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/item/ore/diamond, /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "gpt" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "gpA" = ( /obj/structure/surface/table, /obj/structure/machinery/light, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "gpB" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_research) "gpR" = ( /turf/open/gm/river, /area/bigredv2/outside/c) "gpT" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "gqS" = ( /obj/structure/surface/table/reinforced/prison, @@ -29413,18 +21947,14 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "gsW" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/space) "gts" = ( /obj/structure/machinery/light{ @@ -29433,32 +21963,23 @@ /obj/structure/morgue{ dir = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/bigredv2/outside/medical) "gtX" = ( /turf/open/mars_cave, /area/bigredv2/caves_se) "guu" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "guM" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) "gvd" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Break Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "gvI" = ( /obj/structure/transmitter/colony_net{ @@ -29469,55 +21990,39 @@ phone_id = "Director's Safe Room"; pixel_x = -18 }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "gwg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "gxJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_sw) "gyJ" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "gyL" = ( /obj/item/ore{ pixel_x = 13; pixel_y = 12 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "gyU" = ( /obj/item/ore{ pixel_x = -7; pixel_y = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "gzG" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -9; pixel_y = 18 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) "gAE" = ( /obj/structure/sink{ @@ -29536,17 +22041,12 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "gCx" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "gCC" = ( /obj/structure/closet/secure_closet, @@ -29570,43 +22070,28 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "gCE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "gEM" = ( /obj/structure/machinery/vending/security, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/bigredv2/outside/lambda_cave_cas) "gFR" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "gGO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) "gHH" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "gHV" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "gIT" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -29614,9 +22099,7 @@ id = "lambda-interior"; name = "Lambda Checkpoint Interior" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves_north) "gJw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -29624,9 +22107,7 @@ /area/bigredv2/caves_virology) "gKk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, +/turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_virology) "gMj" = ( /obj/effect/decal/warning_stripes{ @@ -29634,10 +22115,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "gMC" = ( /obj/structure/surface/table, @@ -29646,17 +22124,12 @@ /area/bigredv2/outside/cargo) "gML" = ( /obj/structure/machinery/power/turbine, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "gNz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_se) "gNH" = ( /turf/closed/wall/solaris/reinforced, @@ -29664,32 +22137,22 @@ "gOr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "gPc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/telecomm/n_cave) "gPh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "\improper Engine Reactor" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "gPE" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight/lantern, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "gQj" = ( /obj/structure/cargo_container/horizontal/blue/top, @@ -29697,10 +22160,7 @@ /area/bigredv2/outside/space_port_lz2) "gSg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/se) "gSB" = ( /obj/structure/sign/safety/restrictedarea{ @@ -29715,20 +22175,14 @@ "gTN" = ( /obj/structure/window/framed/solaris/reinforced/hull, /obj/structure/cable, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/oob) "gTS" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard{ icon_state = "small" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "gUD" = ( /obj/structure/barricade/handrail{ @@ -29736,10 +22190,7 @@ layer = 3.01; pixel_y = 9 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "gVl" = ( /obj/effect/decal/warning_stripes{ @@ -29747,16 +22198,10 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "gVm" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/bigredv2/caves/eta/research) "gWv" = ( /obj/effect/landmark/nightmare{ @@ -29776,33 +22221,23 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "gXp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_lambda) "gXs" = ( /obj/effect/spawner/random/toolbox, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/bigredv2/oob) "gYl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_virology) "gYt" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "gZc" = ( /obj/structure/machinery/light{ @@ -29811,68 +22246,48 @@ /obj/structure/sign/safety/high_rad{ pixel_x = -32 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "hah" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea, /area/bigredv2/outside/cargo) "haT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "hbx" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "hcb" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "hcH" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "hdc" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "heD" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "heG" = ( /obj/structure/bed/chair{ @@ -29882,51 +22297,35 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hfB" = ( /obj/item/ore{ pixel_x = -5; pixel_y = 2 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "hgr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/ne) "hgO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/n) "hgT" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz1_north_cas) "hho" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "hhK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "hhX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29941,9 +22340,7 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) "hiY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_sw) "hkv" = ( /obj/structure/reagent_dispensers/fueltank, @@ -29953,15 +22350,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "hmm" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) "hmJ" = ( /obj/item/weapon/gun/pistol/holdout, @@ -29972,50 +22364,34 @@ pixel_x = -1; pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "hnh" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_research) "hoQ" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "hoY" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /obj/structure/cable{ icon_state = "11-6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hpg" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/space_port_lz2) "hqC" = ( /obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "hqD" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/lz2_south_cas) "hqO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -30025,23 +22401,16 @@ /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "hsF" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "hsJ" = ( /obj/item/ore, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "hto" = ( /obj/effect/decal/cleanable/dirt, @@ -30059,35 +22428,25 @@ pixel_x = -8; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "hwy" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "hxs" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "hyv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "hyC" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/warehouse) "hzg" = ( /obj/structure/cable{ @@ -30096,10 +22455,7 @@ /obj/structure/cable{ icon_state = "1-9" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hzy" = ( /obj/structure/surface/table, @@ -30108,9 +22464,7 @@ /area/bigredv2/outside/cargo) "hzP" = ( /obj/item/paper/bigred/final, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "hAj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -30136,83 +22490,54 @@ pixel_x = -3; pixel_y = 16 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hDK" = ( /obj/structure/largecrate/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "hEz" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) "hEC" = ( /obj/structure/machinery/light, /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) "hEE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz2_south_cas) "hEK" = ( /obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hFg" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_lambda) "hFv" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "hFP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hFV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/n) "hGv" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "hHa" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "hHb" = ( /obj/structure/sign/safety/ladder, @@ -30224,55 +22549,38 @@ /area/bigredv2/caves/eta/storage) "hJH" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/n_cave) "hKl" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/bottle/goldschlager, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hKt" = ( /obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "hKD" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "hKM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_north) "hKO" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/red/southwest, /area/bigredv2/outside/lambda_cave_cas) "hLp" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/mars_cave, /area/bigredv2/caves/mining) "hLs" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lambda_cave_cas) "hLS" = ( /obj/structure/sign/poster/safety, @@ -30282,57 +22590,37 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "hNW" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lambda_cave_cas) "hOx" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) "hOS" = ( /obj/structure/surface/table, /obj/item/clothing/head/collectable/tophat/super, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) "hPS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "hQO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/n) "hRy" = ( /obj/structure/surface/rack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hSP" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "hTO" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, @@ -30341,38 +22629,26 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/virology) "hUh" = ( /obj/item/spacecash/c1, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "hVP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "hWa" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "hWM" = ( /obj/structure/machinery/filtration/console{ pixel_y = 15 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "hYB" = ( /obj/structure/platform{ @@ -30389,17 +22665,13 @@ "hYI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "hZc" = ( /obj/structure/platform/shiva{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "hZl" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -30434,16 +22706,12 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "iaX" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/landmark/corpsespawner/colonist/random/burst, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "ibP" = ( /turf/open/floor/plating, @@ -30453,51 +22721,34 @@ dir = 1 }, /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "ibZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_sw) "ice" = ( /obj/structure/surface/table, /obj/item/clothing/ears/earmuffs, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "icQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_sw) "idn" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) "idM" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "idT" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_lambda) "ied" = ( /obj/structure/surface/table, /obj/item/clothing/under/brown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "iep" = ( /obj/structure/surface/rack, @@ -30512,9 +22763,7 @@ /obj/item/clothing/head/hardhat/dblue{ pixel_x = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "ieD" = ( /obj/structure/surface/rack, @@ -30527,10 +22776,7 @@ /obj/item/stack/sheet/mineral/platinum{ pixel_y = 12 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ifF" = ( /obj/effect/decal/cleanable/dirt, @@ -30540,32 +22786,23 @@ pixel_y = 12 }, /obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "igM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "igU" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -5; pixel_y = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "ihW" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/eta) "iig" = ( /obj/effect/decal/cleanable/dirt, @@ -30577,9 +22814,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/bigredv2/outside/marshal_office) "ijU" = ( /obj/structure/prop/almayer/cannon_cables{ @@ -30590,37 +22825,27 @@ desc = "A bewildering tangle of machinery and pipes."; name = "coolant feed" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) "ilH" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) "ilO" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) "iml" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "inx" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) "ioA" = ( /obj/item/tool/pickaxe{ @@ -30637,15 +22862,10 @@ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ioS" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "ipf" = ( /obj/item/device/flashlight/lantern{ @@ -30658,9 +22878,7 @@ /obj/item/storage/fancy/cigarettes/kpack{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "ipo" = ( /obj/structure/barricade/wooden{ @@ -30668,21 +22886,15 @@ dir = 8; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) "iqF" = ( /obj/structure/prop/invuln/minecart_tracks, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "irM" = ( /obj/item/weapon/shield/riot, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) "irN" = ( /obj/effect/spawner/random/technology_scanner, @@ -30692,57 +22904,38 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/red/southeast, /area/bigredv2/outside/lambda_cave_cas) "itL" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/virology) "iuu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/lz1_north_cas) "ivW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/ne) "iwG" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_virology) "ixA" = ( /obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "iyY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz1_north_cas) "izb" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "izh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "iAi" = ( /obj/structure/surface/rack, @@ -30757,15 +22950,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/hefa_cult_decals/d96, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "iAF" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_sw) "iAI" = ( /obj/structure/platform{ @@ -30781,10 +22969,7 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/w) "iDJ" = ( /obj/effect/landmark/corpsespawner/miner, @@ -30796,17 +22981,13 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "iDL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) "iDT" = ( /obj/effect/decal/warning_stripes{ @@ -30814,26 +22995,17 @@ pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/north, /area/bigredv2/outside/admin_building) "iDW" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) "iEj" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "iEm" = ( /obj/structure/bed/chair/wood/normal, @@ -30842,10 +23014,7 @@ "iFa" = ( /obj/effect/decal/cleanable/dirt, /obj/item/bananapeel, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "iFz" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -30853,25 +23022,18 @@ id = "lambda-interior"; name = "Lambda Checkpoint Interior" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "iGK" = ( /turf/open/mars_cave, /area/bigredv2/caves_sw) "iGY" = ( /obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_north) "iHe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "iJF" = ( /obj/effect/decal/cleanable/blood{ @@ -30879,53 +23041,36 @@ pixel_y = 12 }, /obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "iKn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lambda_cave_cas) "iLs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "iLu" = ( /obj/structure/girder, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "iNE" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/warehouse) "iNR" = ( /turf/open/gm/river, /area/bigredv2/outside/engineering) "iOR" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "iPE" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "iQw" = ( /obj/item/ore, @@ -30933,37 +23078,25 @@ /area/bigredv2/outside/filtration_plant) "iQC" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "iQG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_research) "iRf" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "iRw" = ( /obj/structure/closet/secure_closet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "iRG" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "iSz" = ( /obj/structure/barricade/handrail{ @@ -30980,16 +23113,10 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/bigredv2/outside/telecomm/warehouse) "iUe" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/bigredv2/caves/eta/research) "iVd" = ( /obj/structure/platform/kutjevo/rock{ @@ -31008,10 +23135,7 @@ /turf/open/mars, /area/bigredv2/outside/se) "iXp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/filtration_cave_cas) "iXs" = ( /obj/structure/platform_decoration{ @@ -31021,10 +23145,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "iXx" = ( /turf/open/mars_cave, @@ -31034,32 +23155,22 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "iYN" = ( /obj/structure/closet/secure_closet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "iYR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) "iZc" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "iZA" = ( /obj/structure/surface/rack, @@ -31070,9 +23181,7 @@ dir = 5 }, /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) "jbU" = ( /obj/effect/decal/cleanable/blood{ @@ -31082,24 +23191,17 @@ icon_state = "grenade_custom"; name = "M55C Teargas grenade" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "jcR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "jdj" = ( /obj/effect/landmark/nightmare{ insert_tag = "crashlanding-offices" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "jdQ" = ( /obj/structure/prop/dam/truck/mining{ @@ -31108,52 +23210,35 @@ icon_state = "crawler_crate_alt"; name = "crawler" }, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/s) "jeO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/n) "jfr" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/se) "jgw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "jgW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "jhj" = ( /obj/structure/machinery/vending/sovietsoda{ icon_state = "sovietsoda-broken"; stat = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jhM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper/bigred/witness, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jiS" = ( /obj/structure/machinery/power/apc{ @@ -31175,10 +23260,7 @@ pixel_x = -1; pixel_y = 14 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jkO" = ( /obj/item/explosive/grenade/high_explosive/frag, @@ -31192,27 +23274,17 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "jlS" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/space_port_lz2) "jmD" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/ne) "jna" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "jnR" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/bigredv2/caves/eta/research) "jnV" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -31224,10 +23296,7 @@ /obj/structure/cable{ icon_state = "2-9" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jph" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31244,79 +23313,55 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "jrA" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "jrD" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "jrN" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port_lz2) "jsL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) "jtL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/mining) "juo" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "podhatch" - }, +/turf/open/floor/podhatch/northwest, /area/bigredv2/caves/lambda/research) "juZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lambda_cave_cas) "jvW" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/caves_lambda) "jwj" = ( /obj/structure/platform/shiva{ dir = 8 }, /obj/item/disk, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "jxA" = ( /obj/structure/barricade/handrail, @@ -31326,16 +23371,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "jzD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) "jAm" = ( /obj/structure/coatrack{ @@ -31345,55 +23385,37 @@ /obj/item/clothing/shoes/black{ pixel_y = -7 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "jAo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_sw) "jAJ" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) "jAN" = ( /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "jAR" = ( /obj/structure/bookcase/manuals/engineering, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "jAX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_lambda) "jBq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "jCg" = ( /obj/effect/spawner/random/attachment, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jCq" = ( /obj/effect/landmark/corpsespawner/ua_riot, @@ -31408,20 +23430,14 @@ layer = 3 }, /obj/item/weapon/baton/loaded, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "jCY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_virology) "jDo" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "jDy" = ( /obj/effect/decal/cleanable/dirt, @@ -31436,22 +23452,15 @@ "jDT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "jEx" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "jGd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "jGn" = ( /obj/structure/machinery/door_control{ @@ -31460,23 +23469,16 @@ pixel_x = 26; range = 500 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "jGQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight/lantern, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) "jGT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "jHS" = ( /obj/structure/surface/table/reinforced/prison, @@ -31488,9 +23490,7 @@ /turf/open/floor, /area/bigred/ground/garage_workshop) "jIQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz1_north_cas) "jJB" = ( /obj/effect/decal/cleanable/dirt, @@ -31504,24 +23504,17 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "jJO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves_north) "jKp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/bigredv2/outside/lambda_cave_cas) "jKI" = ( /obj/structure/platform_decoration/shiva{ @@ -31531,43 +23524,32 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "jMm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "jMn" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "jNE" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ pixel_y = 13 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "jNN" = ( /obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "jOc" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -31575,17 +23557,13 @@ id = "eta"; name = "Eta Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lz2_south_cas) "jOj" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/surgery/hemostat, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "jOS" = ( /obj/structure/surface/rack, @@ -31596,10 +23574,7 @@ pixel_y = -5 }, /obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jPm" = ( /obj/structure/bed/chair/office/dark{ @@ -31609,9 +23584,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "jPQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/ne) "jPV" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -31623,9 +23596,7 @@ pixel_y = 15 }, /obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "jPX" = ( /obj/item/ore/diamond{ @@ -31639,9 +23610,7 @@ /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Cable connector" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/bigredv2/oob) "jRi" = ( /obj/item/ammo_magazine/smg/bizon{ @@ -31660,31 +23629,20 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jRn" = ( /obj/structure/machinery/computer3/server, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "jRH" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/bigredv2/outside/medical) "jSe" = ( /obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves_north) "jTa" = ( /obj/structure/machinery/camera/autoname, @@ -31693,18 +23651,12 @@ pixel_x = -1; pixel_y = -1 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/bigredv2/outside/marshal_office) "jTk" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "jUc" = ( /obj/structure/surface/table, @@ -31715,9 +23667,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper General Store Storage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "jUJ" = ( /obj/structure/machinery/light, @@ -31729,16 +23679,12 @@ id = "Library"; name = "Storm Shutters" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "jUM" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "jUW" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -31751,10 +23697,7 @@ /obj/structure/cable{ icon_state = "2-5" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jUY" = ( /turf/open/mars_cave, @@ -31763,16 +23706,12 @@ /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) "jVN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "jVW" = ( /obj/effect/decal/cleanable/blood{ @@ -31781,20 +23720,14 @@ /obj/item/stack/sheet/wood{ pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "jWj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "jWA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "jWF" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -31804,9 +23737,7 @@ icon_state = "intact"; name = "Pipe" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "jWR" = ( /obj/effect/decal/warning_stripes{ @@ -31814,78 +23745,55 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/red/northwest, /area/bigredv2/outside/marshal_office) "jXf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "jXJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light_construct{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "jXP" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "jXX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves_sw) "jYD" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "jYF" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "jYS" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "jZp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "jZy" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "jZM" = ( /obj/effect/decal/warning_stripes{ @@ -31895,9 +23803,7 @@ icon_state = "gib6"; pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) "kcx" = ( /obj/effect/decal/cleanable/dirt, @@ -31905,29 +23811,21 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "kcH" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/sw) "kcZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/filtration_cave_cas) "kdf" = ( /obj/item/tool/warning_cone{ pixel_y = 17 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) "kdh" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/sw) "kdp" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -31937,15 +23835,10 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "kdr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "keg" = ( /turf/closed/wall/solaris/reinforced, @@ -31958,10 +23851,7 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "key" = ( /obj/effect/decal/cleanable/blood/drip, @@ -31973,34 +23863,23 @@ /turf/open/mars_cave, /area/bigredv2/caves_lambda) "kfx" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/n) "kfY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "kgn" = ( /obj/item/paper/bigred/crazy, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kgw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lz2_west_cas) "kgx" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "khl" = ( /obj/structure/machinery/light/small{ @@ -32010,10 +23889,7 @@ /obj/structure/cable{ icon_state = "11-2" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "khx" = ( /obj/structure/barricade/wooden{ @@ -32024,38 +23900,27 @@ pixel_x = -4; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "khB" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_covered_bed" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_lambda) "khK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "khP" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "khR" = ( /obj/structure/machinery/floodlight, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "kjr" = ( /obj/effect/decal/cleanable/dirt, @@ -32067,10 +23932,7 @@ }, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/spawner/random/attachment, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kjH" = ( /obj/structure/surface/table, @@ -32084,9 +23946,7 @@ pixel_x = 13; pixel_y = 12 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "kka" = ( /obj/structure/barricade/handrail, @@ -32099,18 +23959,14 @@ /area/bigredv2/outside/engineering) "kli" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) "klp" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Large Cables"; pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "kmb" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -32120,68 +23976,45 @@ icon_state = "intact"; name = "Pipe" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kmm" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "kmx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) "knN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) "kok" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) "kpd" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/ne) "kqO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_lambda) "kqS" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "kqV" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 5; pixel_y = 11 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "krx" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/lz2_south_cas) "krW" = ( /obj/effect/decal/cleanable/dirt, @@ -32191,9 +24024,7 @@ "ksO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "ktE" = ( /obj/item/tool/wrench{ @@ -32203,21 +24034,14 @@ /obj/item/storage/toolbox/mechanical{ pixel_x = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) "ktN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/filtration_plant) "ktY" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "kuu" = ( /obj/effect/decal/cleanable/dirt, @@ -32225,46 +24049,30 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "kuw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) "kvp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) "kvB" = ( /obj/item/device/flashlight, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kwq" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "kwQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/se) "kxi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "kxr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32282,14 +24090,10 @@ phone_id = "Observation"; pixel_x = -18 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "kzF" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/ne) "kAj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32304,10 +24108,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "kBn" = ( /turf/closed/wall/solaris, @@ -32315,9 +24116,7 @@ "kBB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_lambda) "kBE" = ( /obj/structure/largecrate/supply/supplies/water, @@ -32325,10 +24124,7 @@ /area/bigredv2/caves/mining) "kCe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kCR" = ( /obj/structure/machinery/light{ @@ -32338,10 +24134,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) "kDs" = ( /obj/structure/surface/table, @@ -32349,22 +24142,15 @@ pixel_y = 17 }, /obj/item/reagent_container/food/snacks/jellysandwich/cherry, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "kFe" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigred/ground/garage_workshop) "kGm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) "kGw" = ( /obj/effect/landmark/objective_landmark/medium, @@ -32372,17 +24158,12 @@ /area/bigredv2/caves/eta/storage) "kHK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "kIv" = ( /obj/structure/curtain/red, /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "kIF" = ( /obj/structure/bed/chair/comfy/orange{ @@ -32392,10 +24173,7 @@ /area/bigredv2/caves/lambda/breakroom) "kIW" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) "kKx" = ( /obj/effect/decal/cleanable/dirt, @@ -32403,16 +24181,11 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "kKB" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/caves/eta/research) "kMk" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "kMs" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -32431,10 +24204,7 @@ /obj/structure/cable{ icon_state = "4-5" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kMJ" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -32444,48 +24214,34 @@ icon_state = "1-2"; name = "heavy duty power cable" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kNc" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "kNK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "kOv" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port_lz2) "kPu" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /obj/structure/pipes/valve/open, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kPP" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Control Module"; pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "kQc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -32510,30 +24266,20 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kSt" = ( /obj/structure/cable{ icon_state = "11-2" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kSH" = ( /obj/structure/ore_box, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) "kSL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) "kTs" = ( /obj/effect/decal/cleanable/blood, @@ -32545,62 +24291,41 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/caves_lambda) "kVR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "kVS" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "kVT" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "kVY" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/gold/small_stack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kWV" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_se) "kWW" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/lz2_cave) "kXV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/roller, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "kZG" = ( /obj/effect/decal/cleanable/dirt, @@ -32611,23 +24336,16 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/caves_lambda) "laj" = ( /obj/structure/tunnel{ id = "hole5" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "lbh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/n) "lbZ" = ( /obj/item/frame/rack, @@ -32646,10 +24364,7 @@ /area/bigredv2/caves/mining) "lck" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "lcu" = ( /obj/structure/surface/table/reinforced/prison, @@ -32667,9 +24382,7 @@ /obj/item/device/flashlight/on{ pixel_x = 8 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) "ldD" = ( /obj/item/tool/warning_cone{ @@ -32681,9 +24394,7 @@ "lhh" = ( /obj/structure/fence, /obj/structure/disposalpipe/segment, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "lhE" = ( /obj/structure/prop/almayer/cannon_cable_connector{ @@ -32691,9 +24402,7 @@ pixel_y = 15 }, /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "llS" = ( /obj/structure/prop/almayer/cannon_cable_connector{ @@ -32706,9 +24415,7 @@ name = "\improper massive vent"; pixel_x = -15 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) "lmg" = ( /obj/structure/bed/chair/office/light{ @@ -32718,16 +24425,10 @@ /area/bigredv2/outside/lz2_south_cas) "lmi" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "lms" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/eta) "lmO" = ( /obj/structure/surface/table/woodentable, @@ -32740,9 +24441,7 @@ /obj/item/tool/pen{ pixel_x = -7 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "lom" = ( /obj/effect/landmark/corpsespawner/miner, @@ -32753,9 +24452,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "lqo" = ( /obj/item/tool/lighter/random, @@ -32763,33 +24460,24 @@ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "lqp" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "lrs" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "lrH" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "lrW" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -32799,26 +24487,17 @@ icon_state = "intact"; name = "Pipe" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "lsq" = ( /obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "lst" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/research) "ltu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/filtration_plant) "ltK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32833,10 +24512,7 @@ /area/bigredv2/outside/dorms) "luA" = ( /obj/item/tool/crowbar/red, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lvh" = ( /obj/item/weapon/gun/rifle/m4ra, @@ -32848,9 +24524,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) "lvy" = ( /obj/effect/decal/cleanable/dirt, @@ -32860,24 +24534,16 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "lwX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) "lxQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper/bigred/union, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lym" = ( /obj/structure/bed/chair{ @@ -32896,9 +24562,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "lzI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -32906,9 +24570,7 @@ /area/bigredv2/caves) "lAC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/ne) "lAF" = ( /obj/item/paper_bin, @@ -32923,10 +24585,7 @@ name = "Lambda Checkpoint Interior"; pixel_x = null }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "lBc" = ( /turf/closed/wall/solaris/reinforced, @@ -32940,18 +24599,13 @@ dir = 1; name = "\improper Machine room" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lCt" = ( /obj/structure/machinery/power/reactor/colony{ name = "Reactor Turbine" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "lCR" = ( /obj/structure/surface/table, @@ -32972,34 +24626,24 @@ "lDa" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "lDp" = ( /obj/structure/closet/secure_closet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) "lEi" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "lEw" = ( /obj/item/tool/pickaxe{ pixel_y = -3 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lFR" = ( /obj/effect/landmark/nightmare{ @@ -33008,76 +24652,52 @@ /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "lGt" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/living) "lIe" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lID" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/c) "lIL" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/wood, /area/bigredv2/caves/mining) "lIS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/ne) "lKw" = ( /obj/item/paper/bigred/walls, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lLe" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lambda_cave_cas) "lLf" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lMw" = ( /obj/structure/machinery/sensortower{ pixel_x = -9 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_lambda) "lMC" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/largecrate/random/barrel/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigred/ground/garage_workshop) "lNp" = ( /obj/structure/machinery/light{ @@ -33086,14 +24706,10 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "lOL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/n) "lOY" = ( /obj/effect/landmark/nightmare{ @@ -33109,9 +24725,7 @@ pixel_x = 3; pixel_y = 12 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "lPL" = ( /obj/structure/platform/shiva{ @@ -33120,35 +24734,24 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "lQN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lz2_south_cas) "lQU" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "lRC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "lSb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/ne) "lSm" = ( /obj/effect/decal/cleanable/dirt, @@ -33156,38 +24759,26 @@ /obj/item/shard{ icon_state = "small" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lSH" = ( /obj/structure/largecrate/guns/merc{ icon_state = "case_double"; name = "supply crate" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "lSS" = ( /obj/item/tool/warning_cone, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/filtration_cave_cas) "lTi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "lTC" = ( /obj/structure/machinery/light{ @@ -33196,40 +24787,26 @@ /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "lTM" = ( /obj/item/folder/yellow, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "lTV" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "lUa" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/n) "lUd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "lUq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_se) "lUM" = ( /obj/structure/machinery/power/reactor/colony, @@ -33238,42 +24815,29 @@ "lVr" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "lWA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/lz2_south_cas) "lWE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) "lYi" = ( /obj/structure/ore_box, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "lYC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/mucus, /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) "lYH" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "lYZ" = ( /obj/structure/bed/chair/office/dark{ @@ -33282,9 +24846,7 @@ /turf/open/floor, /area/bigred/ground/garage_workshop) "lZV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/mining) "maB" = ( /obj/effect/landmark/nightmare{ @@ -33293,9 +24855,7 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/virology) "maD" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "maF" = ( /obj/item/frame/rack, @@ -33306,10 +24866,7 @@ "maH" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "mbz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33318,14 +24875,10 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Bar Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "mda" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_lambda) "meT" = ( /turf/open/mars, @@ -33334,15 +24887,11 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "mfG" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "mfQ" = ( /obj/structure/surface/rack, @@ -33351,18 +24900,13 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "mhF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "mhG" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -33375,33 +24919,22 @@ /area/bigredv2/caves/mining) "mhV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "mhZ" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "mij" = ( /obj/item/folder/yellow, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "miD" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/security/marshal, /obj/item/weapon/gun/revolver/cmb, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "mji" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ @@ -33416,9 +24949,7 @@ "mlV" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "mmg" = ( /obj/effect/decal/cleanable/dirt, @@ -33429,23 +24960,15 @@ /obj/item/reagent_container/food/snacks/tofu{ pixel_y = 11 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "mnv" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "mnY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "moe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33455,9 +24978,7 @@ /turf/open/floor/carpet, /area/bigredv2/outside/library) "moE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_research) "mqf" = ( /obj/structure/bed/chair{ @@ -33465,42 +24986,29 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "mqh" = ( /obj/structure/window/framed/solaris, -/turf/open/floor{ - icon_state = "panelscorched" - }, +/turf/open/floor/panelscorched, /area/bigredv2/outside/engineering) "mqX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "mrH" = ( /obj/structure/machinery/computer3/server, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "mrS" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Cable connector" }, /obj/structure/cable, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/bigredv2/oob) "msf" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves/lambda/xenobiology) "msq" = ( /obj/structure/sink{ @@ -33508,22 +25016,15 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) "msS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) "mts" = ( /obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "mtL" = ( /obj/structure/bed/chair/office/dark{ @@ -33539,32 +25040,22 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) "mtS" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/n) "muP" = ( /turf/closed/wall/wood, /area/bigredv2/caves_research) "mxf" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/filtration_cave_cas) "mya" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_east) "myc" = ( /obj/structure/surface/table, @@ -33580,31 +25071,22 @@ pixel_x = 10; pixel_y = 2 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "myY" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) "mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) "mAY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port_lz2) "mBc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/hatchet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "mBo" = ( /obj/item/weapon/twohanded/folded_metal_chair{ @@ -33622,78 +25104,54 @@ /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) "mDs" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_cave_cas) "mDt" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port_lz2) "mDN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/lz1_north_cas) "mEC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_north) "mEH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "mFT" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/landmark/corpsespawner/russian, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "mGq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz1_north_cas) "mHp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "mIc" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "mIr" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/filtration_plant) "mIs" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "mIu" = ( /obj/structure/machinery/light{ @@ -33707,18 +25165,13 @@ dir = 8 }, /obj/item/tank/air, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "mKi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "mKM" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -33727,69 +25180,48 @@ /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "mMf" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/space_port_lz2) "mNT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "mOc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper General Store Maintenance" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "mOW" = ( /obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "mOZ" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/queen_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "mPC" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "mPF" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "mPK" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "mRi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "mRD" = ( /obj/structure/surface/table, @@ -33798,16 +25230,10 @@ /area/bigredv2/caves) "mSn" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "mSS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "mST" = ( /obj/effect/decal/warning_stripes{ @@ -33816,10 +25242,7 @@ pixel_y = -1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "mUb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33828,23 +25251,17 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "mUy" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/eta/xenobiology) "mWg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 2; name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "mWt" = ( /obj/structure/prop/almayer/missile_tube{ @@ -33852,25 +25269,18 @@ name = "\improper Massive mining drill"; pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "mXw" = ( /obj/item/storage/toolbox/mechanical, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "mYV" = ( /obj/structure/machinery/power/apc{ dir = 1; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/bigredv2/outside/lambda_cave_cas) "mYW" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -33880,28 +25290,19 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "mZC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_virology) "nbc" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/se) "nbi" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "nbu" = ( /obj/effect/landmark/hunter_secondary, @@ -33916,9 +25317,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) "ncL" = ( /obj/structure/bed/chair{ @@ -33927,65 +25326,43 @@ pixel_x = 2; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "ndw" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "ndy" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; pixel_y = 11 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "neH" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/filtration_cave_cas) "nfY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/caves_east) "ngJ" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "nhF" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "niQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "njf" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) "nky" = ( /obj/structure/machinery/vending/coffee, @@ -34002,24 +25379,17 @@ pixel_x = -4; pixel_y = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "nkQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_se) "nkW" = ( /obj/item/ore/gold, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nkY" = ( /obj/item/ore{ @@ -34027,20 +25397,14 @@ pixel_y = -8 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "nlB" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/n) "nlJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "nlW" = ( /obj/structure/platform/kutjevo/rock, @@ -34053,19 +25417,13 @@ "nmU" = ( /obj/structure/surface/table, /obj/item/device/analyzer, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "nny" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves_research) "nnz" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/n) "nnA" = ( /obj/structure/surface/table/woodentable, @@ -34075,16 +25433,11 @@ /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "nnK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "nnU" = ( /obj/structure/machinery/door_control{ @@ -34098,10 +25451,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "npz" = ( /obj/structure/surface/table, @@ -34109,10 +25459,7 @@ /obj/item/ammo_magazine/shotgun/buckshot{ pixel_y = 12 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nqr" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -34122,37 +25469,25 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "nra" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/sw) "nrj" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; pixel_y = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "nrw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/filtration_cave_cas) "nrA" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "ntX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "nub" = ( /obj/structure/surface/rack, @@ -34167,10 +25502,7 @@ /obj/item/clothing/head/hardhat/dblue{ pixel_x = 7 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nug" = ( /obj/structure/platform{ @@ -34190,56 +25522,40 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "nuz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "nuQ" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "nvn" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ density = 0; pixel_y = 16 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "nwB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "nwS" = ( /obj/item/ore{ pixel_x = -7; pixel_y = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "nxa" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "nzB" = ( /obj/structure/machinery/computer/general_air_control{ @@ -34247,17 +25563,11 @@ pixel_y = 6 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "nzN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "nBb" = ( /obj/item/ammo_magazine/pistol/b92fs, @@ -34265,16 +25575,12 @@ pixel_x = 13; pixel_y = -7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "nCp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "nCT" = ( /obj/structure/sign/poster/ad, @@ -34287,27 +25593,18 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "nEl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz2_south_cas) "nEH" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/n) "nEJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/eta) "nEP" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/filtration_plant) "nEV" = ( /obj/item/weapon/twohanded/folded_metal_chair{ @@ -34315,41 +25612,29 @@ pixel_y = 12 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nFp" = ( /obj/structure/window, /obj/structure/window{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "nFB" = ( /obj/item/weapon/gun/rifle/m16, /obj/item/ammo_magazine/rifle/m16, /obj/item/ammo_magazine/rifle/m16, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "nFH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_lambda) "nGm" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/filtration_cave_cas) "nHQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -34358,26 +25643,19 @@ id = "filtration"; name = "Filtration Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) "nIi" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 1; name = "\improper Engine Reactor" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "nIS" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/donut_box, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "nKL" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -34387,16 +25665,11 @@ icon_state = "map"; name = "Automated Valve" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nLw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/sw) "nMB" = ( /obj/structure/machinery/door_control{ @@ -34404,35 +25677,24 @@ name = "Workshop Garage Lockdown"; pixel_x = 28 }, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigred/ground/garage_workshop) "nMZ" = ( /obj/structure/machinery/door/poddoor/almayer/closed, /obj/structure/cable, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nOe" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "nPz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "nQl" = ( /obj/item/ore{ @@ -34442,27 +25704,19 @@ /obj/effect/decal/cleanable/blood/oil/streak{ pixel_y = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "nRS" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "nRT" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/chapel) "nSP" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "nTF" = ( /obj/structure/barricade/wooden{ @@ -34470,85 +25724,56 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "nTG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/lz2_south_cas) "nUK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "nUV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_cave_cas) "nVq" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "nVx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) "nWD" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/burger, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nWG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) "nXh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nXw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "nXC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_research) "nYC" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nYV" = ( /obj/item/tool/warning_cone, @@ -34562,18 +25787,13 @@ /area/bigredv2/outside/space_port) "nZB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/telecomm/n_cave) "nZD" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "nZK" = ( /obj/item/ore/diamond, @@ -34597,35 +25817,26 @@ /obj/item/stack/sheet/wood{ pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "ocp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/eta/research) "ocA" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/library) "ocG" = ( /obj/structure/bookcase/manuals/research_and_development, /obj/item/storage/fancy/vials/random, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "ocR" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_lambda) "odw" = ( /obj/structure/bed, @@ -34634,16 +25845,12 @@ "oea" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) "oes" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "ofn" = ( /obj/effect/decal/cleanable/dirt, @@ -34652,10 +25859,7 @@ "ofu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ofJ" = ( /obj/structure/surface/table, @@ -34664,9 +25868,7 @@ phone_color = "red"; phone_id = "Security" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "ofX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34680,21 +25882,14 @@ dir = 1; name = "\improper Abandoned Mining Storage" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ohg" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "ohD" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_east) "ohY" = ( /obj/structure/cargo_container/hd/left/alt, @@ -34704,10 +25899,7 @@ /obj/structure/morgue{ dir = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/bigredv2/outside/medical) "ojD" = ( /obj/structure/platform_decoration{ @@ -34728,43 +25920,28 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "okt" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) "ole" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" - }, +/turf/open/floor/almayer/w_y0/north, /area/bigredv2/outside/admin_building) "olT" = ( /obj/effect/landmark/corpsespawner/engineer, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) "oma" = ( /obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "omw" = ( /obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "omG" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -34772,9 +25949,7 @@ pixel_y = 10 }, /obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "omX" = ( /obj/item/stack/cable_coil/cut{ @@ -34789,17 +25964,13 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) "onh" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "onR" = ( /obj/effect/decal/cleanable/dirt, @@ -34812,43 +25983,31 @@ }, /obj/structure/platform_decoration/shiva, /obj/item/stack/cable_coil, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "ooD" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_cave_cas) "opz" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "opK" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "oqr" = ( /obj/item/ore{ pixel_x = -1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "oqM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "orT" = ( /obj/structure/machinery/vending/coffee, @@ -34857,48 +26016,32 @@ "orZ" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "otb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "oud" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ouh" = ( /obj/item/tool/extinguisher, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "ovq" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/general_offices) "ovB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_west_cas) "ovQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/ne) "ovZ" = ( /obj/effect/decal/warning_stripes{ @@ -34909,36 +26052,25 @@ pixel_y = 15 }, /obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "owR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "oxh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oxk" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor, /area/bigred/ground/garage_workshop) "oxp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_research) "oye" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/filtration_cave_cas) "ozf" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -34948,9 +26080,7 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) "ozv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -34961,39 +26091,27 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "ozQ" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "oAf" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_virology) "oDB" = ( /obj/structure/closet/l3closet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/general_offices) "oDW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "oFj" = ( /obj/structure/barricade/wooden{ @@ -35002,23 +26120,16 @@ health = 25000 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_north) "oFx" = ( /obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/ne) "oFY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "oHn" = ( /obj/structure/bed/chair{ @@ -35034,9 +26145,7 @@ icon_state = "grenade_custom"; name = "M55C Teargas grenade" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "oIK" = ( /obj/structure/platform, @@ -35057,20 +26166,14 @@ name = "heavy duty power cable" }, /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oJv" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "oJO" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -35080,59 +26183,39 @@ /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "oKc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "oKy" = ( /obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oMd" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "oMf" = ( /obj/structure/fence, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "oNu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/outside/lz2_west_cas) "oOk" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "oOr" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oOw" = ( /obj/effect/decal/cleanable/dirt, @@ -35145,63 +26228,42 @@ name = "Lambda Checkpoint Exterior"; pixel_x = null }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) "oQz" = ( /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "oQI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_sw) "oRs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves_north) "oRK" = ( /obj/structure/computer3frame/wallcomp, /obj/structure/cable{ icon_state = "11-2" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oTf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "oTv" = ( /obj/structure/largecrate/supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oTL" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oTM" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -35211,9 +26273,7 @@ icon_state = "1-4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "oUs" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -35223,19 +26283,14 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "oUY" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "oVq" = ( /obj/effect/landmark/nightmare{ @@ -35250,37 +26305,26 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "oWe" = ( /obj/structure/machinery/photocopier{ density = 0; pixel_y = 16 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/bigredv2/outside/admin_building) "oWk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/telecomm/lz2_cave) "oWp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "oWC" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -35290,16 +26334,11 @@ icon_state = "1-2"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "oXr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/eta) "oXH" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -35309,19 +26348,14 @@ icon_state = "intact"; name = "Pipe" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "oZA" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Large Cables"; pixel_y = 12 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "oZQ" = ( /turf/closed/wall/r_wall/unmeltable, @@ -35334,18 +26368,13 @@ /obj/structure/cable{ icon_state = "11-2" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "paz" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib1" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "pbr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -35353,18 +26382,13 @@ /area/bigredv2/outside/filtration_cave_cas) "pbs" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/living) "pbK" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/queen_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "pbX" = ( /obj/effect/spawner/random/tool, @@ -35391,105 +26415,73 @@ dir = 1; pixel_y = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) "pcF" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "pcI" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/filtration_plant) "pdG" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "pdW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) "per" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/dorms) "pgh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/ne) "pgi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "pgk" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "pgu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "pgP" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "pgV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/caves_east) "phi" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_research) "phx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "plx" = ( /obj/structure/machinery/power/apc{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "pmk" = ( /obj/structure/surface/table, /obj/item/spacecash/c1, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "pmN" = ( /obj/effect/decal/cleanable/blood{ @@ -35499,9 +26491,7 @@ icon_state = "grenade_custom"; name = "M55C Teargas grenade" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "pmS" = ( /turf/open/mars, @@ -35510,15 +26500,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_lambda) "pnL" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/caves_north) "pog" = ( /obj/structure/platform{ @@ -35531,18 +26516,13 @@ /area/bigredv2/outside/engineering) "pow" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz1_north_cas) "poF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) "ppp" = ( /obj/structure/sign/safety/hazard, @@ -35554,9 +26534,7 @@ dir = 8; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_north) "prU" = ( /obj/structure/machinery/light{ @@ -35567,15 +26545,11 @@ /obj/item/prop/magazine/book/bladerunner{ pixel_y = 3 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "psE" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "ptL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35585,16 +26559,12 @@ /area/bigredv2/caves/eta/living) "puU" = ( /obj/item/paper/bigred/witness, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "pvg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "pvj" = ( /obj/structure/machinery/camera/autoname, @@ -35608,22 +26578,14 @@ icon_state = "map_valve1"; name = "Pressure Valve" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "pvp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/filtration_plant) "pxp" = ( /obj/structure/ore_box, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "pxv" = ( /obj/structure/barricade/wooden{ @@ -35634,17 +26596,13 @@ /obj/item/weapon/twohanded/spear{ pixel_x = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) "pxH" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "pyq" = ( /obj/structure/surface/table, @@ -35652,9 +26610,7 @@ dir = 8; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "pyU" = ( /obj/effect/decal/warning_stripes{ @@ -35669,9 +26625,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "pzC" = ( /obj/structure/window/framed/solaris, @@ -35683,16 +26637,10 @@ /area/bigredv2/outside/lambda_cave_cas) "pBv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "pBD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) "pCR" = ( /obj/structure/barricade/wooden{ @@ -35706,49 +26654,34 @@ /obj/item/weapon/twohanded/spear{ pixel_x = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "pDV" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "pGP" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) "pHb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) "pIl" = ( /obj/structure/morgue{ dir = 2 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/bigredv2/outside/medical) "pIN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "pJd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35757,87 +26690,56 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Lambda Checkpoint" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "pJn" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/ne) "pJt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/telecomm/n_cave) "pJS" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -4; pixel_y = 20 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "pJX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) "pKP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "pLj" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) "pLH" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/ne) "pMi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "pMm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "pMv" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/lz1_north_cas) "pMB" = ( /obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "pNa" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/bigredv2/caves/eta/research) "pNU" = ( /obj/structure/bed, @@ -35845,47 +26747,33 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "pOg" = ( /obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "pOt" = ( /obj/structure/machinery/optable, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/bigredv2/outside/medical) "pOL" = ( /obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "pPh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/telecomm/warehouse) "pPo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "pQv" = ( /obj/structure/surface/table, @@ -35906,19 +26794,13 @@ "pRG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "pRP" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/n_cave) "pSa" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "pSf" = ( /turf/open/floor/carpet, @@ -35932,10 +26814,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/telecomm/lz2_cave) "pTA" = ( /obj/structure/platform_decoration/shiva{ @@ -35945,15 +26824,11 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "pTH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "pUi" = ( /obj/item/weapon/broken_bottle, @@ -35963,26 +26838,18 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "pVv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "pVP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "pWs" = ( /obj/structure/barricade/handrail{ @@ -35997,10 +26864,7 @@ dir = 4 }, /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "pXn" = ( /obj/structure/closet/fireaxecabinet{ @@ -36008,15 +26872,10 @@ }, /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "pXu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "pXB" = ( /obj/effect/landmark/corpsespawner/ua_riot, @@ -36035,54 +26894,37 @@ pixel_y = 3 }, /obj/item/weapon/gun/rifle/m41a/training, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "pYt" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves_sw) "pYE" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/bigredv2/oob) "pZe" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "pZu" = ( /obj/structure/surface/rack, /obj/item/storage/bag/ore{ pixel_y = 5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "qaK" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "qaR" = ( /obj/vehicle/powerloader/ft, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) "qby" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/lz2_cave) "qbG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36093,9 +26935,7 @@ id = "lambda-interior"; name = "Lambda Checkpoint Interior" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "qcE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36104,39 +26944,27 @@ /turf/open/floor/carpet, /area/bigredv2/outside/library) "qcQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/space_port_lz2) "qeK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "qeX" = ( /obj/structure/largecrate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "qeZ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "qgY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_sw) "qhk" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -36154,10 +26982,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "qhH" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -36167,18 +26992,13 @@ icon_state = "1-2"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) "qiA" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/item/tool/extinguisher, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) "qjA" = ( /obj/structure/machinery/light/small{ @@ -36199,15 +27019,11 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Access door" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "qkC" = ( /obj/structure/fence, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_cave_cas) "qlK" = ( /obj/structure/surface/rack, @@ -36225,63 +27041,44 @@ /obj/item/stack/sheet/wood{ pixel_y = -7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "qoj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/filtration_cave_cas) "qot" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6; pixel_y = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "qoN" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "qoQ" = ( /obj/structure/morgue{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/bigredv2/outside/medical) "qoS" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/e) "qpn" = ( /obj/item/tool/warning_cone{ pixel_x = -6 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "qqw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "qrZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -36294,10 +27091,7 @@ /area/bigredv2/outside/space_port_lz2) "qse" = ( /obj/structure/largecrate/supply, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "qsE" = ( /turf/closed/wall/solaris/reinforced, @@ -36307,15 +27101,11 @@ icon_state = "book-5" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "qus" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/dorms) "qux" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -36329,9 +27119,7 @@ pixel_x = 2; pixel_y = 17 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "quX" = ( /obj/structure/window/framed/solaris/reinforced, @@ -36340,32 +27128,22 @@ id = "Engineering"; name = "\improper Engineering Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "qvA" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "qvI" = ( /obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "qwm" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/n) "qwx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "qwy" = ( /obj/effect/decal/cleanable/dirt, @@ -36374,20 +27152,14 @@ pixel_y = 7 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "qyi" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/outside/admin_building) "qzO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -36395,34 +27167,24 @@ id = "eta"; name = "Eta Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lz2_south_cas) "qzY" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; pixel_y = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "qCK" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/lz2_south_cas) "qDZ" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/n_cave) "qEs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "qEJ" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -36430,9 +27192,7 @@ id = "workshop_br_g"; name = "\improper Workshop Garage" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigred/ground/garage_workshop) "qFg" = ( /obj/effect/decal/cleanable/blood{ @@ -36442,9 +27202,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) "qFh" = ( /obj/item/tool/pickaxe, @@ -36452,14 +27210,10 @@ pixel_x = -11; pixel_y = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "qFY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_east) "qGg" = ( /obj/item/device/flashlight/lamp{ @@ -36468,29 +27222,18 @@ }, /obj/item/ashtray/plastic, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "qGY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "qHc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/filtration_plant) "qHY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/lz2_south_cas) "qHZ" = ( /obj/structure/surface/table, @@ -36503,10 +27246,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lambda_cave_cas) "qJM" = ( /obj/effect/decal/cleanable/dirt, @@ -36517,10 +27257,7 @@ pixel_x = -5; pixel_y = 10 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "qKH" = ( /obj/structure/machinery/light{ @@ -36529,33 +27266,21 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_lambda) "qLk" = ( /obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "qLD" = ( -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/bigredv2/outside/lambda_cave_cas) "qLV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) "qMS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/n) "qNu" = ( /obj/structure/surface/table, @@ -36563,15 +27288,11 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) "qNH" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port_lz2) "qNP" = ( /obj/structure/bed/chair{ @@ -36584,9 +27305,7 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ dir = 1 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/landing/console2) "qOM" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -36600,33 +27319,24 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "qPT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/eta) "qQl" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "qQn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_lambda) "qQr" = ( /obj/item/stack/sheet/wood, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_north) "qSj" = ( /obj/structure/cargo_container/hd/mid/alt, @@ -36634,42 +27344,31 @@ /area/bigredv2/caves/mining) "qTC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "qUF" = ( /obj/structure/machinery/computer/area_atmos{ dir = 1 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "qUS" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_sw) "qVd" = ( /obj/item/reagent_container/food/snacks/sausage, /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/space) "qVi" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/mining) "qVw" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/virology) "qVB" = ( /obj/item/weapon/shield/riot, @@ -36677,18 +27376,14 @@ pixel_x = -8; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "qWA" = ( /obj/structure/surface/table/woodentable, /obj/item/paper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "qWT" = ( /obj/effect/decal/cleanable/dirt, @@ -36698,16 +27393,12 @@ name = "Lambda Checkpoint Exterior" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "qXi" = ( /obj/structure/surface/table/woodentable, /obj/item/device/pinpointer, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "qYB" = ( /obj/structure/sink{ @@ -36723,27 +27414,20 @@ /obj/structure/mirror{ pixel_x = -28 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "qYY" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "qZo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "qZU" = ( /obj/structure/machinery/light/small{ @@ -36756,23 +27440,17 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "rat" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "raQ" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/telecomm/lz2_cave) "raU" = ( /obj/effect/decal/warning_stripes{ @@ -36780,10 +27458,7 @@ layer = 2.5; pixel_x = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) "rbs" = ( /obj/structure/window/framed/solaris/reinforced, @@ -36791,17 +27466,11 @@ /area/bigredv2/outside/lambda_cave_cas) "rbD" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "rbV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "rcc" = ( /obj/structure/prop/almayer/missile_tube{ @@ -36814,21 +27483,14 @@ pixel_y = 12 }, /obj/structure/cable, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "rcN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_research) "rdr" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "rdR" = ( /turf/open/floor, @@ -36846,9 +27508,7 @@ /obj/item/weapon/twohanded/spear{ pixel_x = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "reL" = ( /obj/effect/landmark/nightmare{ @@ -36866,34 +27526,25 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/space) "rfX" = ( /obj/structure/surface/table, /obj/item/bodybag, /obj/item/bodybag, /obj/item/bodybag, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) "rgm" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) "rgp" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "rhP" = ( /obj/effect/decal/cleanable/dirt, @@ -36902,10 +27553,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) "rie" = ( /obj/effect/decal/cleanable/blood/drip, @@ -36913,10 +27561,7 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "rjw" = ( /obj/effect/decal/cleanable/dirt, @@ -36930,18 +27575,13 @@ /area/bigredv2/caves/mining) "rkh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/bigredv2/outside/lambda_cave_cas) "rkS" = ( /obj/structure/cable{ icon_state = "5-6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "rml" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, @@ -36957,94 +27597,65 @@ name = "Lambda Checkpoint Exterior" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "rnV" = ( /obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "row" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) "roP" = ( /obj/item/ore{ pixel_x = 9; pixel_y = -4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "rpl" = ( /obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "rpI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 2.5 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "rqa" = ( /obj/structure/tunnel{ id = "hole4" }, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) "rqv" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) "rrF" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/ne) "rsv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "rtL" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz2_west_cas) "rtR" = ( /obj/effect/landmark/corpsespawner/security/marshal, /obj/effect/decal/cleanable/blood, /obj/item/weapon/classic_baton, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) "rtS" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/wetleather, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "rtV" = ( /obj/effect/decal/cleanable/blood/drip, @@ -37055,41 +27666,29 @@ /obj/item/ammo_magazine/rifle/m16, /obj/item/ammo_magazine/rifle/m16, /obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "ruS" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "rvS" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "rxh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "rxJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_east) "rzb" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "rzO" = ( /obj/effect/decal/cleanable/dirt, @@ -37100,47 +27699,32 @@ /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) "rzR" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/ne) "rzT" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) "rAs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_east) "rBn" = ( /obj/structure/window, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "rBK" = ( /obj/structure/fence, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/se) "rCd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigred/ground/garage_workshop) "rCA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz1_telecomm_cas) "rDa" = ( -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/lambda_cave_cas) "rDl" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -37150,45 +27734,32 @@ /obj/effect/decal/cleanable/blood/drip{ pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "rDO" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "rDP" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_virology) "rDV" = ( /obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) "rGP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_virology) "rHr" = ( /obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "rHA" = ( /obj/effect/decal/cleanable/dirt, @@ -37196,25 +27767,17 @@ /area/bigredv2/outside/filtration_plant) "rHD" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "rIl" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) "rJJ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lz2_south_cas) "rJR" = ( /obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "rKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37239,45 +27802,30 @@ dir = 8 }, /obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "rKP" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/oob) "rLM" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/ne) "rLR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "rMg" = ( /obj/structure/toilet{ pixel_y = 8 }, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "rMw" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "rMG" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, @@ -37295,9 +27843,7 @@ pixel_x = -1; pixel_y = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "rNc" = ( /obj/effect/decal/cleanable/dirt, @@ -37332,9 +27878,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "rPh" = ( /obj/item/ore{ @@ -37345,9 +27889,7 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "rQs" = ( /obj/structure/bed/sofa/south{ @@ -37360,23 +27902,15 @@ /area/bigredv2/oob) "rRO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/filtration_cave_cas) "rTq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "rTN" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "rUn" = ( /obj/effect/decal/warning_stripes{ @@ -37409,47 +27943,35 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "rVh" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib3" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "rVE" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/n) "rVT" = ( /obj/structure/fence, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "rWF" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 6; pixel_y = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "rWN" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -9; pixel_y = 18 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "rXy" = ( /obj/effect/decal/cleanable/dirt, @@ -37458,32 +27980,22 @@ /obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ pixel_y = 12 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "rXY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) "rYr" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "rYt" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_north) "rYD" = ( /obj/effect/decal/cleanable/dirt, @@ -37491,10 +28003,7 @@ dir = 1 }, /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "rYS" = ( /obj/structure/machinery/light{ @@ -37513,48 +28022,32 @@ /obj/item/toy/deck/uno{ pixel_y = 18 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "rZU" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "sap" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "saX" = ( /obj/structure/machinery/power/turbine, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "sbk" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "sbm" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "sbz" = ( /obj/structure/platform/kutjevo/rock{ @@ -37564,9 +28057,7 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/space) "sbA" = ( /obj/item/frame/rack, @@ -37580,27 +28071,20 @@ /area/bigredv2/caves/mining) "sbQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "scK" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "sdl" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/structure/window, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "sdP" = ( /obj/structure/largecrate/random/barrel/white, @@ -37611,14 +28095,10 @@ pixel_x = -1; pixel_y = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "sfI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_east) "sgF" = ( /obj/structure/cable{ @@ -37627,17 +28107,11 @@ /obj/structure/cable{ icon_state = "6-8" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sgT" = ( /obj/item/trash/burger, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "shn" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37649,30 +28123,20 @@ name = "Lambda Checkpoint Exterior" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "shK" = ( /obj/structure/cargo_container/arious/right, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "shV" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigred/ground/garage_workshop) "siu" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/eta) "siM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lz1_telecomm_cas) "ski" = ( /turf/open/mars_cave, @@ -37681,21 +28145,14 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "slC" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) "slG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "smh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -37703,9 +28160,7 @@ /area/bigredv2/caves_north) "smy" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "smF" = ( /obj/structure/bed/chair{ @@ -37713,29 +28168,20 @@ pixel_x = 13; pixel_y = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "smO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/lz1_north_cas) "snk" = ( /obj/item/tank/air, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "snv" = ( /obj/structure/machinery/light_construct{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "sog" = ( /obj/item/explosive/grenade/slug/baton{ @@ -37760,10 +28206,7 @@ icon_state = "4-8" }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sqc" = ( /obj/effect/decal/cleanable/blood{ @@ -37773,34 +28216,22 @@ icon_state = "grenade_custom"; name = "M55C Teargas grenade" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "sqj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_research) "sqt" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) "sqQ" = ( /obj/item/paper/bigred/them, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sso" = ( /obj/structure/bed/chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "ssE" = ( /obj/structure/window/framed/solaris, @@ -37808,26 +28239,18 @@ /area/bigredv2/caves) "ssI" = ( /obj/structure/prop/dam/truck/damaged, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "ssO" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "stZ" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/lz2_cave) "sus" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_research) "suD" = ( /obj/structure/prop/almayer/cannon_cables{ @@ -37856,34 +28279,25 @@ pixel_x = -5; pixel_y = 25 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) "suV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1; name = "\improper Engineering Workshop" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigred/ground/garage_workshop) "swk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/w) "swJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) "sxs" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -37893,62 +28307,45 @@ /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "syi" = ( /obj/structure/surface/table, /obj/item/device/radio{ pixel_y = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "syu" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib3" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "szi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "szw" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "szy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "szZ" = ( /obj/structure/window/reinforced/tinted, /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) "sAG" = ( /obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "sAS" = ( /obj/item/toy/prize/fireripley{ @@ -37964,27 +28361,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "sBu" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "sCj" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "sCt" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "sDs" = ( /obj/structure/closet/crate/miningcar, @@ -37994,29 +28383,19 @@ /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sDC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_sw) "sDO" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "sDZ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "sEb" = ( /obj/structure/filingcabinet{ @@ -38024,63 +28403,42 @@ pixel_x = 8; pixel_y = 3 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "sEh" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/e) "sEi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/eta/research) "sFv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_north) "sFW" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "sGi" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz1_telecomm_cas) "sGT" = ( /obj/item/tool/weldpack, /obj/item/frame/rack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sHz" = ( /obj/item/ore{ pixel_x = 9; pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "sHO" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "sIh" = ( /obj/effect/landmark/nightmare{ @@ -38091,33 +28449,22 @@ "sIP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_se) "sIY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/c) "sJq" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "sLr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_se) "sLy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "sLS" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, @@ -38125,45 +28472,30 @@ /area/bigredv2/outside/admin_building) "sNP" = ( /obj/structure/window/framed/solaris, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "sNQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "sOi" = ( /obj/structure/airlock_assembly, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sOE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) "sON" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_east) "sPv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/bar) "sQw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz1_telecomm_cas) "sRy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38172,32 +28504,23 @@ /obj/structure/machinery/door/airlock/almayer/command/colony{ name = "\improper Operations Meeting Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "sRV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_lambda) "sSU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz2_south_cas) "sSY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "sUQ" = ( /obj/structure/machinery/photocopier, @@ -38205,10 +28528,7 @@ /area/bigredv2/caves/lambda/breakroom) "sVk" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lambda_cave_cas) "sVB" = ( /obj/structure/window_frame/solaris, @@ -38220,19 +28540,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_lambda) "sWa" = ( /obj/item/ore{ pixel_x = 12; pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "sWh" = ( /obj/structure/platform_decoration, @@ -38240,17 +28555,11 @@ dir = 1; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) "sWS" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sXd" = ( /obj/effect/landmark/nightmare{ @@ -38264,27 +28573,18 @@ pixel_x = 2; pixel_y = 17 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sYL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/outside/lambda_cave_cas) "sYR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "sZh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "sZi" = ( /obj/effect/decal/warning_stripes{ @@ -38293,9 +28593,7 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "taf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38303,31 +28601,22 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "tap" = ( /obj/structure/machinery/message_server, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) "taV" = ( /obj/structure/closet/coffin/woodencrate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "tbS" = ( /obj/structure/morgue{ dir = 1 }, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/bigredv2/outside/medical) "tcb" = ( /obj/structure/surface/table/reinforced/prison, @@ -38336,9 +28625,7 @@ /area/bigred/ground/garage_workshop) "tcq" = ( /obj/item/explosive/grenade/baton, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) "tcP" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -38348,31 +28635,22 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "tdz" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "tdB" = ( /obj/structure/tunnel{ id = "hole1" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "tdN" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "tdZ" = ( /obj/item/tool/pickaxe/drill, @@ -38394,10 +28672,7 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tff" = ( /obj/effect/decal/cleanable/blood{ @@ -38407,9 +28682,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "tfp" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ @@ -38422,10 +28695,7 @@ /obj/structure/cable{ icon_state = "11-10" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tft" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -38442,14 +28712,10 @@ /area/bigredv2/outside/general_offices) "tgF" = ( /obj/effect/spawner/random/tool, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/bigredv2/oob) "tgL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_se) "tiD" = ( /obj/effect/decal/cleanable/blood{ @@ -38458,9 +28724,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/pistol/highpower, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "tju" = ( /obj/structure/machinery/shower{ @@ -38469,22 +28733,16 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) "tjX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/n) "tkN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "tkY" = ( /obj/structure/noticeboard{ @@ -38493,14 +28751,11 @@ name = "trophy board"; pixel_y = 30 }, -/obj/item/XenoBio/Chitin{ +/obj/item/oldresearch/Chitin{ anchored = 1; pixel_y = 27 }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) "tlP" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, @@ -38516,33 +28771,25 @@ dir = 8; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "tmH" = ( /obj/structure/closet/crate, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "tnd" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; pixel_y = 11 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) "tnG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/n) "toA" = ( /obj/effect/decal/cleanable/dirt, @@ -38555,57 +28802,41 @@ pixel_x = 13; pixel_y = 10 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tpU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) "tpY" = ( /obj/structure/lz_sign/solaris_sign, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) "tqi" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) "tqS" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves_north) "trk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves_sw) "trr" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "trW" = ( /obj/item/clothing/suit/storage/hazardvest, /obj/effect/decal/cleanable/blood, /obj/item/clothing/head/hardhat, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "tsc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "tsy" = ( /obj/effect/decal/cleanable/dirt{ @@ -38634,23 +28865,16 @@ "tsB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "tsK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz2_south_cas) "tub" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "tuu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38661,59 +28885,41 @@ dir = 4; health = 25000 }, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/bigredv2/outside/cargo) "tuN" = ( /obj/structure/machinery/light/small, /turf/open/mars_cave, /area/bigredv2/caves/mining) "tvh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/lz2_south_cas) "tvH" = ( /obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "tzJ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "tAe" = ( /obj/structure/bed, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "tAW" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/ne) "tBb" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) "tBf" = ( /obj/structure/largecrate/random/barrel, @@ -38734,16 +28940,10 @@ /obj/structure/cable{ icon_state = "5-9" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tBD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" - }, +/turf/open/floor/almayer/w_y1/north, /area/bigredv2/outside/admin_building) "tBK" = ( /obj/structure/surface/rack, @@ -38757,10 +28957,7 @@ /obj/item/tool/pickaxe{ pixel_y = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tCh" = ( /obj/structure/machinery/door/poddoor/almayer/closed, @@ -38775,9 +28972,7 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "tDk" = ( /obj/structure/machinery/light/double{ @@ -38787,65 +28982,44 @@ /area/bigredv2/caves/mining) "tDl" = ( /obj/structure/machinery/power/apc, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "tDv" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_west_cas) "tEc" = ( /obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) "tFt" = ( /obj/structure/surface/table, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "tFO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "tHl" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/c) "tHB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "tIq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "tIv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "tIA" = ( /obj/structure/surface/rack, @@ -38864,26 +29038,20 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "tJv" = ( /obj/structure/tunnel{ id = "hole3" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "tKr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "tKC" = ( /obj/structure/surface/table, @@ -38899,61 +29067,43 @@ pixel_y = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tKR" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/hydroponics) "tLt" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves_north) "tLO" = ( /obj/structure/machinery/computer/med_data{ density = 0; pixel_y = 16 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "tMa" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "tNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) "tOh" = ( /obj/structure/surface/table, /obj/item/device/megaphone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "tQg" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) "tQj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves_lambda) "tQo" = ( /obj/effect/decal/cleanable/dirt, @@ -38962,15 +29112,10 @@ pixel_x = -7; pixel_y = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) "tQw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "tRd" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -38980,15 +29125,10 @@ icon_state = "intact"; name = "Pipe" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tRI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_research) "tRV" = ( /obj/item/ore/uranium{ @@ -39004,84 +29144,58 @@ /obj/item/ore/uranium{ desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) "tSI" = ( /obj/structure/platform/shiva{ dir = 8 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "tTI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "tUL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "tUY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "tVn" = ( /obj/item/tool/lighter/zippo, /turf/open/floor, /area/bigred/ground/garage_workshop) "tVp" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "tVy" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "tWf" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "tWS" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "tZU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/mineral/processing_unit, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "uaB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) "uaS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39090,15 +29204,11 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "ubY" = ( /obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "ucl" = ( /obj/structure/cargo_container/arious/rightmid, @@ -39108,38 +29218,26 @@ /turf/open/mars_cave, /area/bigredv2/caves_virology) "ucN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, +/turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_se) "ueL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/framed/solaris, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ufc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port_lz2) "ufu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ufB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) "ugc" = ( /obj/effect/decal/cleanable/dirt, @@ -39148,39 +29246,26 @@ /area/bigredv2/outside/cargo) "ugW" = ( /obj/structure/machinery/light/small, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "uij" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_cave_cas) "uiE" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "ujq" = ( /obj/structure/bed/roller, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/outside/medical) "ujC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "ujD" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -39188,9 +29273,7 @@ id = "filtration"; name = "Filtration Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) "ujU" = ( /obj/item/ammo_magazine/handful/shotgun/custom_color{ @@ -39199,19 +29282,13 @@ name = "handful of HE/FRAG shells (12g)"; pixel_y = 3 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/bigredv2/oob) "ukv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_lambda) "ukW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/ne) "ulk" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -39221,10 +29298,7 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ulH" = ( /obj/effect/decal/cleanable/dirt, @@ -39241,9 +29315,7 @@ pixel_y = 32 }, /obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "umK" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -39253,14 +29325,10 @@ /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "unC" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm/lz2_cave) "unS" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -39268,9 +29336,7 @@ /area/bigredv2/outside/library) "uoj" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/caves_lambda) "upE" = ( /obj/effect/decal/cleanable/dirt, @@ -39279,23 +29345,16 @@ "upV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "urn" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "usg" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "ust" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -39306,36 +29365,24 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "usG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_east) "uuO" = ( /obj/item/shard{ icon_state = "small" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "uvl" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/lambda/xenobiology) "uvz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) "uvZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/filtration_plant) "uwV" = ( /obj/effect/decal/cleanable/dirt, @@ -39350,38 +29397,26 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/telecomm/lz2_cave) "uyk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_west_cas) "uzv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz1_north_cas) "uzB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /obj/item/device/flashlight/lantern, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "uBi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "uBP" = ( /obj/structure/cargo_container/arious/leftmid, @@ -39389,10 +29424,7 @@ /area/bigredv2/outside/space_port_lz2) "uCa" = ( /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "uDn" = ( /obj/structure/sign/safety/west, @@ -39406,16 +29438,11 @@ /obj/item/bodybag, /obj/item/bodybag, /obj/item/bodybag, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "uDA" = ( /obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "uDI" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -39424,18 +29451,13 @@ icon_state = "map"; name = "Pipe manifold" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "uDZ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "uFi" = ( /obj/item/paper/bigred/finance{ @@ -39454,40 +29476,29 @@ pixel_x = 2; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) "uFF" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "uGs" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "uGz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "uHE" = ( /obj/item/tool/warning_cone{ pixel_y = 19 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "uHQ" = ( /turf/closed/wall/solaris/reinforced, @@ -39495,42 +29506,28 @@ "uHT" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/cable_coil/cut, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "uIz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/telecomm/n_cave) "uIB" = ( /obj/effect/vehicle_spawner/van/decrepit, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) "uJj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "uJu" = ( /obj/item/robot_parts/robot_component/diagnosis_unit{ pixel_y = 15 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "uJF" = ( /obj/structure/machinery/power/apc{ @@ -39544,19 +29541,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "uKH" = ( /obj/structure/stairs/perspective{ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) "uNW" = ( /obj/effect/decal/cleanable/blood{ @@ -39568,22 +29560,16 @@ }, /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "uPm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_se) "uPF" = ( /obj/structure/machinery/filtration/console{ pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "uPK" = ( /obj/structure/platform/shiva{ @@ -39593,9 +29579,7 @@ /obj/structure/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "uRE" = ( /obj/effect/landmark/nightmare{ @@ -39604,99 +29588,67 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/admin_building) "uSf" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) "uSt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "uSC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/space_port_lz2) "uST" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper Medical Clinic Power Station" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "uTO" = ( /obj/structure/machinery/pipedispenser, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "uUV" = ( /obj/structure/prop/server_equipment/yutani_server/broken, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) "uVe" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/filtration_cave_cas) "uVi" = ( /obj/structure/surface/table, /obj/item/clothing/under/lightbrown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "uVn" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) "uWo" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "uXW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_research) "uYb" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_sw) "vbi" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northeast, /area/bigredv2/caves/lambda/research) "vbp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "vct" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "vcA" = ( /obj/effect/landmark/corpsespawner/miner, @@ -39705,9 +29657,7 @@ }, /obj/item/weapon/gun/rifle/mar40/lmg, /obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "vdl" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -39715,10 +29665,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "vdS" = ( /obj/item/explosive/grenade/incendiary/molotov{ @@ -39730,10 +29677,7 @@ pixel_y = 7 }, /obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "vec" = ( /obj/structure/pipes/standard/tank, @@ -39748,37 +29692,26 @@ pixel_x = 9; pixel_y = -3 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "vfI" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/eta) "vfQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "vgE" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "vgZ" = ( /obj/structure/platform/shiva, /obj/structure/platform/shiva{ dir = 1 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "vhw" = ( /obj/structure/machinery/light{ @@ -39788,17 +29721,13 @@ /area/bigredv2/outside/medical) "vhF" = ( /obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "vin" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "viN" = ( /obj/structure/machinery/door_control{ @@ -39809,33 +29738,22 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "vjc" = ( /obj/item/tool/warning_cone{ pixel_x = -13; pixel_y = 11 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "vkf" = ( /obj/effect/landmark/crap_item, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/ne) "vkv" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "vkF" = ( /obj/effect/decal/cleanable/dirt, @@ -39845,9 +29763,7 @@ /area/bigredv2/outside/cargo) "vld" = ( /obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "vlr" = ( /obj/effect/decal/warning_stripes{ @@ -39855,31 +29771,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "vlA" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "vmm" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "vmI" = ( /obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "vmL" = ( /obj/effect/decal/cleanable/dirt, @@ -39906,73 +29812,51 @@ /area/bigredv2/caves/mining) "voz" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "voG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "vpu" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "vpx" = ( /obj/structure/platform, /obj/structure/flora/jungle/planttop1{ pixel_y = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "vpY" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ id = "eta"; name = "Eta Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/eta) "vqY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_research) "vrt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/eta) "vsi" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) "vti" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/dorms) "vty" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/xenobiology) "vuz" = ( /obj/structure/machinery/door_control{ @@ -39981,10 +29865,7 @@ pixel_x = 30; throw_range = 15 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/bigredv2/caves/eta/research) "vvj" = ( /obj/effect/decal/cleanable/dirt, @@ -40006,10 +29887,7 @@ pixel_x = -4; pixel_y = 7 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "vxv" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40017,10 +29895,7 @@ }, /obj/structure/surface/table, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "vxQ" = ( /obj/item/tool/pickaxe/gold, @@ -40032,10 +29907,7 @@ /area/bigredv2/caves/lambda/xenobiology) "vzL" = ( /obj/item/weapon/gun/boltaction, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "vAs" = ( /obj/structure/window/framed/solaris/reinforced/tinted, @@ -40043,14 +29915,10 @@ /area/bigredv2/caves/lambda/xenobiology) "vBy" = ( /obj/item/ammo_magazine/shotgun/beanbag/riot, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_research) "vBI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/n) "vBT" = ( /obj/structure/surface/table/reinforced, @@ -40058,9 +29926,7 @@ phone_category = "Solaris Ridge"; phone_id = "Clinic Reception" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "vCd" = ( /obj/structure/surface/rack, @@ -40070,65 +29936,43 @@ /obj/item/weapon/twohanded/lungemine{ pixel_y = -7 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "vCf" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "vCU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/lz2_south_cas) "vEF" = ( /obj/structure/surface/table, /obj/item/clothing/head/hardhat/orange{ pixel_y = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) "vEU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/s) "vFA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "vFH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_lambda) "vFS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "vGE" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/space_port_lz2) "vGN" = ( /obj/effect/decal/cleanable/blood{ @@ -40138,61 +29982,43 @@ name = "\improper Medical Clinic" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "vHw" = ( /turf/closed/wall/wood, /area/bigredv2/caves/mining) "vHU" = ( /obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/n) "vIQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "vKv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "vLd" = ( /turf/open/floor, /area/bigred/ground/garage_workshop) "vMj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz2_west_cas) "vMm" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 13 }, /obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) "vNh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_virology) "vNm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_virology) "vOs" = ( /obj/structure/coatrack{ @@ -40203,34 +30029,26 @@ pixel_x = 11; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "vPP" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "vPZ" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "vQZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_research) "vRs" = ( /obj/structure/sign/safety/high_voltage, @@ -40239,131 +30057,92 @@ "vRK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves/lambda/xenobiology) "vRR" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves_north) "vTh" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "vTt" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "vUw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lambda_cave_cas) "vUy" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "vUN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "vVl" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dormitories Toilet" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "vVF" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -5; pixel_y = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/mining) "vVZ" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_cave_cas) "vWm" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "vXp" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "vXJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_lambda) "vYw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "vZh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/clothing/under/darkred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "waJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "waN" = ( /obj/structure/surface/table, /obj/item/device/flashlight, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "waX" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "wbp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves) "wbx" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -40377,21 +30156,15 @@ /area/bigredv2/caves/mining) "wbD" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "wbY" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/n) "wcs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz1_north_cas) "wcw" = ( /turf/open/gm/river, @@ -40406,9 +30179,7 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/space) "weO" = ( /obj/structure/closet/secure_closet/medical_wall{ @@ -40432,9 +30203,7 @@ pixel_y = 16 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "wfm" = ( /obj/structure/bed/chair{ @@ -40442,25 +30211,19 @@ dir = 1; pixel_y = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "wfx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) "wfC" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "wfR" = ( /obj/structure/cable{ @@ -40469,104 +30232,71 @@ /obj/structure/cable{ icon_state = "5-6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "whi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_cave_cas) "whw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "whE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "whZ" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigred/ground/garage_workshop) "wix" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) "wiK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) "wjW" = ( /obj/structure/platform/shiva{ dir = 1 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "wko" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) "wlE" = ( /obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "wmh" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "wmN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/telecomm/n_cave) "wni" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "woe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "wog" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "woK" = ( /obj/effect/decal/warning_stripes{ @@ -40574,21 +30304,14 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/red/southeast, /area/bigredv2/outside/marshal_office) "wpf" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_north) "wpn" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "wry" = ( /obj/structure/surface/table, @@ -40597,15 +30320,11 @@ phone_color = "blue"; phone_id = "Space Port" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "wrz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "wrS" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -40618,10 +30337,7 @@ /obj/item/tool/warning_cone{ pixel_y = 20 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/telecomm/n_cave) "wtj" = ( /turf/open/floor/plating, @@ -40630,16 +30346,11 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "wtG" = ( /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "wtJ" = ( /obj/effect/decal/cleanable/blood{ @@ -40652,9 +30363,7 @@ pixel_x = 12; pixel_y = 16 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "wuz" = ( /obj/structure/sink{ @@ -40662,37 +30371,25 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "wuC" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight/flare{ pixel_y = -7 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "wvk" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/virology) "wvK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "wvR" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/virology) "wwT" = ( /obj/effect/decal/cleanable/dirt, @@ -40700,60 +30397,43 @@ /area/bigredv2/outside/engineering) "wxo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "wyF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "wyP" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "wBi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "wBq" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "wBu" = ( /obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "wBK" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "wCo" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "wCs" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -40767,17 +30447,13 @@ pixel_x = -8; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "wET" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "wFL" = ( /obj/effect/decal/cleanable/dirt, @@ -40785,21 +30461,15 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "wFO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) "wFP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) "wGr" = ( /obj/structure/closet/firecloset/full, @@ -40819,22 +30489,15 @@ layer = 2.5 }, /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "wGF" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "wGV" = ( /obj/item/tool/wrench, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "wHg" = ( /obj/effect/landmark/nightmare{ @@ -40847,10 +30510,7 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/outside/admin_building) "wHM" = ( /obj/structure/pipes/vents/pump{ @@ -40863,22 +30523,16 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "wIj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/e) "wIw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_east) "wJd" = ( /obj/effect/decal/cleanable/dirt, @@ -40889,53 +30543,37 @@ "wKf" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "wKx" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz1_north_cas) "wKA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/library) "wLD" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "wLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "wMg" = ( /obj/item/tool/warning_cone{ pixel_x = 5; pixel_y = 13 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "wMp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_north) "wMM" = ( /obj/structure/pipes/vents/pump{ @@ -40945,10 +30583,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "wMQ" = ( /obj/structure/largecrate/random/secure, @@ -40962,10 +30597,7 @@ "wOK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/caves_lambda) "wPk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40973,9 +30605,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "wQa" = ( /obj/structure/surface/table, @@ -40983,14 +30613,10 @@ pixel_x = 9; pixel_y = 11 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "wQC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "wRl" = ( /obj/effect/landmark/nightmare{ @@ -41001,9 +30627,7 @@ "wRH" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "wSj" = ( /obj/structure/sign/safety/life_support, @@ -41016,27 +30640,18 @@ /obj/item/stack/sheet/wood{ pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "wUD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_se) "wVd" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "wVw" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "wVB" = ( /obj/structure/platform, @@ -41049,38 +30664,25 @@ /turf/open/gm/river, /area/bigredv2/outside/engineering) "wVQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "wWE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/n) "wWK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "wWN" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "wXg" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz1_north_cas) "wXv" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/space_port_lz2) "wXz" = ( /turf/open/floor/plating, @@ -41089,55 +30691,39 @@ /obj/structure/surface/table/woodentable, /obj/item/ashtray/glass, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/bar) "wYE" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; pixel_y = 16 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "wZv" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "wZC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/eta) "wZP" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) "xaE" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Lambda Checkpoint" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/lambda_cave_cas) "xaH" = ( /turf/closed/wall/wood, /area/bigredv2/caves_sw) "xbV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz1_north_cas) "xck" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -41155,9 +30741,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "xcz" = ( /obj/effect/decal/warning_stripes{ @@ -41165,25 +30749,18 @@ layer = 2.5; pixel_x = -1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/bigredv2/outside/telecomm/warehouse) "xej" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "xeN" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/filtration_plant) "xfx" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -41193,9 +30770,7 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "xfN" = ( /obj/structure/platform_decoration/shiva{ @@ -41208,15 +30783,10 @@ icon_state = "medium" }, /obj/item/stack/cable_coil/random, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) "xfW" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/living) "xgi" = ( /obj/effect/decal/cleanable/blood{ @@ -41226,53 +30796,37 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "xgm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/ne) "xgw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/lz2_south_cas) "xhy" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "xhB" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xhU" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 27 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xjU" = ( /obj/structure/cargo_container/arious/right, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) "xkq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) "xkH" = ( /obj/structure/cable{ @@ -41282,10 +30836,7 @@ icon_state = "4-10" }, /obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xkR" = ( /obj/effect/decal/cleanable/blood{ @@ -41296,14 +30847,10 @@ pixel_x = -9; pixel_y = 13 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "xmy" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "xmT" = ( /obj/structure/platform/kutjevo/rock, @@ -41313,20 +30860,13 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/space) "xpb" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/lz2_south_cas) "xpl" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) "xpG" = ( /obj/structure/sign/safety/hazard, @@ -41334,10 +30874,7 @@ /area/bigredv2/outside/filtration_plant) "xpL" = ( /obj/item/tool/wirecutters, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "xqf" = ( /obj/effect/decal/cleanable/dirt, @@ -41361,9 +30898,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "xsX" = ( /obj/structure/bed/chair{ @@ -41376,10 +30911,7 @@ "xte" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xtB" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -41389,9 +30921,7 @@ /obj/structure/barricade/handrail/wire{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "xuP" = ( /obj/item/trash/cigbutt/cigarbutt{ @@ -41410,15 +30940,11 @@ "xuU" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) "xwo" = ( /obj/structure/disposalpipe/junction, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "xwy" = ( /obj/structure/machinery/light/small{ @@ -41430,10 +30956,7 @@ /obj/structure/cable{ icon_state = "11-2" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xya" = ( /obj/structure/barricade/wooden{ @@ -41444,127 +30967,86 @@ /obj/item/weapon/twohanded/spear{ pixel_x = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "xyu" = ( /obj/structure/closet/l3closet/security, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "xyz" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xzb" = ( /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "xzi" = ( /obj/effect/decal/remains/xeno, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xzs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) "xAh" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) "xAv" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) "xAX" = ( /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "xBn" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "xBr" = ( /obj/item/ore{ pixel_x = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) "xBS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz1_north_cas) "xDO" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/oob) "xDW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "xFZ" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) "xIo" = ( /obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/oob) "xIv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 8; name = "\improper Abandoned Mining Storage" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xIx" = ( /obj/item/clothing/mask/gas, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/filtration_plant) "xIP" = ( /obj/structure/surface/table, @@ -41578,17 +31060,13 @@ /obj/effect/landmark/corpsespawner/miner, /obj/item/tool/pickaxe, /obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "xJT" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "xKb" = ( /obj/structure/prop/server_equipment/yutani_server, @@ -41605,20 +31083,14 @@ /obj/effect/landmark/nightmare{ insert_tag = "lz1containers_scramble" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "xLM" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xMr" = ( /obj/effect/decal/cleanable/dirt, @@ -41629,10 +31101,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/weapon/gun/pistol/holdout, /obj/structure/machinery/light, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xMT" = ( /obj/structure/closet, @@ -41644,18 +31113,13 @@ /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xNL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "xOk" = ( /obj/effect/landmark/nightmare{ @@ -41665,9 +31129,7 @@ /area/bigredv2/outside/cargo) "xPg" = ( /obj/structure/barricade/handrail/wire, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "xQb" = ( /obj/structure/pipes/vents/pump/on, @@ -41677,31 +31139,21 @@ "xQd" = ( /obj/structure/largecrate/random/barrel/true_random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "xRl" = ( /obj/item/weapon/gun/pistol/b92fs{ pixel_x = 13; pixel_y = -7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "xRn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_north) "xSa" = ( /obj/structure/prop/dam/crane, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "xTk" = ( /obj/limb/arm/l_arm, @@ -41718,23 +31170,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lambda_cave_cas) "xUo" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) "xUS" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "xWl" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -41742,14 +31187,10 @@ id = "lambda"; name = "Lambda Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves_north) "xWm" = ( -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) "xWr" = ( /obj/item/ore/uranium{ @@ -41770,10 +31211,7 @@ "xWv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/caves_lambda) "xWz" = ( /obj/effect/decal/cleanable/dirt{ @@ -41781,26 +31219,18 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xWH" = ( /obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) "xWR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/outside/telecomm/warehouse) "xWV" = ( /obj/structure/machinery/power/apc{ @@ -41809,18 +31239,13 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xXg" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib1" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "xXq" = ( /obj/structure/barricade/handrail{ @@ -41828,16 +31253,11 @@ layer = 3.01; pixel_y = 9 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "xXP" = ( /obj/structure/prop/invuln/minecart_tracks/bumper, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "xXT" = ( /obj/effect/decal/cleanable/dirt, @@ -41852,17 +31272,13 @@ icon_state = "4-8"; name = "heavy duty power cable" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) "xZf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "xZm" = ( /obj/structure/barricade/wooden{ @@ -41870,44 +31286,30 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "xZL" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside/lambda_cave_cas) "yar" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "ybk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_research) "ybT" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Machine room" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ycM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/lambda/xenobiology) "ycP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) "yda" = ( /obj/effect/decal/warning_stripes{ @@ -41916,9 +31318,7 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/security/marshal, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "ydd" = ( /obj/item/weapon/shield/riot{ @@ -41928,40 +31328,28 @@ layer = 3 }, /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "ydn" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/eta) "yej" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "yfs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "yfz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "yfN" = ( /obj/structure/closet/hydrant{ @@ -41970,10 +31358,7 @@ /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ygN" = ( /obj/structure/machinery/washing_machine, @@ -41981,9 +31366,7 @@ /obj/structure/machinery/washing_machine{ pixel_y = 13 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "ygP" = ( /obj/effect/decal/warning_stripes{ @@ -41994,10 +31377,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "yha" = ( /obj/structure/surface/table, @@ -42005,14 +31385,10 @@ pixel_y = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) "yhc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) "yhG" = ( /obj/structure/showcase{ @@ -42022,32 +31398,23 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) "yhN" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "yhV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "yjU" = ( /obj/item/weapon/broken_bottle, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "yjV" = ( /obj/structure/platform_decoration{ @@ -42067,9 +31434,7 @@ pixel_x = -8; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "yln" = ( /obj/effect/decal/cleanable/dirt, @@ -42083,17 +31448,11 @@ /obj/item/ammo_magazine/rifle/nsg23/ap, /obj/item/ammo_magazine/rifle/nsg23/ap, /obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "ymi" = ( /obj/item/tool/wet_sign, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) (1,1,1) = {" @@ -56757,7 +46116,7 @@ asK asK axX bmn -bmU +bmV bns hhK tTI diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm index 027d2630f392..29f3f5b1e4dd 100644 --- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm +++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm @@ -1,54 +1,39 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ab" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ac" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ad" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ae" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "af" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ag" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/marshal_office) "ah" = ( /turf/closed/wall/solaris/reinforced, @@ -62,24 +47,17 @@ "ak" = ( /obj/structure/pipes/vents/pump, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "al" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/marshal_office) "am" = ( /obj/structure/sink{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "an" = ( /obj/structure/mirror{ @@ -87,45 +65,32 @@ pixel_x = 30 }, /obj/item/tool/soap/deluxe, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "ao" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ap" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "aq" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "ar" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "as" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) "at" = ( /turf/closed/wall/solaris, @@ -136,107 +101,74 @@ dir = 1; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) "av" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Marshal Office Prison Toilet" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "aw" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ax" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "ay" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "az" = ( /obj/structure/surface/table, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) "aA" = ( /obj/structure/toilet{ dir = 4 }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) "aB" = ( /obj/structure/machinery/flasher/portable, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aC" = ( /obj/structure/closet/l3closet/security, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aD" = ( /obj/structure/closet/l3closet/security, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aE" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aF" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aG" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aH" = ( /obj/structure/surface/rack, @@ -244,35 +176,24 @@ dir = 1 }, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aI" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; icon_state = "door_locked"; - locked = 0; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) "aJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; icon_state = "door_locked"; - locked = 0; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) "aK" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -281,96 +202,63 @@ icon_state = "door_open"; name = "\improper Marshal Office Prison" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) "aL" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aO" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "aP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "aQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "aR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "aS" = ( /obj/structure/surface/rack, /obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aT" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aU" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aV" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aW" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "aX" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/eastleft, /obj/item/weapon/shield/riot, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "aY" = ( /obj/effect/decal/cleanable/dirt, @@ -413,62 +301,44 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bh" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bi" = ( -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bm" = ( /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bp" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -478,109 +348,77 @@ icon_state = "door_open"; name = "\improper Marshal Office Armory" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office Brig" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "br" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "bs" = ( /obj/structure/closet/secure_closet/marshal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bt" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bu" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/shotgun/buckshot, /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bv" = ( /obj/structure/surface/table, /obj/item/clothing/head/beret/sec/warden, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bw" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bx" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "by" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "bA" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "bB" = ( /obj/structure/surface/table, /obj/item/ore/diamond, /obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "bD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/bigredv2/outside/marshal_office) "bE" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) "bF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "bG" = ( /obj/structure/window/framed/solaris/reinforced, @@ -593,25 +431,19 @@ icon_state = "gib6" }, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, /obj/item/tool/screwdriver, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bK" = ( /obj/effect/landmark/corpsespawner/prison_security, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bL" = ( /obj/structure/window_frame/solaris, @@ -623,75 +455,53 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "bN" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "bO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/n) "bP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) "bQ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "bR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bS" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -699,19 +509,14 @@ }, /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ icon_state = "door_locked"; - locked = 0; name = "\improper Marshal Office Armory" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "bX" = ( /obj/structure/surface/table, /obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "bY" = ( /obj/structure/machinery/light{ @@ -721,16 +526,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) "bZ" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "ca" = ( /obj/effect/decal/warning_stripes{ @@ -738,66 +538,46 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/red/northwest, /area/bigredv2/outside/marshal_office) "cb" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/n) "cc" = ( /obj/structure/surface/table, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ce" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/armor/riot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "cf" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "cg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ch" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "ci" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "cj" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/bigredv2/outside/marshal_office) "ck" = ( /obj/effect/decal/warning_stripes{ @@ -805,10 +585,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/red/southeast, /area/bigredv2/outside/marshal_office) "cl" = ( /obj/effect/decal/cleanable/dirt, @@ -816,26 +593,18 @@ /obj/effect/decal/cleanable/blood, /obj/item/ammo_casing/shell, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) "cm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "cn" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) "co" = ( /obj/structure/window_frame/solaris, @@ -847,17 +616,11 @@ /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) "cq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "cr" = ( /obj/item/ammo_casing/shell, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) "cs" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -867,79 +630,52 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cu" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cw" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cx" = ( /obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) "cA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "cE" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -977,10 +713,7 @@ dir = 1; name = "\improper Marshal Office" }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) "cO" = ( /obj/effect/decal/cleanable/dirt, @@ -988,50 +721,38 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "cP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, /obj/item/tool/kitchen/knife, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "cQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "cR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "cS" = ( /obj/structure/machinery/alarm{ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "cT" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) "cU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -1040,30 +761,22 @@ icon_state = "door_open"; name = "\improper Marshal Office Holding Cell" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "cV" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; icon_state = "door_locked"; - locked = 0; name = "\improper Marshal Office Holding Cell" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "cW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Office Checkpoint" }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "cX" = ( /obj/effect/decal/cleanable/dirt, @@ -1077,16 +790,12 @@ /turf/open/floor, /area/bigredv2/outside/marshal_office) "cZ" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "da" = ( /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "db" = ( /obj/structure/machinery/door_control{ @@ -1094,17 +803,11 @@ name = "Storm Shutters"; pixel_x = -32 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "dc" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "dd" = ( /obj/effect/decal/cleanable/dirt, @@ -1113,33 +816,23 @@ /area/bigredv2/outside/marshal_office) "de" = ( /obj/structure/closet/secure_closet/brig, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "df" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "dg" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "dh" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) "di" = ( /obj/effect/decal/cleanable/dirt, @@ -1157,18 +850,14 @@ /turf/open/floor, /area/bigredv2/outside/marshal_office) "do" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/n) "fh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Office Evidence Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) "fD" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1180,29 +869,20 @@ /turf/open/floor, /area/bigredv2/outside/marshal_office) "gu" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) "gJ" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "if" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "ix" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "jq" = ( /obj/structure/machinery/camera/autoname, @@ -1211,17 +891,12 @@ pixel_x = -1; pixel_y = -1 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/bigredv2/outside/marshal_office) "qm" = ( /obj/structure/bed, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "rC" = ( /obj/effect/decal/warning_stripes{ @@ -1229,10 +904,7 @@ layer = 2.5; pixel_x = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) "rL" = ( /obj/effect/decal/warning_stripes{ @@ -1240,23 +912,16 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/red/southwest, /area/bigredv2/outside/marshal_office) "wL" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) "zX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) "MM" = ( /obj/structure/window/framed/solaris/reinforced, @@ -1271,10 +936,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) "NW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1285,17 +947,11 @@ name = "Storm Shutters"; pixel_y = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) "RJ" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm index 99728fdf50f6..8b49fafe5290 100644 --- a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm +++ b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm @@ -6,121 +6,73 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) "c" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "d" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "e" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "f" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "g" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "h" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "j" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "k" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "l" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "m" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "n" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "o" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/telecomm) "p" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "q" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/telecomm) "r" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "s" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "t" = ( /obj/effect/decal/cleanable/dirt, @@ -130,14 +82,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/telecomm) "v" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/telecomm) "w" = ( /obj/structure/sign/safety/hazard, @@ -145,31 +93,21 @@ /area/bigredv2/outside/telecomm) "x" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/telecomm) "y" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz1_telecomm_cas) "z" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) "A" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "B" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) "C" = ( /turf/open/mars_cave, @@ -183,19 +121,13 @@ /area/bigredv2/outside/lz1_telecomm_cas) "F" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "G" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz1_telecomm_cas) "U" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz1_telecomm_cas) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm index 7b28c00cc0d6..897f76d0f656 100644 --- a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm +++ b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm @@ -1,9 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ai" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "ak" = ( /obj/effect/spawner/random/tool, @@ -12,35 +10,25 @@ "al" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "am" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "an" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "ao" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aq" = ( /turf/closed/wall/solaris/reinforced, @@ -54,17 +42,13 @@ "aD" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aE" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aF" = ( /obj/structure/window/framed/solaris, @@ -72,51 +56,34 @@ /area/bigredv2/outside/engineering) "aT" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "aU" = ( /obj/structure/surface/rack, /obj/item/device/camera_film, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "aV" = ( /obj/structure/surface/rack, /obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "aW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "aY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "ba" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -124,20 +91,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/device/lightreplacer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bc" = ( /obj/structure/machinery/light{ @@ -146,58 +107,41 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) "be" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/mask/breath, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bk" = ( /obj/effect/decal/cleanable/dirt, @@ -205,9 +149,7 @@ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bl" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -216,9 +158,7 @@ name = "Storm Shutters"; pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bm" = ( /obj/structure/bed/chair{ @@ -226,35 +166,26 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bn" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bp" = ( /obj/item/folder/yellow, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "bq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -263,87 +194,62 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engineering Workshop" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "br" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "bu" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Engine Reactor Control" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm/engi) "bv" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bx" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "by" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bz" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bA" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bB" = ( /obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bC" = ( /obj/effect/decal/cleanable/dirt, @@ -361,30 +267,19 @@ dir = 8 }, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/telecomm/engi) "bF" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/telecomm/engi) "bG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/telecomm/engi) "bH" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bJ" = ( /obj/structure/bed/chair{ @@ -393,70 +288,46 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bK" = ( /obj/item/folder/yellow, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "bL" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bM" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bN" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "bO" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) "bR" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bS" = ( /obj/structure/bed/chair/office/light{ @@ -465,18 +336,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "bT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/telecomm/engi) "bU" = ( /obj/item/device/radio/intercom{ @@ -485,27 +351,21 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "bV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bY" = ( /obj/effect/decal/cleanable/dirt, @@ -513,27 +373,19 @@ amount = 30 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bZ" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "ca" = ( /obj/structure/sign/safety/hazard{ pixel_y = -32 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "ce" = ( /obj/item/tool/lighter/random, @@ -541,87 +393,59 @@ dir = 4 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cf" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "cg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ch" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "ck" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "cl" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "cn" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 1; name = "\improper Engine Reactor" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "co" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "cp" = ( /obj/item/folder/yellow, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "cq" = ( /obj/effect/decal/cleanable/ash, /obj/structure/machinery/power/breakerbox, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "cr" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/telecomm/engi) "cs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -630,9 +454,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm/engi) "ct" = ( /obj/structure/machinery/door_control{ @@ -642,48 +464,36 @@ pixel_x = 30; req_access_txt = "7" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "cv" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm/engi) "cw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "cx" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/constructable_frame, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cz" = ( /obj/structure/surface/table, /obj/structure/machinery/light, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cA" = ( /obj/structure/surface/table, @@ -691,10 +501,7 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "cB" = ( /obj/structure/machinery/light{ @@ -703,24 +510,17 @@ /obj/structure/sign/safety/high_rad{ pixel_x = 32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "cD" = ( /obj/structure/machinery/computer/area_atmos, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "cE" = ( /obj/structure/machinery/light{ @@ -729,17 +529,12 @@ /obj/structure/sign/safety/high_rad{ pixel_x = -32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "cG" = ( /obj/structure/window/framed/solaris/reinforced, @@ -755,9 +550,7 @@ /obj/effect/landmark/static_comms/net_two{ broken_on_spawn = 1 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "cI" = ( /obj/structure/sign/safety/hazard{ @@ -765,29 +558,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "cM" = ( /turf/open/mars, /area/bigredv2/outside/lz2_south_cas) "cN" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/lz2_south_cas) "cO" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "cP" = ( /turf/open/floor/plating, @@ -800,9 +585,7 @@ /turf/open/gm/river, /area/bigredv2/outside/engineering) "cT" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/lz2_south_cas) "cX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -812,14 +595,10 @@ dir = 1; name = "\improper Engineering Complex" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "cY" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/lz2_south_cas) "da" = ( /turf/closed/wall/mineral/uranium, @@ -830,20 +609,14 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) "dd" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) "de" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz2_south_cas) "df" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -854,10 +627,7 @@ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "dj" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -868,9 +638,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "dn" = ( /turf/open/mars_cave, @@ -901,9 +669,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/s) "dv" = ( /obj/structure/machinery/power/turbine, @@ -911,9 +677,7 @@ /area/bigredv2/outside/engineering) "dx" = ( /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "dy" = ( /obj/structure/machinery/power/reactor/colony{ @@ -926,23 +690,17 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dA" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "dC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/s) "dE" = ( /obj/structure/window_frame/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dF" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/s) "dG" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -951,9 +709,7 @@ /area/bigredv2/outside/engineering) "dJ" = ( /obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "dK" = ( /obj/structure/machinery/compressor{ @@ -963,38 +719,26 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz2_south_cas) "dR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "dS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "dT" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "dU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/lz2_south_cas) "dV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "dW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz2_south_cas) "dX" = ( /obj/structure/girder/reinforced, @@ -1002,9 +746,7 @@ /area/bigredv2/outside/engineering) "dY" = ( /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "dZ" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -1013,9 +755,7 @@ "eb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ec" = ( /obj/structure/catwalk/bigred, @@ -1040,17 +780,13 @@ /obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ej" = ( /obj/structure/machinery/light_construct{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ek" = ( /obj/structure/machinery/camera/autoname{ @@ -1081,9 +817,7 @@ "eo" = ( /obj/effect/decal/cleanable/dirt/greenglow, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "ep" = ( /obj/item/tool/extinguisher, @@ -1091,9 +825,7 @@ /area/bigredv2/outside/engineering) "eq" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "er" = ( /obj/effect/decal/cleanable/dirt, @@ -1102,27 +834,19 @@ /area/bigredv2/outside/engineering) "et" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "ev" = ( /obj/structure/machinery/light_construct, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ew" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ex" = ( /obj/effect/decal/cleanable/molten_item, /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "ey" = ( /obj/structure/machinery/light_construct{ @@ -1133,17 +857,13 @@ /area/bigredv2/outside/engineering) "ez" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "eA" = ( /obj/structure/machinery/light_construct{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "eB" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -1153,55 +873,38 @@ "eC" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eD" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eE" = ( /obj/structure/computerframe, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eF" = ( /obj/structure/surface/table, /obj/item/device/analyzer, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "eH" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - icon_state = "panelscorched" - }, +/turf/open/floor/panelscorched, /area/bigredv2/outside/engineering) "eI" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/telecomm/engi) "eJ" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "eK" = ( /obj/effect/decal/cleanable/molten_item, @@ -1210,9 +913,7 @@ /area/bigredv2/outside/engineering) "eL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "eM" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -1221,43 +922,31 @@ /area/bigredv2/outside/engineering) "eN" = ( /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "eO" = ( /turf/closed/wall/mineral/uranium/leaking, /area/bigredv2/outside/engineering) "fI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "gT" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "im" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "iQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "jr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/lz2_south_cas) "kN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1267,9 +956,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "oE" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -1280,23 +967,15 @@ /area/bigredv2/outside/telecomm/engi) "oK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "sU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) "to" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "vs" = ( /turf/closed/wall/solaris/reinforced, @@ -1305,30 +984,21 @@ /obj/structure/machinery/power/apc/fully_broken{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "xl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "xz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "yH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Ah" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1336,44 +1006,29 @@ /area/bigredv2/outside/lz2_south_cas) "Bo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "CA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Dh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "Dq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "ET" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "IE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "KJ" = ( /obj/structure/window_frame/solaris/reinforced, @@ -1383,72 +1038,46 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "LE" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Nv" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "NT" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/telecomm/engi) "NX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/lz2_south_cas) "Ph" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "RN" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Sz" = ( /obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "SC" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "Tv" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "Uo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "WI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm index 8f155a1eabef..ac01a7d1f4f7 100644 --- a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm +++ b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm @@ -1,39 +1,26 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ao" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz2_south_cas) "au" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/shield/riot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "az" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "bu" = ( /obj/structure/closet/secure_closet/marshal, /obj/item/clothing/suit/storage/CMB, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "cj" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "cR" = ( /turf/closed/wall/solaris/rock, @@ -42,48 +29,32 @@ /turf/open/mars_cave, /area/bigredv2/caves_research) "fo" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/lz2_south_cas) "fK" = ( /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "fQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) "gQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_sw) "ie" = ( /obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "ii" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_sw) "ik" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz2_south_cas) "io" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_research) "iF" = ( /obj/structure/surface/table/reinforced/prison, @@ -98,24 +69,16 @@ pixel_x = -8; pixel_y = 7 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jj" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "ki" = ( /obj/structure/machinery/light/double{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kq" = ( /obj/structure/surface/table/reinforced/prison, @@ -140,91 +103,57 @@ pixel_x = -7; pixel_y = -3 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "kS" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves_sw) "lQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) "mT" = ( /obj/item/clothing/head/helmet/riot, -/turf/open/floor/plating{ - burnt = 1; - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/burnt_platingdmg3/west, /area/bigredv2/caves/mining) "nx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) "pn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_sw) "qm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "qW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves_sw) "sJ" = ( /obj/item/clothing/suit/storage/CMB, /obj/structure/closet/secure_closet/marshal, /obj/structure/machinery/light/double, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) "uJ" = ( /obj/item/shard{ pixel_x = 11; pixel_y = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "vX" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves_sw) "wn" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz2_south_cas) "wJ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lz2_south_cas) "wK" = ( /obj/structure/bed/chair{ @@ -232,10 +161,7 @@ }, /obj/effect/landmark/corpsespawner/security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "wW" = ( /obj/structure/surface/table/reinforced/prison, @@ -254,10 +180,7 @@ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "xS" = ( /obj/item/trash/cigbutt, @@ -265,22 +188,16 @@ pixel_x = 9; pixel_y = -5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "yw" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) "zB" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "zP" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/lz2_south_cas) "AD" = ( /obj/effect/decal/cleanable/blood{ @@ -288,43 +205,28 @@ icon_state = "gib6"; pixel_y = 20 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Be" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Marshals Mining Security Post" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Bm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves_sw) "Bz" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "BO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "BY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_research) "En" = ( /obj/structure/window_frame/solaris/reinforced, @@ -337,40 +239,26 @@ pixel_y = -9 }, /obj/item/shard, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Et" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_research) "Fp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_sw) "FB" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "FW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/outside/lz2_south_cas) "Jm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "Jy" = ( /obj/structure/surface/table/reinforced/prison, @@ -381,32 +269,22 @@ }, /obj/item/clothing/mask/cigarette/cigar/havana, /obj/item/shard, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "JV" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) "JW" = ( /obj/structure/machinery/light/double, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "KI" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Le" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) "MN" = ( /obj/structure/reagent_dispensers/peppertank{ @@ -419,16 +297,11 @@ icon_state = "grenade_custom"; name = "M55C Teargas grenade" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Nu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "OV" = ( /obj/structure/surface/rack, @@ -440,58 +313,38 @@ /obj/item/clothing/head/helmet/riot{ pixel_y = 11 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "OY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz2_south_cas) "Qn" = ( /obj/structure/window_frame/solaris/reinforced, /obj/item/shard, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "QO" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_research) "QS" = ( /obj/structure/machinery/door/poddoor/two_tile{ name = "\improper Eta Tunnel Lockdown" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lz2_south_cas) "QV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves_sw) "Rm" = ( /obj/item/shard{ icon_state = "small" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "Sy" = ( /obj/item/weapon/broken_bottle, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Tm" = ( /obj/effect/decal/cleanable/blood{ @@ -501,10 +354,7 @@ icon_state = "grenade_custom"; name = "M55C Teargas grenade" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Ue" = ( /obj/structure/surface/table/reinforced/prison, @@ -512,91 +362,58 @@ /obj/item/restraint/handcuffs{ pixel_y = -3 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Uh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_sw) "UG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) "UX" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) "VR" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) "Wy" = ( /obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "WV" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_sw) "Xl" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) "Xm" = ( -/turf/open/floor/plating{ - burnt = 1; - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/burnt_platingdmg3/west, /area/bigredv2/caves/mining) "XE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "XV" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "Yt" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/lz2_south_cas) "Zk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_sw) "Zz" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm index d148955c0c93..729d541cbc96 100644 --- a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm +++ b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm @@ -1,19 +1,12 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8; - icon_state = "landingstripe" - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" + dir = 8 }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "ab" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "ac" = ( /turf/closed/wall/solaris/reinforced, @@ -46,177 +39,113 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) "ak" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "al" = ( /obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "am" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "an" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/outside/space_port) "ao" = ( /obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "ap" = ( /obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "aq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "ar" = ( /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "as" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/outside/space_port) "at" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "au" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "av" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/space_port) "aw" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ax" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ay" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "az" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aB" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/outside/space_port) "aC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -226,23 +155,17 @@ dir = 1; name = "\improper Spaceport" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aK" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aL" = ( /obj/structure/surface/table, @@ -252,28 +175,18 @@ name = "Storm Shutters"; pixel_x = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/outside/space_port) "aM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aO" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aP" = ( /obj/structure/window/framed/solaris/reinforced, @@ -285,114 +198,76 @@ /turf/open/floor/plating, /area/bigredv2/outside/space_port) "aQ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/bigredv2/outside/space_port) "aR" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aS" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aT" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/outside/space_port) "aU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aV" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "aX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aY" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/outside/space_port) "aZ" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "ba" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "bb" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "bc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "bd" = ( /obj/structure/surface/table, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "be" = ( /obj/structure/surface/table, /obj/item/paper_bin, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/outside/space_port) "bh" = ( /turf/closed/wall/solaris/rock, @@ -401,97 +276,63 @@ /turf/open/mars, /area/bigredv2/outside/nw) "bj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) "bk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "bl" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "bm" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) "bn" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bo" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bp" = ( /obj/item/stack/sheet/metal, /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bq" = ( /obj/structure/lz_sign/solaris_sign, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "br" = ( /obj/item/stack/rods, /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bs" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/nw) "bt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/nw) "bu" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "bv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "bw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "by" = ( /obj/effect/decal/cleanable/dirt, @@ -499,185 +340,117 @@ /area/bigredv2/outside/nw) "bz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bA" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/nw) "bB" = ( /obj/structure/fence, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/nw) "bC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) "bD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/nw) "bE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "bF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "bG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bH" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bI" = ( /obj/structure/cargo_container/wy/mid, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bJ" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bK" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "bL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bP" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bQ" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bT" = ( /obj/structure/fence, /turf/open/mars, /area/bigredv2/outside/nw) "bU" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "bV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "bW" = ( /obj/structure/fence, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/nw) "bX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bY" = ( /turf/template_noop, /area/template_noop) "bZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "ca" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/nw) "cb" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/nw) "cc" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "Dc" = ( /obj/effect/decal/cleanable/dirt, diff --git a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm index 15bfc057bae8..5285427c0079 100644 --- a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm +++ b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm @@ -5,63 +5,45 @@ "b" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "c" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "d" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "e" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "f" = ( /obj/structure/surface/table, /obj/item/storage/toolbox, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "g" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "h" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "i" = ( /obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "j" = ( /obj/effect/decal/remains/human, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "k" = ( /obj/structure/barricade/wooden{ @@ -69,9 +51,7 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "l" = ( /obj/structure/surface/rack, @@ -81,61 +61,45 @@ /obj/item/lightstick/red, /obj/item/storage/box/lightstick/red, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "m" = ( /obj/item/tool/shovel, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "n" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) "o" = ( /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "p" = ( /obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "q" = ( /obj/structure/surface/table, /obj/item/clothing/mask/gas, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "r" = ( /obj/structure/surface/table, /obj/item/pizzabox, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "s" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "t" = ( /obj/structure/ore_box, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "u" = ( /obj/structure/sign/safety/hazard, @@ -150,16 +114,12 @@ /area/bigredv2/outside/space_port) "A" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "P" = ( /obj/item/ore, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm index 19f720daf929..af347ca1f772 100644 --- a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm +++ b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm @@ -15,58 +15,41 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Chapel" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "ae" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "af" = ( /obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "ag" = ( /obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "ah" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "ai" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "ak" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "al" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "an" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -76,9 +59,7 @@ layer = 3; pixel_x = 24 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "ao" = ( /obj/structure/window/framed/solaris, @@ -90,113 +71,76 @@ /turf/open/floor/plating, /area/bigredv2/outside/chapel) "ap" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "aq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/rampbottom/north, /area/bigredv2/outside/chapel) "as" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "at" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "au" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "av" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "aw" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "ax" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "ay" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "az" = ( /obj/item/tool/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "aA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "aB" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aC" = ( /obj/item/tool/candle{ icon_state = "candle2" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aD" = ( /obj/structure/surface/table/woodentable, /obj/item/weapon/chainofcommand, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "aE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -205,66 +149,46 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aF" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) "aG" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "aH" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "aI" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) "aJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "aK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "aL" = ( -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) "aN" = ( /obj/structure/pipes/vents/pump{ @@ -273,9 +197,7 @@ /obj/effect/decal/cleanable/ash, /obj/effect/decal/cleanable/blood, /obj/item/clothing/head/cardborg, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "aO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -283,25 +205,19 @@ }, /obj/structure/surface/table/woodentable, /obj/item/storage/bible, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "aP" = ( /obj/item/tool/candle{ icon_state = "candle3"; item_state = "candle3" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "aR" = ( /obj/item/organ/heart, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "aS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -311,9 +227,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -322,83 +236,58 @@ /obj/item/tool/candle{ icon_state = "candle3" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aU" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aX" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "aZ" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "ba" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) "bc" = ( /obj/effect/decal/cleanable/blood{ layer = 3; pixel_x = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) "be" = ( -/turf/open/floor{ - icon_state = "rampbottom" - }, +/turf/open/floor/rampbottom, /area/bigredv2/outside/chapel) "bh" = ( /obj/item/tool/candle, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) "bi" = ( /obj/item/tool/candle, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) "bj" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "bk" = ( /obj/structure/machinery/door_control{ @@ -407,41 +296,31 @@ pixel_x = -32 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) "bl" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "bm" = ( /obj/structure/machinery/power/apc, /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "bp" = ( /obj/structure/machinery/alarm{ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) "bq" = ( /obj/item/tool/candle{ icon_state = "candle4" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm index bfce848e5656..215c6f874cb2 100644 --- a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm +++ b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm @@ -3,17 +3,11 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/nw) "c" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/outside/nw) "d" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/outside/nw) "e" = ( /obj/structure/largecrate/random/barrel/red, @@ -21,8 +15,7 @@ /area/bigredv2/outside/nw) "f" = ( /obj/structure/machinery/light{ - dir = 1; - icon_state = "tube1" + dir = 1 }, /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, @@ -54,33 +47,24 @@ /turf/open/floor/plating, /area/bigredv2/outside/nw) "n" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/outside/nw) "p" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" + dir = 4 }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/outside/nw) "q" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 + dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/nw) "r" = ( /obj/effect/landmark/hunter_primary, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 + dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/nw) @@ -90,9 +74,7 @@ /area/bigredv2/outside/nw) "u" = ( /obj/structure/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 + dir = 8 }, /turf/open/floor/plating, /area/bigredv2/outside/nw) @@ -128,9 +110,7 @@ /area/bigredv2/outside/nw) "D" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/warehouse) "H" = ( /obj/effect/decal/warning_stripes{ @@ -138,25 +118,17 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/bigredv2/outside/telecomm/warehouse) "K" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/warehouse) "O" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/outside/telecomm/warehouse) "S" = ( /obj/structure/machinery/power/apc{ @@ -168,10 +140,7 @@ layer = 2.5; pixel_x = -1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/bigredv2/outside/telecomm/warehouse) "T" = ( /obj/effect/decal/warning_stripes{ @@ -179,19 +148,14 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/bigredv2/outside/telecomm/warehouse) "V" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/telecomm/warehouse) "Z" = ( /obj/effect/decal/warning_stripes{ @@ -199,10 +163,7 @@ layer = 2.5; pixel_x = -1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/bigredv2/outside/telecomm/warehouse) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm index 0413441989ea..291b83899b4b 100644 --- a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm +++ b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm @@ -3,19 +3,14 @@ /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "c" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "d" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) "e" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lz1_north_cas) "f" = ( /obj/item/tool/warning_cone, @@ -25,15 +20,11 @@ /turf/open/floor/plating, /area/bigredv2/outside/space_port) "i" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_north_cas) "j" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "F" = ( /obj/structure/sign/safety/hazard, diff --git a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm index 74be8d01d4ab..ba7296705642 100644 --- a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm +++ b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm @@ -1,9 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ab" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "ac" = ( /turf/open/floor/plating, @@ -17,23 +14,14 @@ dir = 1; name = "\improper Spaceport" }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ah" = ( -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ai" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aj" = ( /obj/structure/surface/table, @@ -42,10 +30,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "al" = ( /obj/effect/decal/cleanable/blood/oil, @@ -53,8 +38,7 @@ /area/bigredv2/outside/space_port) "am" = ( /obj/structure/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) @@ -67,26 +51,17 @@ pixel_x = -32; start_charge = 0 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ap" = ( /obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aq" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ar" = ( /obj/structure/surface/table, @@ -97,38 +72,25 @@ pixel_x = 32 }, /obj/item/tool/pen, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "at" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" + dir = 8 }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "au" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "av" = ( /obj/structure/machinery/blackbox_recorder, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ax" = ( /obj/structure/window/framed/solaris, @@ -144,18 +106,12 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ dir = 4 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/landing/console) "az" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aA" = ( /obj/structure/cargo_container/watatsumi/leftmid, @@ -173,27 +129,18 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aE" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aG" = ( /obj/effect/decal/cleanable/blood{ @@ -205,58 +152,37 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/outside/space_port) "aI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aJ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aK" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aL" = ( /obj/item/shard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aM" = ( -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/outside/space_port) "aP" = ( /obj/structure/window/framed/solaris, @@ -280,44 +206,28 @@ /area/bigredv2/outside/space_port) "aT" = ( /obj/structure/machinery/light{ - dir = 1; - icon_state = "tube1" + dir = 1 }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) "aU" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - dir = 2; - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port) "aV" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "aW" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "aX" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "aY" = ( /obj/structure/cargo_container/arious/right, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "bd" = ( /obj/effect/decal/cleanable/blood, @@ -329,10 +239,7 @@ /area/bigredv2/outside/space_port) "bf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "bg" = ( /obj/effect/landmark/crap_item, diff --git a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm index f62f085e7ea2..5c1c05d3e258 100644 --- a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm +++ b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm @@ -5,25 +5,18 @@ pixel_x = -11; pixel_y = 10 }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "ab" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "ac" = ( /obj/item/tool/pickaxe/drill, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "ad" = ( /obj/effect/glowshroom, @@ -31,39 +24,26 @@ /area/bigredv2/caves_lambda) "ae" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "af" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "ag" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "ah" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "ai" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_lambda) "aj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "ak" = ( /turf/closed/wall/solaris/rock, @@ -74,10 +54,7 @@ pixel_y = -32 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "am" = ( /obj/structure/machinery/door_control{ @@ -86,9 +63,7 @@ pixel_y = 28 }, /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "an" = ( /obj/effect/decal/cleanable/mucus, @@ -99,28 +74,21 @@ }, /obj/effect/landmark/corpsespawner/pmc, /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "ao" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; pixel_y = 6 }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "ap" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/lambda/breakroom) "aq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" - }, +/turf/open/floor/almayer/w_y0/north, /area/bigredv2/caves/lambda/breakroom) "ar" = ( /obj/structure/filingcabinet{ @@ -134,10 +102,7 @@ pixel_x = -8; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "as" = ( /obj/structure/filingcabinet{ @@ -151,19 +116,13 @@ /obj/structure/filingcabinet{ pixel_x = -9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "at" = ( /turf/open/floor/plating/almayer, /area/bigredv2/caves/lambda/breakroom) "au" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "av" = ( /obj/structure/filingcabinet{ @@ -176,54 +135,35 @@ pixel_x = -8; pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "aw" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "ax" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "aA" = ( /turf/template_noop, /area/template_noop) "aB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" - }, +/turf/open/floor/almayer/w_y1/north, /area/bigredv2/caves/lambda/breakroom) "aC" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "aD" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "aE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/bigredv2/caves/lambda/breakroom) "aF" = ( /obj/structure/machinery/light{ @@ -244,10 +184,7 @@ /obj/item/clothing/accessory/medal/bronze/science{ pixel_x = -5 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "aG" = ( /obj/structure/window/framed/solaris/reinforced, @@ -262,19 +199,14 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2, /area/bigredv2/caves/lambda/breakroom) "aI" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/lambda/breakroom) "aJ" = ( /obj/structure/machinery/light, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "aK" = ( /obj/structure/surface/table/reinforced/prison, @@ -282,10 +214,7 @@ id = "vault"; name = "Vault Lockdown" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "aL" = ( /obj/structure/surface/table/reinforced/prison, @@ -293,29 +222,19 @@ /obj/item/spacecash/c1000, /obj/item/spacecash/c1000, /obj/item/spacecash/c1000, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "aM" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, +/turf/open/floor/almayer/w_y2/north, /area/bigredv2/caves/lambda/breakroom) "aN" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) "aP" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "aQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) "aR" = ( /obj/structure/filingcabinet{ @@ -328,27 +247,18 @@ pixel_x = -9; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/bigredv2/caves/lambda/breakroom) "aS" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "aT" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, +/turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_lambda) "aV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "aW" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{ @@ -359,43 +269,29 @@ id = "vault"; name = "Vault Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) "aX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_lambda) "aY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "aZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) "ba" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "vm" = ( /obj/item/shard{ icon_state = "small" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) "zP" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) "EW" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -421,9 +317,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_lambda) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm index 5ff0d32f9e15..0b51c63b39be 100644 --- a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm +++ b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm @@ -8,9 +8,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/cargo) "ab" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "ad" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -52,9 +50,7 @@ dir = 8; health = 25000 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "am" = ( /obj/structure/largecrate/cow, @@ -66,9 +62,7 @@ /area/bigredv2/outside/cargo) "ao" = ( /obj/structure/largecrate/cow, -/turf/open/floor{ - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea, /area/bigredv2/outside/cargo) "ap" = ( /obj/structure/closet/emcloset, @@ -145,18 +139,14 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "aC" = ( -/turf/open/floor{ - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea, /area/bigredv2/outside/cargo) "aD" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Cargo Offices" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "aE" = ( /obj/structure/window/framed/solaris, @@ -169,30 +159,21 @@ /area/bigredv2/outside/cargo) "aF" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/cargo_container/arious/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -205,29 +186,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aN" = ( /obj/structure/machinery/light{ @@ -237,55 +209,34 @@ /area/bigredv2/outside/cargo) "aO" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aS" = ( /obj/structure/cargo_container/grant/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aT" = ( /obj/structure/cargo_container/grant/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aU" = ( /obj/structure/cargo_container/grant/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aV" = ( /obj/effect/decal/cleanable/dirt, @@ -301,23 +252,16 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cargo Bay Security" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "aX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "aY" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea, /area/bigredv2/outside/cargo) "aZ" = ( /obj/structure/surface/table, @@ -339,38 +283,23 @@ "bc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bd" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "be" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bf" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bg" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bh" = ( /obj/structure/largecrate/random/barrel, @@ -378,10 +307,7 @@ /area/bigredv2/outside/cargo) "bj" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bk" = ( /obj/structure/machinery/power/apc{ @@ -402,9 +328,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bs" = ( /obj/effect/decal/cleanable/dirt, @@ -431,9 +355,7 @@ dir = 1; name = "\improper Cargo Bay" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bz" = ( /obj/effect/landmark/corpsespawner/security/marshal, @@ -474,34 +396,21 @@ "bI" = ( /obj/item/reagent_container/spray/cleaner, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "bJ" = ( -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "bK" = ( -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/east, /area/bigredv2/outside/cargo) "bM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/largecrate/random/barrel, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bN" = ( -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/bigredv2/outside/cargo) "bO" = ( /obj/structure/machinery/door_control{ @@ -529,9 +438,7 @@ dir = 1; name = "\improper Cargo Bay Quartermaster" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "bS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -543,20 +450,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/east, /area/bigredv2/outside/cargo) "bV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -564,10 +465,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -575,20 +473,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/cargo) "bZ" = ( /obj/structure/reagent_dispensers/watertank, @@ -615,9 +507,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Cargo Bay Quartermaster" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/cargo) "cf" = ( /obj/structure/bed/chair/office/dark, @@ -730,29 +620,21 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Engineering Complex" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "cx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "zL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "AS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/bigredv2/outside/cargo) "Gu" = ( /obj/effect/decal/cleanable/dirt, diff --git a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm index 62d8c1f9d5ab..8f710225f0c5 100644 --- a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm +++ b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm @@ -13,65 +13,40 @@ /area/bigredv2/outside/nw) "e" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "f" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "g" = ( /turf/open/mars, /area/bigredv2/outside/w) "h" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/w) "i" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/nw) "j" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) "k" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "l" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/bigredv2/outside/w) "m" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/w) "n" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/w) "o" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars/mars_dirt_6, /area/bigredv2/outside/w) "U" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/w) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm index adbdf51bd259..10252b55284c 100644 --- a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm +++ b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm @@ -7,9 +7,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "ad" = ( /obj/effect/decal/cleanable/dirt, @@ -19,16 +17,12 @@ /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "af" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "ah" = ( /obj/structure/window/framed/solaris, @@ -42,100 +36,67 @@ /area/bigredv2/caves) "ak" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "al" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "am" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/se) "an" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "ap" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "aq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "ar" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "as" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "at" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "au" = ( /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "av" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/se) "aw" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars/mars_dirt_6, /area/bigredv2/outside/se) "ax" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/se) "ay" = ( /obj/effect/decal/cleanable/dirt, @@ -151,27 +112,21 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Atmospherics Condenser Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aB" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Atmospherics Condenser" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aD" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -179,126 +134,86 @@ name = "\improper Atmospherics Condenser" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aE" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aF" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) "aG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) "aH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aJ" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "aK" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/se) "aL" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aM" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aO" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aP" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aQ" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "aR" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "aS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "aT" = ( /obj/structure/dispenser/oxygen, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aV" = ( /obj/effect/decal/warning_stripes{ icon_state = "U-N" }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aW" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aY" = ( /turf/closed/wall/solaris/reinforced, @@ -306,10 +221,7 @@ "aZ" = ( /obj/structure/machinery/computer/general_air_control, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bb" = ( /obj/structure/surface/table, @@ -317,34 +229,23 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bd" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "be" = ( /obj/structure/surface/table, /obj/item/circuitboard/solar_tracker, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "bf" = ( /obj/structure/machinery/light{ @@ -357,36 +258,26 @@ /obj/effect/decal/warning_stripes{ icon_state = "U-S" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bh" = ( /obj/effect/decal/warning_stripes{ icon_state = "U-S" }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bj" = ( /obj/structure/surface/rack, /obj/item/tank/air, /obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bk" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bl" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -402,9 +293,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bm" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -412,42 +301,31 @@ name = "\improper Filtration Facility" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bn" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "bo" = ( /obj/item/tank/air, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bp" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bq" = ( /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "br" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -456,9 +334,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bt" = ( /obj/effect/decal/cleanable/dirt, @@ -469,9 +345,7 @@ dir = 4 }, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bv" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, @@ -486,17 +360,12 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "bA" = ( /obj/effect/decal/cleanable/dirt, @@ -508,10 +377,7 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bD" = ( /obj/structure/window/framed/solaris/reinforced/hull, @@ -521,32 +387,22 @@ /obj/structure/cryofeed/right{ name = "\improper coolant feed" }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) "bF" = ( /obj/structure/cryofeed, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) "bG" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bH" = ( /obj/structure/machinery/computer/area_atmos/area{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bI" = ( /obj/structure/window_frame/solaris/reinforced, @@ -557,10 +413,7 @@ /area/bigredv2/outside/filtration_plant) "bJ" = ( /obj/item/weapon/twohanded/fireaxe, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "bK" = ( /turf/open/mars, @@ -568,57 +421,39 @@ "bN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "bO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "bP" = ( /obj/item/tank/air, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "bQ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bS" = ( /obj/item/frame/table, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bT" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bW" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bX" = ( /obj/structure/sign/safety/distribution_pipes{ @@ -627,10 +462,7 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/filtration_plant) "bZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "cb" = ( /obj/structure/machinery/door_control{ @@ -639,25 +471,18 @@ pixel_x = -32 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "ce" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "cf" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "FiltrationShutters"; name = "\improper Airlock Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "cg" = ( /obj/structure/machinery/door_control{ @@ -669,80 +494,52 @@ /area/bigredv2/outside/filtration_plant) "ch" = ( /obj/structure/dispenser/oxygen, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "ci" = ( /obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "cj" = ( /obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "ck" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "cl" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "cn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_plant) "cO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "et" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "eL" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "ff" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "gt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "hk" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "jh" = ( /obj/structure/machinery/light, @@ -750,17 +547,11 @@ /area/bigredv2/outside/filtration_plant) "ka" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "kE" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "nk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -782,103 +573,62 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "qi" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "ti" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "tp" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "tz" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) "tB" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "vK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "xd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "yi" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "yZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/filtration_plant) "zu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) "Ap" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/filtration_plant) "AD" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "Ee" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "FI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "FK" = ( /obj/effect/decal/warning_stripes{ @@ -889,147 +639,95 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "Jy" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "Kp" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "Ms" = ( /obj/structure/machinery/computer3/server/rack, /obj/effect/decal/warning_stripes{ icon_state = "U-N" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "Qx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) "QJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "Rv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) "Sj" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Filtration Facility" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "Sk" = ( /obj/structure/machinery/light, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "TC" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "TX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "UH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) "US" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_plant) "VW" = ( /obj/structure/cargo_container/grant/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "Wc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/filtration_plant) "Wz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "WD" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "Xx" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "XC" = ( /obj/structure/cargo_container/grant/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "Yg" = ( /obj/structure/cargo_container/grant/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm index 622e76848001..6e418ce24e08 100644 --- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm +++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm @@ -12,31 +12,22 @@ "af" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/outside/admin_building) "ag" = ( /obj/effect/spawner/random/toolbox, /obj/structure/platform_decoration, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "ai" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aj" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "ak" = ( /obj/structure/window_frame/solaris, @@ -48,25 +39,18 @@ dir = 1; name = "\improper Operations Meeting Room" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) "am" = ( /obj/structure/platform, /obj/structure/flora/jungle/planttop1{ pixel_y = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "an" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "ap" = ( /obj/structure/flora/jungle/plantbot1{ @@ -81,9 +65,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "at" = ( /obj/structure/bed/chair/comfy/black, @@ -98,29 +80,21 @@ dir = 4; icon_state = "metal_2" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aw" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "ay" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aA" = ( /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aB" = ( /obj/structure/surface/table, @@ -141,18 +115,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/outside/admin_building) "aH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) "aJ" = ( /obj/structure/bed/chair/comfy/blue{ @@ -177,17 +147,11 @@ "aM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aN" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "aO" = ( /obj/item/storage/secure/briefcase, @@ -197,9 +161,7 @@ /obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "aQ" = ( /turf/open/floor/carpet, @@ -214,19 +176,14 @@ /area/bigredv2/outside/admin_building) "aT" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "aU" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/item/storage/toolbox/syndicate, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "aV" = ( /obj/structure/surface/table, @@ -241,16 +198,10 @@ "aX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "aY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "aZ" = ( /obj/structure/machinery/light{ @@ -264,9 +215,7 @@ /obj/item/ammo_box/magazine/m4a3{ num_of_magazines = 2 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "ba" = ( /obj/structure/surface/table, @@ -302,35 +251,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "be" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "bf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "bg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "bh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -339,38 +278,26 @@ /obj/structure/machinery/door/airlock/almayer/command/colony{ name = "\improper Operations Office" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bi" = ( /obj/item/ammo_box/magazine/ext{ num_of_magazines = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bl" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "bm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) "bn" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/bigredv2/outside/admin_building) "bo" = ( /obj/item/device/radio/intercom{ @@ -379,10 +306,7 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/bigredv2/outside/admin_building) "bp" = ( /obj/structure/machinery/vending/coffee, @@ -408,9 +332,7 @@ /obj/item/ammo_magazine/pistol/rubber{ current_rounds = 0 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "jq" = ( /obj/item/weapon/gun/rifle/m41a/corporate{ @@ -426,9 +348,7 @@ current_rounds = 0; pixel_y = 11 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "mq" = ( /obj/structure/window/framed/solaris/reinforced, @@ -443,9 +363,7 @@ /obj/item/ammo_magazine/rifle{ current_rounds = 0 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "si" = ( /obj/item/ammo_box/magazine{ @@ -461,9 +379,7 @@ pixel_x = 14; pixel_y = 17 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "uv" = ( /obj/item/ammo_magazine/rifle{ @@ -471,33 +387,25 @@ pixel_x = -9; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "vH" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "vO" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "yf" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "za" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -524,17 +432,13 @@ /area/bigredv2/outside/admin_building) "ND" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "Pk" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "QR" = ( /obj/structure/barricade/metal/wired{ @@ -543,9 +447,7 @@ /obj/item/ammo_magazine/pistol/rubber{ current_rounds = 0 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) "Sz" = ( /obj/item/ammo_magazine/rifle/rubber{ diff --git a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm index 2c3f634a6502..c2336bae0b40 100644 --- a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm +++ b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm @@ -47,32 +47,24 @@ /turf/open/floor, /area/bigredv2/outside/dorms) "al" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "an" = ( /obj/item/trash/chunk, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "ao" = ( /obj/item/trash/chunk{ pixel_x = 3; pixel_y = -4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "ap" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -119,34 +111,26 @@ "ay" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "az" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aA" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, /obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/trash/chunk{ pixel_y = 5 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aC" = ( /obj/structure/machinery/camera/autoname{ @@ -193,16 +177,12 @@ /area/bigredv2/outside/dorms) "aJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aK" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aL" = ( /obj/effect/decal/cleanable/dirt, @@ -211,17 +191,13 @@ pixel_y = 4 }, /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /obj/item/trash/chunk, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aN" = ( /obj/item/trash/chunk, @@ -246,18 +222,14 @@ /area/bigredv2/outside/dorms) "aS" = ( /obj/item/device/megaphone, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aU" = ( /obj/effect/decal/cleanable/dirt, @@ -265,18 +237,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aW" = ( /obj/item/device/radio/intercom{ @@ -297,9 +265,7 @@ /area/bigredv2/outside/dorms) "ba" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "bb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -404,17 +370,13 @@ /area/bigredv2/outside/dorms) "dl" = ( /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "do" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/colonist/random, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "el" = ( /obj/effect/landmark/corpsespawner/colonist/random, @@ -429,9 +391,7 @@ /area/bigredv2/outside/dorms) "lN" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "zO" = ( /obj/structure/pipes/standard/simple/hidden/green{ diff --git a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm index f58cfc3b7977..3a06d7aae8d4 100644 --- a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm +++ b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm @@ -4,28 +4,19 @@ /area/bigredv2/caves) "ab" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) "ac" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 10 - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) "ad" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "ae" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "af" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, @@ -37,205 +28,131 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "ag" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "ah" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/virology) "ai" = ( /turf/open/mars, /area/bigredv2/outside/virology) "ak" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "al" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/virology) "am" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) "an" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/virology) "ao" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/virology) "aq" = ( /obj/structure/inflatable, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "ar" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/virology) "as" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "at" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "au" = ( /obj/structure/inflatable, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "av" = ( -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aw" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "ax" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "ay" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "az" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aE" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 5 - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/nw) "aF" = ( /obj/structure/inflatable/door, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "aG" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aH" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/virology) "aI" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "aJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aK" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/virology) "aM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/inflatable/popped/door, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aN" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "aO" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -246,10 +163,7 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aU" = ( /turf/open/mars, @@ -263,41 +177,27 @@ dir = 4 }, /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 10 - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/virology) "aY" = ( /obj/structure/sign/safety/biohazard, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "aZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "ba" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "bb" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/virology) "bc" = ( /turf/closed/wall/solaris/rock, @@ -311,10 +211,7 @@ dir = 1; name = "\improper Virology Lab Decontamination" }, -/turf/open/floor{ - icon_state = "warnwhite"; - dir = 1 - }, +/turf/open/floor/warnwhite/north, /area/bigredv2/outside/virology) "bf" = ( /obj/effect/decal/cleanable/blood{ @@ -324,73 +221,47 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bg" = ( /obj/structure/inflatable, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/virology) "bj" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 6 - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/nw) "bk" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 10 - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/virology) "bl" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "bm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "bn" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "bo" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "bp" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/virology) "bq" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/virology) "br" = ( /obj/structure/inflatable/popped, @@ -400,86 +271,56 @@ /obj/structure/surface/table/almayer, /obj/item/tool/surgery/scalpel, /obj/item/device/autopsy_scanner, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "bt" = ( /obj/structure/bed/roller, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) "bu" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "bv" = ( /obj/structure/inflatable/popped, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "bw" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "bx" = ( /obj/structure/inflatable/popped, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) "by" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "bz" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "bA" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "bE" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "bF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop{ dir = 8 }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 5 - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/virology) "bG" = ( /obj/structure/surface/table/almayer, @@ -487,39 +328,25 @@ /obj/item/storage/syringe_case/regular{ pixel_y = 10 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "bH" = ( /obj/structure/surface/table/almayer, /obj/item/restraint/handcuffs, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/virology) "lB" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/virology) "qP" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "rG" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "uN" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "zC" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -527,22 +354,14 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "FK" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/virology) "GE" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "Kk" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -550,35 +369,23 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "Kv" = ( /obj/item/weapon/gun/flamer, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "Po" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 5 - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/virology) "Ry" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/virology) "Vr" = ( /obj/structure/inflatable/popped, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm index f3fa4dbcc6e9..51e1ab45af22 100644 --- a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm +++ b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm @@ -2,9 +2,7 @@ "a" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "b" = ( /turf/closed/wall/solaris/reinforced, @@ -13,25 +11,18 @@ /turf/closed/wall/solaris, /area/bigredv2/caves/eta/xenobiology) "d" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "e" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "f" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "g" = ( /turf/open/mars, @@ -48,31 +39,21 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/xenobiology) "k" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "l" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "m" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/xenobiology) "n" = ( /obj/item/toy/beach_ball, @@ -91,20 +72,14 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "r" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "s" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "t" = ( /mob/living/simple_animal/hostile/carp{ @@ -124,10 +99,7 @@ dir = 8 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "w" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -143,59 +115,39 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "z" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/caves/eta/xenobiology) "A" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "B" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/eta/xenobiology) "C" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/caves/eta/xenobiology) "D" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/caves/eta/xenobiology) "E" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/eta/xenobiology) "F" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/eta/xenobiology) "G" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/bigredv2/caves/eta/xenobiology) "H" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/eta/xenobiology) "O" = ( /obj/effect/decal/cleanable/dirt, diff --git a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm index 7a3bdb9df798..16bdac130168 100644 --- a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm +++ b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm @@ -17,7 +17,6 @@ "bp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ icon_state = "door_locked"; - locked = 0; name = "\improper Checkpoint Office" }, /turf/open/floor, @@ -29,18 +28,12 @@ /area/bigred/ground/security) "cO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "dz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/filtration_cave_cas) "el" = ( /obj/structure/surface/table/almayer, @@ -57,15 +50,11 @@ name = "\improper Checkpoint Office" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigred/ground/security) "ie" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "kd" = ( /obj/structure/surface/table/almayer, @@ -78,47 +67,32 @@ /area/bigred/ground/security) "kG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/filtration_cave_cas) "kL" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/filtration_cave_cas) "kX" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/security) "mp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/filtration_cave_cas) "oT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/filtration_cave_cas) "pb" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "pJ" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/se) "pV" = ( /obj/structure/surface/table/almayer, @@ -127,9 +101,7 @@ /area/bigred/ground/security) "qg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_cave_cas) "qy" = ( /obj/item/device/radio, @@ -152,9 +124,7 @@ id = "filtration"; name = "Filtration Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) "uk" = ( /obj/effect/decal/cleanable/dirt, @@ -170,9 +140,7 @@ dir = 1; name = "\improper Checkpoint Office" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigred/ground/security) "vH" = ( /obj/effect/decal/cleanable/blood, @@ -185,10 +153,7 @@ /area/bigred/ground/security) "wi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_cave_cas) "xa" = ( /turf/open/floor/greengrid, @@ -210,68 +175,42 @@ /area/bigred/ground/security) "zE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_cave_cas) "Aq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_cave_cas) "AY" = ( /turf/open/floor, /area/bigred/ground/security) "AZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "EV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) "Ge" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/filtration_cave_cas) "Gm" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "GJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_cave_cas) "HH" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_cave_cas) "Ih" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_cave_cas) "IS" = ( /obj/structure/filingcabinet, @@ -305,17 +244,11 @@ /turf/open/floor, /area/bigred/ground/security) "OD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) "OM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/filtration_cave_cas) "Pf" = ( /obj/effect/decal/cleanable/blood, @@ -332,9 +265,7 @@ id = "filtration"; name = "Filtration Lockdown" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) "Qo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -354,16 +285,10 @@ /area/bigred/ground/security) "Ue" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "Vg" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_cave_cas) "Vn" = ( /obj/structure/surface/table/almayer, @@ -376,16 +301,10 @@ /turf/open/floor, /area/bigred/ground/security) "Wa" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/se) "XU" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/filtration_cave_cas) "Yo" = ( /obj/structure/surface/rack, @@ -402,10 +321,7 @@ "Zu" = ( /obj/effect/landmark/hunter_primary, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/filtration_cave_cas) "ZK" = ( /obj/effect/landmark/crap_item, diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm index ad059bf053f2..c473dc6b8580 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm @@ -18,9 +18,7 @@ /area/bigredv2/caves_north) "av" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/caves_north) "aw" = ( /turf/closed/shuttle/ert{ @@ -47,7 +45,7 @@ /area/bigredv2/outside/general_offices) "aE" = ( /obj/structure/computerframe, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "aF" = ( /turf/closed/shuttle/ert{ @@ -73,26 +71,18 @@ "aL" = ( /obj/structure/machinery/washing_machine, /obj/item/clothing/under/darkred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "aM" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "aN" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "aO" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "aP" = ( /turf/closed/shuttle/ert{ @@ -116,7 +106,7 @@ "aU" = ( /obj/structure/surface/rack, /obj/item/map/big_red_map, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "aV" = ( /turf/closed/shuttle/ert{ @@ -124,20 +114,14 @@ }, /area/bigredv2/outside/general_offices) "aW" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) "aX" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/general_offices) "aY" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "aZ" = ( /obj/structure/window_frame/solaris, @@ -149,32 +133,22 @@ /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bb" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bc" = ( /obj/structure/surface/rack, /obj/item/device/mass_spectrometer/adv, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bd" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "be" = ( /obj/item/clothing/under/darkred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "bf" = ( /turf/open/floor/plating, @@ -184,7 +158,7 @@ /turf/open/shuttle/dropship/can_surgery, /area/bigredv2/outside/general_offices) "bh" = ( -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "bi" = ( /obj/item/paper/crumpled/bloody, @@ -195,32 +169,26 @@ /area/bigredv2/outside/general_offices) "bj" = ( /obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "bk" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "bl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bm" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Dormitories EVA" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bo" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Dormitories Lavatory" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "bp" = ( /obj/structure/surface/table, @@ -229,7 +197,7 @@ /area/bigredv2/outside/general_offices) "bq" = ( /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "br" = ( /turf/closed/shuttle/ert{ @@ -240,7 +208,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "bt" = ( /obj/effect/decal/cleanable/blood, @@ -249,7 +217,7 @@ /area/bigredv2/outside/general_offices) "bu" = ( /obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "bv" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -259,7 +227,7 @@ dir = 1; icon_state = "gib6" }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "bw" = ( /turf/closed/shuttle/ert{ @@ -271,33 +239,25 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 25 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "by" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/uranium{ amount = 50 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bz" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) "bA" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/general_offices) "bD" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/general_offices) "bE" = ( /turf/closed/shuttle/ert{ @@ -318,29 +278,21 @@ /area/bigredv2/outside/general_offices) "bH" = ( /obj/structure/dispenser/oxygen, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bK" = ( /obj/structure/machinery/washing_machine, /obj/item/clothing/under/lightbrown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "bL" = ( /obj/structure/machinery/washing_machine, /obj/item/clothing/under/brown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) "bM" = ( /turf/closed/shuttle/ert{ @@ -354,15 +306,11 @@ /area/bigredv2/outside/general_offices) "bO" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bP" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bQ" = ( /obj/effect/decal/cleanable/dirt, @@ -370,15 +318,11 @@ /obj/item/stack/sheet/mineral/uranium{ amount = 50 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bR" = ( /obj/item/stack/sheet/plasteel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bS" = ( /obj/structure/machinery/light{ @@ -392,21 +336,15 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 25 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "bT" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bU" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/general_offices) "bV" = ( /obj/structure/surface/rack, @@ -419,27 +357,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bX" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bY" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "bZ" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "ca" = ( /turf/closed/shuttle/ert{ @@ -449,7 +379,7 @@ "cb" = ( /obj/structure/surface/rack, /obj/item/xeno_restraints, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "cc" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, @@ -459,7 +389,7 @@ /area/bigredv2/outside/general_offices) "ce" = ( /obj/structure/surface/rack, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "cf" = ( /turf/closed/shuttle/ert{ @@ -468,15 +398,11 @@ /area/bigredv2/outside/general_offices) "cg" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "ch" = ( /obj/structure/closet/l3closet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "ci" = ( /obj/structure/surface/rack, @@ -486,9 +412,7 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "cj" = ( /obj/effect/decal/cleanable/dirt, @@ -531,9 +455,7 @@ "cr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "cs" = ( /turf/closed/shuttle/ert{ @@ -544,7 +466,7 @@ "cu" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/remains, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "cv" = ( /turf/closed/shuttle/ert{ @@ -555,23 +477,17 @@ "cw" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/gold, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "cx" = ( /obj/structure/machinery/camera/autoname, /obj/item/stack/sheet/plasteel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "cy" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/diamond, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "cA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -581,9 +497,7 @@ /area/bigredv2/outside/general_offices) "cB" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/general_offices) "cC" = ( /turf/closed/shuttle/ert{ @@ -645,15 +559,11 @@ dir = 8; health = 25000 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/general_offices) "cN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/ne) "cO" = ( /obj/structure/window/framed/solaris, @@ -674,9 +584,7 @@ /area/bigredv2/outside/general_offices) "cU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves_north) "cV" = ( /obj/item/stack/sheet/metal, @@ -684,45 +592,32 @@ /area/bigredv2/caves_north) "cW" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/general_offices) "cX" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "cY" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/general_offices) "cZ" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) "dc" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "dd" = ( /obj/structure/machinery/light, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/general_offices) "de" = ( /obj/effect/decal/cleanable/dirt, @@ -730,15 +625,11 @@ dir = 1; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "df" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "di" = ( /obj/structure/bed/chair{ @@ -751,77 +642,53 @@ dir = 1; name = "\improper Dormitories Bedroom" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) "dk" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/general_offices) "dl" = ( /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "dm" = ( -/turf/open/floor/plating{ - icon_state = "wood" - }, +/turf/open/floor/plating/wood, /area/bigredv2/outside/general_offices) "dn" = ( /obj/structure/surface/table, -/turf/open/floor/plating{ - icon_state = "wood" - }, +/turf/open/floor/plating/wood, /area/bigredv2/outside/general_offices) "do" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken5" - }, +/turf/open/floor/plating/wood_broken5, /area/bigredv2/outside/general_offices) "dp" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) "dq" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken6" - }, +/turf/open/floor/plating/wood_broken6, /area/bigredv2/outside/general_offices) "dr" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken3" - }, +/turf/open/floor/plating/wood_broken3, /area/bigredv2/outside/general_offices) "ds" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "dt" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/ne) "du" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/ne) "dx" = ( /turf/closed/wall/solaris, @@ -830,176 +697,125 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "wood" - }, +/turf/open/floor/plating/wood, /area/bigredv2/outside/general_offices) "dz" = ( /obj/structure/bed, -/turf/open/floor/plating{ - icon_state = "wood" - }, +/turf/open/floor/plating/wood, /area/bigredv2/outside/general_offices) "dA" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "wood-broken2" - }, +/turf/open/floor/plating/wood_broken2, /area/bigredv2/outside/general_offices) "dB" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) "dC" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "wood-broken3" - }, +/turf/open/floor/plating/wood_broken3, /area/bigredv2/outside/general_offices) "dD" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken4" - }, +/turf/open/floor/plating/wood_broken4, /area/bigredv2/outside/general_offices) "dE" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/ne) "dS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/ne) "dT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/ne) "dU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/ne) "dV" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/ne) "eb" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/hydroponics) "ec" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "ed" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/hydroponics) "ee" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "ef" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/hydroponics) "eg" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) "em" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "en" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "eA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "eB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "eC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "eF" = ( /turf/template_noop, /area/template_noop) "eI" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "eJ" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "eK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) "eL" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1009,34 +825,23 @@ /area/bigredv2/outside/general_offices) "eM" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/general_offices) "eN" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/ne) "eO" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) "oB" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) "xT" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_north) "EO" = ( /turf/closed/shuttle/ert{ @@ -1045,20 +850,16 @@ /area/bigredv2/outside/general_offices) "IB" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) "Kf" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) "Zt" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm index 0a52f3f9d17d..783caff03343 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm @@ -1,73 +1,43 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ab" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/e) "ac" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) "ad" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/c) "ae" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "ag" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/e) "ah" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "ai" = ( /turf/open/mars, /area/bigredv2/outside/e) "aj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/e) "ak" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/e) "al" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/e) "am" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/e) "an" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/c) "ao" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/c) "ap" = ( /turf/closed/wall/solaris, @@ -77,14 +47,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Office Complex" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "ar" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "as" = ( /obj/structure/window/framed/solaris, @@ -95,30 +61,21 @@ /turf/open/floor/plating, /area/bigredv2/outside/office_complex) "at" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/e) "au" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) "av" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "aw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "ax" = ( /obj/structure/window_frame/solaris, @@ -127,9 +84,7 @@ /area/bigredv2/outside/office_complex) "ay" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "az" = ( /obj/structure/bed/chair/comfy/black{ @@ -142,22 +97,14 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "aA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/e) "aB" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "aC" = ( /turf/closed/shuttle/ert{ @@ -175,38 +122,24 @@ }, /area/bigredv2/outside/office_complex) "aF" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "aG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "aH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "aI" = ( /obj/structure/machinery/robotic_fabricator, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aJ" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aK" = ( /obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aL" = ( /obj/effect/decal/mecha_wreckage/ripley/firefighter, @@ -214,9 +147,7 @@ /area/bigredv2/outside/office_complex) "aM" = ( /obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "aN" = ( /turf/closed/shuttle/ert{ @@ -230,7 +161,7 @@ /area/bigredv2/outside/office_complex) "aP" = ( /obj/structure/computerframe, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "aQ" = ( /turf/closed/shuttle/ert{ @@ -238,14 +169,10 @@ }, /area/bigredv2/outside/office_complex) "aR" = ( -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) "aS" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "aT" = ( /turf/closed/shuttle/ert{ @@ -255,10 +182,10 @@ "aU" = ( /obj/structure/surface/rack, /obj/item/xeno_restraints, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "aV" = ( -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "aW" = ( /obj/structure/bed/chair/dropship/pilot{ @@ -282,9 +209,7 @@ /area/bigredv2/outside/office_complex) "aZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "ba" = ( /obj/structure/window_frame/solaris, @@ -298,18 +223,14 @@ dir = 8 }, /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "bc" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "bd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "be" = ( /turf/open/floor, @@ -322,23 +243,17 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/hotdog, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/folder/black, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bj" = ( /turf/closed/shuttle/ert{ @@ -361,7 +276,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "bq" = ( /turf/closed/shuttle/ert{ @@ -372,9 +287,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "bs" = ( /obj/structure/machinery/light{ @@ -388,36 +301,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "bu" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "bw" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bx" = ( /obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "by" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "bz" = ( /turf/closed/shuttle/ert{ @@ -431,29 +333,21 @@ /area/bigredv2/outside/office_complex) "bB" = ( /obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) "bC" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bD" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "bF" = ( /turf/closed/shuttle/ert{ @@ -474,9 +368,7 @@ /area/bigredv2/outside/office_complex) "bI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) "bJ" = ( /obj/structure/machinery/door/airlock/almayer/generic, @@ -489,16 +381,12 @@ /area/bigredv2/outside/office_complex) "bL" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bM" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bN" = ( /obj/structure/window_frame/solaris, @@ -508,16 +396,12 @@ "bO" = ( /obj/item/device/analyzer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "bQ" = ( /obj/effect/decal/cleanable/dirt, @@ -525,27 +409,20 @@ /area/bigredv2/outside/office_complex) "bR" = ( /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "bS" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "bT" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "bU" = ( /obj/structure/bed/chair{ @@ -555,28 +432,19 @@ /area/bigredv2/outside/office_complex) "bV" = ( /obj/structure/machinery/autolathe, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "bX" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) "bY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "bZ" = ( /obj/structure/surface/table, @@ -584,37 +452,27 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "ca" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cb" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "cd" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/mass_spectrometer/adv, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "ce" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -623,127 +481,89 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Office Complex Storage" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cf" = ( /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "cg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "ch" = ( -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) "ci" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cj" = ( /obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "ck" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "co" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Office Complex Janitor Room" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "cp" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "cq" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cs" = ( /obj/effect/decal/cleanable/blood/gibs/down, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cu" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "cv" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin10"; - supports_surgery = 1 - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top, /area/bigredv2/outside/office_complex) "cw" = ( /obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{ desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it."; name = "smashed NSG 23 assault rifle" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin12"; - supports_surgery = 1 - }, +/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom, /area/bigredv2/outside/office_complex) "cx" = ( /obj/effect/spawner/gibspawner/human, @@ -755,36 +575,25 @@ "cy" = ( /obj/structure/janitorialcart, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cz" = ( /obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "cA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "cB" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cC" = ( /obj/effect/spawner/random/tech_supply, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "cD" = ( /turf/closed/shuttle/ert{ @@ -812,9 +621,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cI" = ( /obj/structure/surface/table, @@ -823,24 +630,18 @@ dir = 4 }, /obj/item/device/healthanalyzer, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "cJ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cK" = ( /obj/item/frame/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) "cL" = ( /turf/closed/shuttle/ert{ @@ -867,16 +668,11 @@ "cP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "cQ" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cR" = ( /obj/structure/window_frame/solaris, @@ -885,9 +681,7 @@ "cS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "cT" = ( /turf/closed/shuttle/ert{ @@ -903,40 +697,25 @@ /area/bigredv2/outside/office_complex) "cV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) "cW" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "cX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "cY" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "cZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "da" = ( /obj/effect/decal/cleanable/dirt, @@ -945,9 +724,7 @@ "db" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "dc" = ( /turf/closed/shuttle/ert{ @@ -967,17 +744,12 @@ pixel_y = -27 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "df" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "dg" = ( /turf/closed/shuttle/ert{ @@ -995,9 +767,7 @@ }, /area/bigredv2/outside/office_complex) "dj" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) "dk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -1007,9 +777,7 @@ /area/bigredv2/outside/office_complex) "dl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "dm" = ( /turf/closed/shuttle/ert{ @@ -1029,22 +797,15 @@ /area/bigredv2/outside/se) "dp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "dq" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "dr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) "ds" = ( /obj/effect/decal/cleanable/dirt, @@ -1053,34 +814,22 @@ "dt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/se) "du" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/se) "dv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/se) "dw" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/se) "dx" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/se) "dz" = ( /obj/effect/spawner/gibspawner/human, @@ -1091,7 +840,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dB" = ( /obj/effect/decal/cleanable/blood, @@ -1099,16 +848,12 @@ /area/bigredv2/outside/office_complex) "dC" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) "dD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "dE" = ( /obj/effect/decal/cleanable/blood{ @@ -1129,10 +874,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin10"; - supports_surgery = 1 - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top, /area/bigredv2/outside/office_complex) "dH" = ( /obj/effect/decal/cleanable/blood, @@ -1143,7 +885,7 @@ /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/nsg23, /obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dJ" = ( /obj/effect/decal/cleanable/blood{ @@ -1153,18 +895,16 @@ /area/bigredv2/outside/office_complex) "dK" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "dL" = ( /obj/structure/surface/rack, /obj/item/device/binoculars, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dM" = ( /obj/structure/surface/rack, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dN" = ( /obj/structure/surface/rack, @@ -1172,19 +912,17 @@ /obj/item/ammo_magazine/pistol/rubber, /obj/item/ammo_magazine/pistol/rubber, /obj/item/ammo_magazine/pistol/rubber, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dO" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "dP" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dQ" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -1192,188 +930,145 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dR" = ( /obj/structure/surface/rack, /obj/item/map/big_red_map, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dS" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dT" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "dU" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "dV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "dW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) "dX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) "dY" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) "dZ" = ( /obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) "ea" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "eb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "ec" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "ed" = ( /obj/item/frame/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "ee" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "ef" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "eg" = ( /obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) "eh" = ( /obj/item/device/multitool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "ei" = ( /obj/structure/janitorialcart, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "ej" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/syndi_cakes, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) "ek" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "el" = ( /obj/item/clothing/shoes/galoshes, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) "em" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/lighter/random, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) "fv" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "fG" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, /obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "hN" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "id" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "jx" = ( /obj/effect/decal/cleanable/blood{ @@ -1386,22 +1081,20 @@ "nE" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "oF" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/item/clothing/under/marine/veteran/pmc, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "qX" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/pmc, /obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "rF" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -1412,7 +1105,7 @@ /obj/item/clothing/head/helmet/marine/veteran/pmc, /obj/item/clothing/under/marine/veteran/pmc, /obj/item/clothing/head/helmet/marine/veteran/pmc, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "rK" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -1420,7 +1113,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "si" = ( /obj/item/clothing/head/helmet/marine/veteran/pmc, @@ -1450,7 +1143,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "AB" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -1462,7 +1155,7 @@ name = "dented M4A3 service pistol" }, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "Bu" = ( /obj/effect/decal/cleanable/blood, @@ -1477,7 +1170,7 @@ dir = 8 }, /obj/item/limb/hand/l_hand, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "GG" = ( /obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ @@ -1488,37 +1181,31 @@ /area/bigredv2/outside/office_complex) "Ha" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/se) "Lk" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "NK" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/rubber, /obj/item/ammo_magazine/rifle/rubber, /obj/item/ammo_magazine/rifle/rubber, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "PR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/se) "Qc" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, /obj/effect/landmark/survivor_spawner/bigred_crashed_cl, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) "Vg" = ( /obj/effect/landmark/objective_landmark/medium, @@ -1529,7 +1216,7 @@ dir = 4 }, /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm index 104546cbd8ed..d191e7b68068 100644 --- a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm +++ b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm @@ -1,76 +1,49 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) "b" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "c" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "d" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/lambda/virology) "e" = ( -/turf/open/floor/bluegrid{ - icon_state = "damaged3" - }, +/turf/open/floor/bluegrid/damaged3, /area/bigredv2/caves/lambda/virology) "f" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) "g" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/lambda/virology) "h" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) "i" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "j" = ( -/turf/open/floor/bluegrid{ - icon_state = "damaged5" - }, +/turf/open/floor/bluegrid/damaged5, /area/bigredv2/caves/lambda/virology) "k" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/lambda/virology) "l" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "m" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "n" = ( /turf/closed/wall/solaris/reinforced, @@ -81,72 +54,45 @@ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "p" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) "q" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "r" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "w" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "F" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_lambda) "H" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_lambda) "I" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/bigredv2/caves_lambda) "K" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "O" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_lambda) "P" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "X" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_lambda) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm index d7710b7a0bed..8bf2e282de1f 100644 --- a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm +++ b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm @@ -1,23 +1,17 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "b" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "c" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "g" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm index 8dc12acf8d53..47964ff5ea79 100644 --- a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm +++ b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm @@ -3,33 +3,23 @@ /turf/open/mars, /area/bigredv2/outside/se) "e" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "f" = ( /obj/item/stool, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "g" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/se) "h" = ( /obj/structure/flora/bush/ausbushes{ cut_level = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/se) "i" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/se) "j" = ( /obj/item/trash/cigbutt{ @@ -50,19 +40,13 @@ /turf/open/mars, /area/bigredv2/outside/se) "l" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/se) "m" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/se) "n" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/se) "o" = ( /turf/closed/wall/solaris/rock, diff --git a/maps/map_files/BigRed/standalone/medbay-passage.dmm b/maps/map_files/BigRed/standalone/medbay-passage.dmm index d5b7db11d82b..9dc1327ab65c 100644 --- a/maps/map_files/BigRed/standalone/medbay-passage.dmm +++ b/maps/map_files/BigRed/standalone/medbay-passage.dmm @@ -4,59 +4,36 @@ /area/template_noop) "c" = ( /obj/structure/sign/safety/medical{ - pixel_x = 0; pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "d" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "e" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "f" = ( /obj/structure/sign/safety/medical{ - pixel_x = 0; pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "h" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "i" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "l" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "m" = ( /obj/effect/decal/cleanable/dirt, @@ -65,20 +42,14 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "n" = ( /obj/structure/stairs/perspective{ dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "w" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -86,10 +57,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "R" = ( /turf/closed/wall/solaris/reinforced, @@ -99,24 +67,17 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "T" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "X" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm index 80397d168ba7..8f90727068d6 100644 --- a/maps/map_files/BigRed/standalone/medbay-v3.dmm +++ b/maps/map_files/BigRed/standalone/medbay-v3.dmm @@ -4,9 +4,7 @@ /area/bigredv2/outside/medical) "ab" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/medical) "ac" = ( /obj/structure/window_frame/solaris, @@ -19,39 +17,26 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical Clinic" }, -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/north, /area/bigredv2/outside/medical) "ae" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/north, /area/bigredv2/outside/medical) "af" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/medical) "ag" = ( /obj/structure/closet/secure_closet/chemical, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "ah" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ai" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "aj" = ( /obj/structure/window_frame/solaris, @@ -59,36 +44,23 @@ /turf/open/floor/plating, /area/bigredv2/outside/medical) "ak" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "al" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "am" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "an" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "ao" = ( /obj/structure/machinery/chem_master, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "ap" = ( /obj/structure/window/framed/solaris, @@ -97,76 +69,49 @@ "aq" = ( /obj/structure/closet/secure_closet/CMO, /obj/item/device/healthanalyzer, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "ar" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "as" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "aw" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "ax" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "ay" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/trash/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "az" = ( /obj/structure/bed, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "aA" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "aB" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aC" = ( /obj/structure/bed/chair/office/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aD" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aE" = ( /obj/structure/surface/table, @@ -175,22 +120,15 @@ }, /obj/item/storage/box/beakers, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "aF" = ( /obj/structure/machinery/computer/med_data, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "aH" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "aI" = ( /obj/structure/bed/roller, @@ -198,122 +136,79 @@ dir = 1 }, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aJ" = ( /obj/item/device/defibrillator, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, -/obj/item/stack/sheet/metal{ - amount = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "aL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "aN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "aO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "aP" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "aQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "aR" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "aS" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "aT" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "aU" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "aV" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "aX" = ( /obj/structure/window_frame/solaris, /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "aY" = ( /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "aZ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/explosive/grenade/custom/large, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ba" = ( /obj/structure/surface/table, @@ -321,90 +216,60 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "bb" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "bd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bf" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "bg" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "bh" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) "bi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "bj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bk" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "bl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bm" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -412,98 +277,66 @@ dir = 1; name = "\improper Medical Clinic" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "bp" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bq" = ( /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "br" = ( /obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "bs" = ( /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bt" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "bu" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "bv" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "bw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) "bx" = ( /obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "by" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bz" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) "bA" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bB" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -512,65 +345,45 @@ icon_state = "coil2" }, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bD" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "bE" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bG" = ( /obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "bH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "bI" = ( /obj/item/shard, /obj/item/frame/table, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "bJ" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bK" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bL" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "bM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -580,61 +393,42 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "bN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "bO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) "bP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bQ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "bR" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "bS" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Scanner Room" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "bT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "bV" = ( /obj/effect/decal/cleanable/dirt, @@ -645,41 +439,29 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "bX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) "bY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "bZ" = ( /obj/structure/window_frame/solaris, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ca" = ( /obj/structure/window_frame/solaris, /obj/item/shard, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cb" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "cc" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -687,21 +469,15 @@ dir = 1; name = "\improper Medical Clinic CMO's Office" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cd" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ce" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/medical) "cf" = ( /obj/effect/decal/cleanable/blood{ @@ -711,36 +487,25 @@ name = "\improper Medical Clinic" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "cg" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ch" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ci" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "ck" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -748,31 +513,22 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "cl" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "co" = ( /obj/structure/window_frame/solaris, @@ -782,81 +538,52 @@ "cp" = ( /obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cq" = ( /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "cr" = ( /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "cs" = ( /obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "ct" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "cv" = ( /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "cw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "cx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "cy" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "cz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "cA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -866,9 +593,7 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "cB" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -878,20 +603,14 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "cC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "cD" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -902,10 +621,7 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "cE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -916,16 +632,11 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "cF" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) "cH" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -933,10 +644,7 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "cI" = ( /obj/effect/decal/cleanable/blood, @@ -947,10 +655,7 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "cJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -960,10 +665,7 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "cK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -976,10 +678,7 @@ icon_state = "coil2" }, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "cL" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -987,17 +686,13 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "cM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "cN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1007,38 +702,26 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "cR" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "cS" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/tramadol, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cT" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "cU" = ( /obj/effect/decal/cleanable/blood, @@ -1046,55 +729,38 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "cV" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "cW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "cX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "cY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "cZ" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "db" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1103,33 +769,23 @@ /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dd" = ( /obj/item/stack/rods, /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "df" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "dg" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "dh" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "di" = ( /obj/effect/decal/cleanable/dirt, @@ -1139,32 +795,23 @@ /area/bigredv2/outside/medical) "dj" = ( /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "dk" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dl" = ( /obj/structure/bed/chair, /obj/structure/sign/nosmoking_2{ pixel_x = -28 }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "dm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "dn" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1175,51 +822,37 @@ icon_state = "coil2" }, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "do" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dp" = ( /obj/structure/sign/safety/autodoc{ pixel_x = 32 }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "dq" = ( /obj/structure/sign/safety/autodoc{ pixel_x = -32 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "dr" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "ds" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dt" = ( /obj/effect/decal/cleanable/dirt, @@ -1232,72 +865,50 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "du" = ( /obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "dv" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "dw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/metal{ - amount = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "dy" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dz" = ( /obj/structure/machinery/camera/autoname{ network = list("interrogation") }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "dA" = ( /obj/structure/bed/roller, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "dB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "dC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1305,53 +916,39 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "dD" = ( /obj/structure/surface/table, /obj/item/device/autopsy_scanner, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "dE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dF" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1359,141 +956,97 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "dL" = ( /obj/item/stack/sheet/metal, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dM" = ( /obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dN" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dP" = ( /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "dR" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "dS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "dT" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dU" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "dV" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "dW" = ( /obj/structure/machinery/body_scanconsole, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) "dX" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "dY" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) "dZ" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "ea" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "eb" = ( /obj/structure/machinery/medical_pod/sleeper, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ec" = ( /obj/structure/closet/secure_closet/medical1, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ed" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "ee" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ef" = ( /obj/structure/sink{ @@ -1503,39 +1056,28 @@ pixel_y = 2 }, /obj/item/tool/surgery/scalpel/manager, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "eg" = ( /obj/item/device/healthanalyzer, /obj/structure/pipes/vents/pump, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "eh" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/medical) "ei" = ( /obj/structure/machinery/sleep_console, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ej" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "ek" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1544,9 +1086,7 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Storage" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "el" = ( /obj/item/clothing/glasses/meson, @@ -1554,26 +1094,20 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "em" = ( /obj/item/reagent_container/pill/happy, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "en" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Storage" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "eo" = ( /obj/structure/machinery/vending/snack, @@ -1581,46 +1115,32 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ep" = ( /obj/structure/bed/chair, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "eq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "er" = ( /obj/structure/bed/chair, /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "es" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "et" = ( /obj/item/reagent_container/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eu" = ( /obj/effect/decal/cleanable/dirt, @@ -1629,48 +1149,32 @@ name = "Storm Shutters"; pixel_y = -32 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ev" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "ew" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "ex" = ( /obj/structure/surface/table, /obj/item/storage/box/masks, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "ey" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) "ez" = ( /obj/item/device/healthanalyzer, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "eA" = ( /obj/structure/sign/safety/medical{ @@ -1678,25 +1182,19 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/surgery/blue, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "eB" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "eC" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/item/trash/kepler, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "eD" = ( /obj/structure/surface/table/reinforced, @@ -1704,180 +1202,123 @@ phone_category = "Solaris Ridge"; phone_id = "Clinic Reception" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eE" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "eF" = ( /obj/structure/closet/secure_closet/medical1, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "eG" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "eH" = ( /obj/structure/machinery/optable, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/wygoon, /obj/item/reagent_container/food/snacks/margheritaslice, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eI" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "eJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "eK" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/surgery/bonesetter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eL" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "eM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "eN" = ( /obj/effect/decal/cleanable/blood, /obj/item/reagent_container/food/snacks/margheritaslice, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eO" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "eP" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "eQ" = ( /obj/structure/surface/table, /obj/item/trash/burger, /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/outside/medical) "eR" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eS" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "eT" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "eU" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/medical) "eV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical Clinic" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eW" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "eX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "eY" = ( /obj/structure/bed, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) "eZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "fa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1886,32 +1327,23 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Operating Theatre" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) "fb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "fc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "fd" = ( /obj/item/reagent_container/pill/happy, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "fe" = ( /obj/structure/sink{ @@ -1919,37 +1351,26 @@ icon_state = "sink"; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "ff" = ( /obj/item/clothing/mask/breath/medical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "fg" = ( /obj/item/stack/sheet/metal, /obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) "fh" = ( /obj/structure/surface/table/reinforced, /obj/item/trash/buritto, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) "fj" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) "fk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1957,111 +1378,74 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "fl" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "fm" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) "fn" = ( /obj/structure/bed, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "fo" = ( /obj/structure/machinery/light, /obj/item/tool/surgery/cautery, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) "fp" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "fq" = ( /obj/structure/bed, /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "fr" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "fs" = ( /obj/item/frame/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) "gS" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "hn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/medical) "om" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) "CW" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) "DL" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) "GP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) "MK" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) "Xh" = ( /obj/structure/transmitter/colony_net{ @@ -2070,10 +1454,7 @@ phone_id = "Clinic Labs"; pixel_y = 24 }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) (1,1,1) = {" diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index 28db8fa8831f..f335e4c41e8b 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -30,27 +30,19 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "aag" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "aah" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "1" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "aai" = ( /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aaj" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -63,10 +55,7 @@ /turf/open/floor/plating, /area/corsat/gamma/residential/east) "aam" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/office) "aan" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -91,50 +80,35 @@ /turf/open/floor/plating, /area/corsat/gamma/sigmaremote) "aas" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) "aat" = ( /obj/structure/surface/rack, /obj/structure/prop/mech/drill, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "aau" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) "aav" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) "aaw" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "aax" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/sigmaremote) "aay" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/gamma/sigmaremote) "aaz" = ( /obj/structure/window/framed/corsat/research, @@ -144,10 +118,7 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "2" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "aaB" = ( /obj/structure/surface/table/woodentable, @@ -163,14 +134,10 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/security) "aaD" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "aaE" = ( /obj/structure/window/framed/corsat/hull, @@ -182,17 +149,13 @@ name = "CORSAT Armory"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/armory) "aaG" = ( /turf/open/floor/plating, /area/corsat/gamma/hangar) "aaH" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "aaI" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, @@ -203,79 +166,47 @@ /turf/open/floor/plating, /area/corsat/gamma/hangar) "aaK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/corsat/gamma/sigmaremote) "aaL" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/corsat/gamma/sigmaremote) "aaM" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/gamma/hangar) "aaN" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/corsat/gamma/hangar) "aaO" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) "aaP" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/corsat/gamma/hangar) "aaQ" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/gamma/hangar) "aaR" = ( /obj/structure/machinery/landinglight/ds1, /turf/open/floor/plating, /area/corsat/gamma/hangar) "aaS" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/gamma/hangar) "aaU" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/gamma/hangar) "aaV" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/gamma/hangar) "aaW" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "3" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "aaX" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -283,10 +214,7 @@ /area/corsat/gamma/hangar) "aaY" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/gamma/hangar) "aaZ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -339,35 +267,25 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/gamma/hangar) "abk" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/gamma/hangar) "abl" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) "abm" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) "abn" = ( /obj/structure/surface/rack, @@ -377,33 +295,21 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/security/armory) "abo" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/gamma/hangar) "abp" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/gamma/hangar) "abq" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "4" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "abr" = ( /obj/structure/bed/chair/wood/normal{ @@ -435,9 +341,7 @@ /obj/structure/surface/rack, /obj/item/cell/hyper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "abx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -447,17 +351,13 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/gamma/hangar) "abz" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/gamma/hangar) "abA" = ( /turf/closed/wall/r_wall/biodome, @@ -466,19 +366,13 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) "abC" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) "abD" = ( /turf/closed/wall/biodome, @@ -517,10 +411,7 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "7" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "abL" = ( /obj/structure/bookcase{ @@ -547,16 +438,10 @@ /turf/closed/wall/biodome, /area/corsat/gamma/residential/researcher) "abQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/researcher) "abR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "abS" = ( /obj/structure/window/framed/corsat, @@ -573,43 +458,28 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "abU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "abV" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/corsat/gamma/hangar) "abX" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/corsat/gamma/hangar) "abY" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/corsat/gamma/hangar) "abZ" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/corsat/gamma/hangar) "aca" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/corsat/gamma/hangar) "acc" = ( /obj/structure/closet/cabinet, @@ -630,29 +500,20 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) "acf" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) "acg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "Bathroom" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "ach" = ( /obj/structure/bed, @@ -669,25 +530,17 @@ dir = 1 }, /obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "acj" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "ack" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/east) "acl" = ( /obj/structure/machinery/light{ @@ -696,10 +549,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "acm" = ( /obj/structure/machinery/shower{ @@ -709,10 +559,7 @@ dir = 1; layer = 2.8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "acn" = ( /obj/structure/machinery/landinglight/ds1{ @@ -730,19 +577,13 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/gamma/hangar) "acq" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/gamma/hangar) "acr" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -754,19 +595,13 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/gamma/hangar) "act" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/gamma/hangar) "acu" = ( /obj/structure/bookcase/manuals/research_and_development, @@ -786,29 +621,20 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "acx" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "acy" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "8" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "acz" = ( /obj/structure/coatrack, @@ -829,35 +655,22 @@ /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "acC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/foyer) "acD" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "acE" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/foyer) "acF" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar) "acG" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "acH" = ( /obj/structure/bed/chair/office/dark, @@ -874,18 +687,13 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "5" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "acK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "acL" = ( /obj/structure/window/framed/corsat/hull, @@ -898,56 +706,38 @@ /turf/closed/wall/biodome, /area/corsat/gamma/residential/lounge) "acO" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) "acP" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hallwaysouth) "acQ" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "acR" = ( /obj/structure/machinery/light, /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "acS" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) "acT" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "acU" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "6" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "acV" = ( /obj/structure/window/framed/corsat, @@ -962,19 +752,13 @@ dir = 1 }, /obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "acX" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "10" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "acY" = ( /obj/structure/surface/rack, @@ -986,19 +770,13 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "11" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "ada" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "12" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "adb" = ( /turf/closed/wall/r_wall/biodome, @@ -1011,44 +789,29 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security/armory) "add" = ( /turf/closed/wall/biodome, /area/corsat/sigma/cafe) "ade" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "adf" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "13" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "adg" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "adh" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential/east) "adi" = ( /obj/structure/surface/table/woodentable, @@ -1066,18 +829,12 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "14" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "adl" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) "adm" = ( /obj/structure/bed/chair/wood/normal, @@ -1093,16 +850,10 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/residential/east) "adp" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "adq" = ( /obj/structure/window/framed/corsat/hull/security, @@ -1124,9 +875,7 @@ /area/corsat/sigma/cafe) "adu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/security) "adv" = ( /obj/structure/surface/table/woodentable, @@ -1139,10 +888,7 @@ /obj/item/ammo_magazine/smg/mp5, /obj/item/weapon/gun/smg/mp5, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security/armory) "adx" = ( /obj/structure/surface/table/woodentable, @@ -1151,14 +897,10 @@ /area/corsat/gamma/residential/east) "ady" = ( /obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/checkpoint) "adz" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "adA" = ( /obj/structure/surface/table/reinforced, @@ -1168,26 +910,19 @@ /obj/structure/machinery/door/window/brigdoor/eastleft{ name = "Identification Desk" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/checkpoint) "adB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "adC" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - icon_state = "spiralwoodalt" - }, +/turf/open/floor/corsat/spiralwoodalt, /area/corsat/gamma/residential/lounge) "adD" = ( /obj/structure/coatrack, @@ -1208,10 +943,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "adH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "adI" = ( /turf/closed/wall/r_wall/biodome, @@ -1223,10 +955,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) "adL" = ( /obj/structure/window/framed/corsat, @@ -1249,16 +978,10 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "adP" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "adQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -1280,20 +1003,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "adT" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) "adU" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "adV" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -1304,10 +1020,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar) "adX" = ( /obj/structure/fence, @@ -1320,24 +1033,16 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "adZ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/north, /area/corsat/gamma/residential) "aea" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) "aeb" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hangar/cargo) "aec" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "aed" = ( /obj/structure/surface/table/woodentable, @@ -1358,10 +1063,7 @@ /area/corsat/gamma/residential/east) "aeg" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/corsat/gamma/residential/lounge) "aei" = ( /obj/structure/bed, @@ -1385,10 +1087,7 @@ /turf/open/floor/plating, /area/corsat/gamma/hangar/cargo) "aem" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential) "aen" = ( /turf/open/mars, @@ -1398,36 +1097,25 @@ /area/corsat/gamma/biodome) "aep" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/residential/lounge) "aeq" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/corsat/gamma/residential/lounge) "aer" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/residential/lounge) "aes" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/arrivals) "aet" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/cargo) "aeu" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aev" = ( /obj/structure/window/reinforced{ @@ -1444,10 +1132,7 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "15" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "aex" = ( /obj/structure/window/framed/corsat/hull, @@ -1456,10 +1141,7 @@ "aey" = ( /obj/structure/bed/chair/comfy/beige, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/residential/lounge) "aez" = ( /obj/structure/surface/rack, @@ -1468,10 +1150,7 @@ /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/security/armory) "aeA" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -1480,67 +1159,37 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/cells) "aeB" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "aeC" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/arrivals) "aeD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/sigma/hangar/arrivals) "aeE" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/corsat/sigma/hangar) "aeF" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) "aeG" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/corsat/sigma/hangar) "aeH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "aeI" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar) "aeJ" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/hangar) "aeL" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/hangar) "aeM" = ( /turf/closed/wall/r_wall/biodome, @@ -1552,62 +1201,40 @@ "aeO" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/airlock/south/id) "aeP" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "aeQ" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/sigma/hangar) "aeR" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar) "aeS" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) "aeT" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "aeU" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar) "aeV" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "aeW" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) "aeX" = ( /obj/structure/surface/table/woodentable, @@ -1623,34 +1250,23 @@ }, /obj/structure/machinery/faxmachine, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security) "aeZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/airlock/south) "afa" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/cargo/disposal) "afb" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "afc" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hallwaysouth) "afd" = ( /obj/structure/window/framed/corsat/hull, @@ -1661,24 +1277,16 @@ /turf/open/floor/plating, /area/corsat/sigma/hangar/office) "aff" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/hangar) "afg" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/foyer) "afh" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "16" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "afi" = ( /turf/open/floor/plating, @@ -1687,10 +1295,7 @@ /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/corsat/gamma/residential/lounge) "afk" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, @@ -1702,31 +1307,19 @@ /area/corsat/sigma/hangar) "afm" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/hangar) "afn" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/hangar) "afo" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/hangar) "afp" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/hangar) "afq" = ( /obj/structure/machinery/landinglight/ds2, @@ -1736,33 +1329,21 @@ /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/residential/lounge) "afs" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/hangar) "aft" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/hangar) "afu" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "17" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "afv" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -1774,10 +1355,7 @@ /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/corsat/gamma/residential/lounge) "afy" = ( /obj/structure/surface/table/woodentable, @@ -1787,17 +1365,11 @@ /area/corsat/gamma/residential/east) "afz" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/north/id) "afA" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "afB" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -1821,43 +1393,30 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/sigma/hangar) "afF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/sigma/hangar) "afG" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) "afH" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) "afI" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/gamma/hangar/office) "afJ" = ( /turf/closed/wall/r_wall/biodome, @@ -1865,9 +1424,7 @@ "afK" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "afL" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -1882,26 +1439,16 @@ /turf/open/floor/plating, /area/corsat/sigma/hangar) "afN" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/corsat/sigma/hangar) "afP" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/corsat/sigma/hangar) "afQ" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/corsat/sigma/hangar) "afR" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "afS" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ @@ -1919,53 +1466,37 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "18" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "afV" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/sigma/hangar) "afW" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/sigma/hangar) "afX" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) "afY" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) "afZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hangar) "aga" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -1977,22 +1508,15 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "19" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "agd" = ( /obj/structure/window/reinforced, /obj/structure/platform, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "age" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) "agf" = ( /obj/structure/machinery/light{ @@ -2001,9 +1525,7 @@ /obj/structure/machinery/medical_pod/sleeper{ flags_atom = 18 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "agg" = ( /obj/structure/window/framed/corsat/security, @@ -2013,19 +1535,13 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "20" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "agi" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "agj" = ( /turf/closed/wall/r_wall/biodome, @@ -2041,78 +1557,51 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "agm" = ( /obj/structure/surface/table, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "agn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/hangar) "ago" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "22" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "agp" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "23" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "agq" = ( /obj/structure/machinery/atm{ pixel_x = -30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "agr" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "24" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "ags" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/hangar/security) "agt" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/security) "agu" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -2120,21 +1609,13 @@ name = "Laundry Unit" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "agv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/security) "agw" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "agx" = ( /obj/structure/window/framed/corsat, @@ -2144,40 +1625,27 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "25" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "agz" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "agA" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "agB" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "1" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "agC" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/north) "agD" = ( /obj/structure/window/framed/corsat/hull, @@ -2187,27 +1655,16 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "2" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "agF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/hallwaysouth) "agG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south) "agH" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "agI" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -2218,9 +1675,7 @@ name = "Airlock Control" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/airlock/north) "agK" = ( /turf/closed/wall/biodome, @@ -2232,59 +1687,37 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/residential) "agN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hallways) "agO" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "agP" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "3" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "agQ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "agR" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "agS" = ( /obj/structure/machinery/computer/teleporter_console/corsat{ dir = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "agT" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential) "agU" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -2292,9 +1725,7 @@ "agV" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/security) "agW" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -2303,9 +1734,7 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar) "agX" = ( /mob/living/simple_animal/hostile/carp{ @@ -2315,17 +1744,13 @@ melee_damage_lower = 0; melee_damage_upper = 0 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "agY" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "agZ" = ( /turf/closed/wall/r_wall/biodome, @@ -2336,18 +1761,13 @@ name = "Gamma Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "ahb" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "4" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -2357,82 +1777,55 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "ahd" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "ahe" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "5" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahf" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/checkpoint) "ahg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/id) "ahh" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "6" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahi" = ( /obj/structure/machinery/vending/shared_vending, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "ahj" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "7" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahk" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/sigmaremote) "ahl" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "ahm" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "ahn" = ( /turf/closed/wall/biodome, @@ -2441,27 +1834,19 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "ahp" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "ahq" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "ahr" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/north) "ahs" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -2470,9 +1855,7 @@ /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/engineering/atmos) "ahu" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "ahv" = ( /obj/structure/window/reinforced{ @@ -2494,9 +1877,7 @@ "ahx" = ( /obj/structure/computerframe, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "ahy" = ( /obj/structure/window/reinforced{ @@ -2526,18 +1907,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "ahD" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ name = "Cargo Bay"; req_one_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "ahE" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -2546,14 +1923,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "ahG" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/south) "ahH" = ( /obj/structure/surface/table/reinforced, @@ -2578,66 +1951,44 @@ pixel_y = 2; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/cargo) "ahI" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "8" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahJ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "ahK" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "9" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/cargo) "ahM" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/id) "ahN" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "ahO" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "ahP" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/residential) "ahQ" = ( /turf/closed/wall/r_wall/biodome, @@ -2651,10 +2002,7 @@ pixel_y = 2; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/office) "ahS" = ( /obj/structure/window/framed/corsat, @@ -2664,19 +2012,13 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "10" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahU" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "11" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ahV" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -2685,9 +2027,7 @@ name = "Hangar Security"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "ahW" = ( /turf/open/floor/plating, @@ -2704,15 +2044,10 @@ }, /obj/item/weapon/gun/flamer, /obj/item/explosive/grenade/incendiary, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/hangar/security) "ahZ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "aia" = ( /turf/closed/shuttle/ert{ @@ -2720,9 +2055,7 @@ }, /area/prison/hangar_storage/research/shuttle) "aib" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "aic" = ( /obj/structure/surface/table/reinforced, @@ -2731,15 +2064,10 @@ name = "Checkpoint Control"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "aid" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) "aie" = ( /turf/closed/shuttle/ert{ @@ -2750,16 +2078,11 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "12" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "aig" = ( /obj/structure/machinery/computer3, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "aih" = ( /obj/structure/machinery/light, @@ -2774,49 +2097,34 @@ }, /area/prison/hangar_storage/research/shuttle) "aij" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/prison/hangar_storage/research/shuttle) "aik" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/prison/hangar_storage/research/shuttle) "ail" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/west) "aim" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "ain" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/prison/hangar_storage/research/shuttle) "aio" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/security) "aip" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "aiq" = ( /turf/closed/shuttle/ert{ @@ -2827,19 +2135,13 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "13" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ais" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "14" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ait" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -2852,17 +2154,13 @@ name = "Identification Desk"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "aiu" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "aiv" = ( /turf/closed/shuttle/ert{ @@ -2875,18 +2173,13 @@ }, /area/prison/hangar_storage/research/shuttle) "aix" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/prison/hangar_storage/research/shuttle) "aiy" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "15" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "aiz" = ( /turf/closed/shuttle/ert{ @@ -2906,10 +2199,7 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "16" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "aiD" = ( /obj/structure/window/framed/corsat/hull/security, @@ -2921,9 +2211,7 @@ }, /area/prison/hangar_storage/research/shuttle) "aiF" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "aiG" = ( /turf/closed/shuttle/ert{ @@ -2952,10 +2240,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "aiL" = ( /turf/closed/wall/biodome, @@ -2964,19 +2249,13 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "17" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "aiN" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "18" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "aiO" = ( /turf/closed/wall/r_wall/biodome, @@ -2985,10 +2264,7 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "19" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "aiQ" = ( /obj/structure/window/framed/corsat, @@ -2998,21 +2274,13 @@ /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/card, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/hangar/security) "aiS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/corsat/gamma/administration) "aiT" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/airlock/north) "aiU" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -3021,85 +2289,60 @@ /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aiX" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/north) "aiY" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft, /obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "aiZ" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/gamma/hallwaysouth) "aja" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/airlock/south/id) "ajb" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/gamma/airlock/north) "ajc" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "ajd" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/airlock/north) "aje" = ( -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/sigma/south) "ajf" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/omega/security) "ajg" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/corsat/gamma/cargo) "ajh" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/corsat/sigma/hangar) "aji" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/corsat/sigma/hangar) "ajj" = ( /turf/closed/wall/biodome, @@ -3111,30 +2354,21 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "20" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ajm" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/airlock/south) "ajn" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/south) "ajo" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/cargo) "ajp" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/control) "ajq" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -3144,58 +2378,36 @@ /turf/open/floor/plating, /area/corsat/sigma/laundry) "ajs" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "ajt" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "aju" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/north) "ajv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/sigma/cargo) "ajw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/sigma/cargo) "ajx" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "ajy" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/laundry) "ajz" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/north) "ajA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "ajB" = ( /turf/closed/wall/biodome, @@ -3203,68 +2415,46 @@ "ajC" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/communications, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "ajD" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar/monorail/control) "ajE" = ( /obj/structure/curtain, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "ajF" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ajG" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/east) "ajH" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "ajI" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "ajJ" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) "ajK" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) "ajL" = ( /obj/structure/window/framed/corsat/security, @@ -3278,26 +2468,17 @@ "ajM" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "ajN" = ( /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/control) "ajO" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "22" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ajP" = ( /obj/structure/machinery/door_control{ @@ -3309,37 +2490,26 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/hangar/security) "ajQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/east/id) "ajR" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/control) "ajS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) "ajT" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -3357,19 +2527,13 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/hangar) "ajW" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "23" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ajX" = ( /turf/closed/wall/biodome, @@ -3378,10 +2542,7 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "24" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "ajZ" = ( /obj/structure/foamed_metal, @@ -3391,19 +2552,13 @@ /obj/effect/landmark/teleporter_loc/corsat_sigma_local{ index = "25" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/sigma/south/complex/teleporter) "akb" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/hangar) "akc" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -3416,10 +2571,7 @@ /turf/open/floor/plating, /area/corsat/sigma/south/complex) "ake" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "akf" = ( /obj/structure/machinery/light{ @@ -3427,10 +2579,7 @@ }, /obj/structure/surface/table/reinforced, /obj/item/paper, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/sigmaremote) "akg" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ @@ -3440,18 +2589,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "akh" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/flightcontrol) "aki" = ( /obj/structure/window/framed/corsat/hull, @@ -3462,10 +2606,7 @@ /area/corsat/sigma/hangar/monorail) "akk" = ( /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "akl" = ( /turf/closed/wall/biodome, @@ -3479,10 +2620,7 @@ "akn" = ( /obj/structure/stairs, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "ako" = ( /obj/structure/machinery/light{ @@ -3490,14 +2628,10 @@ }, /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "akp" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/arrivals) "akq" = ( /turf/closed/wall/biodome, @@ -3506,42 +2640,30 @@ /obj/structure/computer3frame/server{ icon_state = "4" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/sigma/south/complex) "aks" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "akt" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/rnr/library) "aku" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "akv" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/south/complex) "akw" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "akx" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/control) "aky" = ( /obj/structure/window/framed/corsat/hull, @@ -3555,41 +2677,27 @@ /area/corsat/theta/airlock/east) "akC" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) "akD" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "akE" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) "akG" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "akH" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "akI" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -3598,40 +2706,26 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "akJ" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential) "akK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "akL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/cargo) "akM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/flightcontrol) "akN" = ( /obj/item/device/flashlight/lamp, @@ -3639,34 +2733,24 @@ dir = 1 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "akP" = ( /obj/item/paper_bin, /obj/item/tool/pen, /obj/item/tool/stamp/hos, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "akQ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "akR" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southeast, /area/corsat/gamma/residential) "akS" = ( /obj/structure/surface/table/woodentable, @@ -3674,33 +2758,23 @@ /area/corsat/gamma/residential/east) "akT" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "akU" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "akV" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/sigma/airlock/south) "akW" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/datalab) "akX" = ( /obj/structure/surface/table/woodentable, @@ -3713,18 +2787,13 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/airlock/south/id) "akZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/monorail/control) "ala" = ( /obj/structure/surface/table/woodentable, @@ -3741,10 +2810,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "ald" = ( /turf/closed/wall/r_wall/biodome, @@ -3755,10 +2821,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "alh" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo) "ali" = ( /obj/structure/pipes/vents/pump{ @@ -3766,15 +2829,10 @@ }, /obj/structure/surface/table/reinforced, /obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/administration) "alj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "alk" = ( /obj/structure/machinery/light{ @@ -3784,18 +2842,13 @@ /obj/structure/machinery/computer/skills{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) "all" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "alp" = ( /obj/structure/machinery/door_control{ @@ -3808,10 +2861,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/administration) "alr" = ( /obj/structure/surface/table/woodentable, @@ -3824,33 +2874,22 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "alt" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/residential) "alu" = ( /obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "alv" = ( /obj/structure/stairs, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "alw" = ( /turf/closed/wall/r_wall/biodome, @@ -3867,15 +2906,10 @@ dir = 1 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "alA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/gamma/airlock/north) "alB" = ( /obj/structure/surface/table/reinforced, @@ -3884,26 +2918,19 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/south/id) "alC" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "alD" = ( /obj/item/clothing/head/beret/sec/warden, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "alE" = ( /obj/structure/bed/chair{ @@ -3912,19 +2939,14 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "alF" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/corsat/gamma/cargo) "alG" = ( /obj/structure/platform{ @@ -3933,10 +2955,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/sigma/dorms) "alH" = ( /obj/structure/surface/rack, @@ -3959,10 +2978,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/sigma/dorms) "alM" = ( /obj/structure/bed/chair{ @@ -3971,9 +2987,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "alN" = ( /obj/structure/surface/table/woodentable, @@ -3985,22 +2999,14 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "alP" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/gamma/hangar/office) "alQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/south/id) "alR" = ( /obj/structure/bed, @@ -4010,10 +3016,7 @@ /area/corsat/gamma/residential/east) "alS" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "alU" = ( /obj/structure/bookcase/manuals/research_and_development, @@ -4040,46 +3043,32 @@ name = "Cargo Desk"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo/lobby) "alX" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/hangar) "alY" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "alZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "ama" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/dorms) "amb" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/residential) "amc" = ( /obj/structure/machinery/power/apc/high{ @@ -4088,19 +3077,13 @@ start_charge = 0 }, /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/residential/maint) "amd" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/sigma/dorms) "ame" = ( /obj/structure/surface/table/woodentable, @@ -4115,10 +3098,7 @@ dir = 4; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/sigma/dorms) "amg" = ( /obj/structure/machinery/power/apc/high{ @@ -4126,29 +3106,19 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "amh" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/dorms) "ami" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "amj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/monorail/control) "amk" = ( /turf/open/floor/wood, @@ -4161,9 +3131,7 @@ /area/corsat/gamma/residential/east) "amm" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/dorms) "amn" = ( /obj/structure/bed/chair/wood/normal, @@ -4183,9 +3151,7 @@ req_one_access_txt = "100" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "amq" = ( /obj/structure/surface/table/woodentable, @@ -4225,21 +3191,13 @@ /turf/open/floor/wood, /area/corsat/sigma/dorms) "amx" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) "amy" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/sigma/dorms) "amz" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "amA" = ( /obj/structure/surface/table/woodentable, @@ -4273,10 +3231,7 @@ /turf/open/floor/wood, /area/corsat/sigma/dorms) "amG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "amH" = ( /obj/structure/flora/pottedplant{ @@ -4296,9 +3251,7 @@ /turf/open/floor/wood, /area/corsat/sigma/dorms) "amK" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/dorms) "amL" = ( /obj/structure/surface/table/woodentable, @@ -4317,50 +3270,35 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/residential) "amP" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/corsat/sigma/dorms) "amQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/sigma/dorms) "amR" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) "amS" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/checkpoint) "amT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "amU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/sigma/dorms) "amV" = ( /obj/structure/barricade/handrail{ @@ -4372,14 +3310,10 @@ /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "amW" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "amX" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -4389,9 +3323,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo/disposal) "amY" = ( /obj/structure/barricade/handrail{ @@ -4403,9 +3335,7 @@ /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "amZ" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -4418,19 +3348,14 @@ name = "Engineering Desk"; req_access_txt = "13" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering/lobby) "ana" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/checkpoint) "anb" = ( /obj/structure/stairs{ @@ -4439,9 +3364,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "anc" = ( /obj/structure/surface/table/reinforced, @@ -4449,9 +3372,7 @@ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "and" = ( /obj/structure/platform{ @@ -4459,17 +3380,11 @@ layer = 2.7 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) "ane" = ( /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) "anf" = ( /obj/structure/flora/pottedplant, @@ -4483,28 +3398,19 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) "ani" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/hangar) "anj" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/hangar) "ank" = ( /obj/structure/bed/chair/office/dark{ @@ -4518,10 +3424,7 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/sigma/dorms) "anm" = ( /obj/structure/platform{ @@ -4529,10 +3432,7 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/dorms) "ann" = ( /turf/closed/wall/biodome, @@ -4543,10 +3443,7 @@ layer = 2.7 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/sigma/dorms) "anp" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -4555,24 +3452,17 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/monorail/control) "anq" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering/atmos) "anr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/airlock/north) "ans" = ( /obj/structure/surface/table/woodentable, @@ -4584,37 +3474,26 @@ /obj/structure/stairs{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "anu" = ( /obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "anv" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/east) "anw" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hallwaysouth) "anx" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/sigma/south/complex) "any" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "anz" = ( /obj/structure/bookcase/manuals/research_and_development, @@ -4622,10 +3501,7 @@ /turf/open/floor/wood, /area/corsat/sigma/dorms) "anA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/omega/hallways) "anB" = ( /obj/structure/surface/table/woodentable, @@ -4637,9 +3513,7 @@ id = "GammaEastW"; name = "Gamma East Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "anD" = ( /obj/structure/window/framed/corsat/hull, @@ -4653,44 +3527,31 @@ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) "anG" = ( -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/omega/hallways) "anH" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "anI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "anJ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/hangar/monorail) "anK" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "anL" = ( /obj/effect/landmark/xeno_spawn, @@ -4705,9 +3566,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "anN" = ( /obj/structure/surface/table/almayer, @@ -4715,25 +3574,17 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "anO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/omega/containment) "anP" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/almayer/research/containment/floor2, /area/corsat/inaccessible) "anQ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/containment) "anR" = ( /turf/open/floor/almayer/research/containment/corner1, @@ -4745,46 +3596,30 @@ /turf/closed/wall/r_wall/biodome, /area/corsat/omega/airlocknorth/id) "anU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/airlock/south) "anV" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/scalpel, /obj/item/tool/surgery/retractor, /obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) "anW" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo/disposal) "anX" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/gamma/residential) "anY" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/id) "anZ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "aoa" = ( /obj/structure/window/framed/corsat/security, @@ -4800,10 +3635,7 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo/lobby) "aoc" = ( /turf/closed/wall/biodome, @@ -4812,10 +3644,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) "aoe" = ( /turf/closed/wall/r_wall/biodome, @@ -4825,51 +3654,32 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "aog" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/hangar/checkpoint) "aoh" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/checkpoint) "aoi" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/cargo) "aoj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/dorms) "aok" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/omega/complex) "aol" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "aom" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/north) "aon" = ( /obj/structure/shuttle/diagonal{ @@ -4882,28 +3692,18 @@ "aoo" = ( /obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "aop" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/gamma/airlock/north) "aoq" = ( /obj/structure/surface/table/almayer, /obj/item/restraint/handcuffs, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "aor" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/cargo) "aos" = ( /turf/open/floor/almayer/research/containment/corner2, @@ -4912,30 +3712,20 @@ /turf/open/floor/almayer/research/containment/corner3, /area/corsat/inaccessible) "aou" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo/disposal) "aov" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/airlock/south) "aow" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/west) "aox" = ( /obj/structure/sink, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "aoy" = ( /obj/structure/machinery/door/window/southleft{ @@ -4945,35 +3735,22 @@ /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "aoz" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/south) "aoA" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/airlocknorth) "aoB" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/airlocknorth) "aoC" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/airlocknorth) "aoD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/dorms) "aoE" = ( /turf/closed/wall/r_wall/biodome, @@ -4992,14 +3769,10 @@ name = "Omega Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth/id) "aoG" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth) "aoH" = ( /obj/structure/window/framed/corsat/security, @@ -5009,9 +3782,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/sigma/dorms) "aoJ" = ( /obj/structure/window/framed/corsat/security, @@ -5021,27 +3792,20 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/hallways) "aoL" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/woodentable, /obj/effect/landmark/crap_item, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) "aoM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "aoN" = ( /obj/structure/window/framed/corsat/research, @@ -5051,20 +3815,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "aoP" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/west/id) "aoQ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "aoR" = ( /obj/structure/window/framed/corsat/hull/security, @@ -5074,28 +3832,19 @@ /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft, /obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "aoT" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/checkpoint) "aoU" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security/cells) "aoV" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/security) "aoW" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -5107,35 +3856,22 @@ /turf/closed/wall/biodome, /area/corsat/omega/maint) "aoZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "apa" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/maint) "apb" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southeast, /area/corsat/sigma/dorms) "apc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/omega/hallways) "apd" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "ape" = ( /obj/structure/window/framed/corsat/research, @@ -5151,10 +3887,7 @@ /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "apg" = ( /turf/closed/wall/r_wall/biodome, @@ -5166,9 +3899,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "apj" = ( /turf/closed/shuttle/ert{ @@ -5193,10 +3924,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/hangar/security) "apo" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -5213,15 +3941,10 @@ "apq" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/red, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "apr" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential) "aps" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -5229,18 +3952,13 @@ name = "Security Office"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/id) "apt" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/southeast/generator) "apu" = ( /turf/closed/wall/r_wall/biodome, @@ -5249,52 +3967,35 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/residential) "apw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/north/id) "apx" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/residential/maint) "apy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/residential/maint) "apz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/southeast/generator) "apA" = ( /obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "apB" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo/lobby) "apC" = ( /obj/structure/surface/table/reinforced, @@ -5309,26 +4010,19 @@ id = "GammaSecC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/security) "apD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/southeast/generator) "apE" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "apF" = ( /obj/structure/machinery/computer3/laptop/secure_data, @@ -5336,10 +4030,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "apG" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/corsat/omega/cargo) "apH" = ( /obj/structure/machinery/computer/telecomms/monitor{ @@ -5348,9 +4039,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "apI" = ( /turf/closed/wall/r_wall/biodome, @@ -5362,47 +4051,31 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/researcher) "apL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "apM" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/residential/maint) "apN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "apO" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering/core) "apP" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Toilet Unit" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "apQ" = ( /turf/closed/wall/r_wall/biodome, @@ -5411,9 +4084,7 @@ /turf/closed/wall/biodome, /area/corsat/gamma/residential/maint) "apS" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/maint) "apT" = ( /turf/closed/wall/biodome, @@ -5425,46 +4096,32 @@ start_charge = 0 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/gamma/airlock/north) "apV" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/dorms) "apW" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "apX" = ( /obj/effect/decal/cleanable/cobweb{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "apY" = ( /obj/structure/stairs{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "apZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering/core) "aqa" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "aqb" = ( /obj/structure/bed/chair/office/dark{ @@ -5473,68 +4130,43 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "aqc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/residential/maint) "aqd" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/residential/maint) "aqe" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/airlock/north) "aqf" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/airlock/north) "aqg" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "aqh" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/north) "aqi" = ( /turf/closed/wall/biodome, /area/corsat/gamma/engineering) "aqj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "aqk" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/airlock/north) "aql" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "aqm" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/engineering) "aqn" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "aqo" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -5542,16 +4174,12 @@ "aqp" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/southeast/generator) "aqq" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "aqr" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -5563,25 +4191,17 @@ /turf/closed/wall/biodome, /area/corsat/gamma/engineering/atmos) "aqu" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering/atmos) "aqv" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering/atmos) "aqw" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/residential/maint) "aqx" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "aqy" = ( /turf/closed/wall/biodome, @@ -5593,79 +4213,53 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "aqA" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/lobby) "aqB" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/lobby) "aqC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/southeast/generator) "aqD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/atmos) "aqE" = ( /obj/structure/machinery/meter, /obj/structure/pipes/standard/simple/visible{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "aqF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hallwaysouth) "aqG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hallwaysouth) "aqH" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "aqI" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "aqJ" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/hallwaysouth) "aqK" = ( /obj/structure/window/framed/corsat/hull, @@ -5675,10 +4269,7 @@ /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/theta/biodome) "aqM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/west, /area/corsat/gamma/hallwaysouth) "aqN" = ( /turf/closed/wall/almayer/white, @@ -5687,48 +4278,32 @@ /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay) "aqP" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "aqQ" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aqR" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay/morgue) "aqS" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/morgue) "aqT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "aqU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/southeast/generator) "aqV" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -5738,45 +4313,31 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/generator) "aqW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/morgue) "aqX" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aqY" = ( /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay/lobby) "aqZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/lobby) "ara" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner, /area/corsat/gamma/medbay/lobby) "arb" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/west, /area/corsat/gamma/medbay/lobby) "arc" = ( /turf/closed/shuttle, @@ -5786,18 +4347,14 @@ icon_state = "broadcast receiver"; name = "Subspace Receiver" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "are" = ( /obj/structure/showcase{ icon_state = "processor"; name = "Processor Unit" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "arf" = ( /turf/closed/wall/almayer/white, @@ -5807,27 +4364,19 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay/surgery) "arh" = ( /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay/chemistry) "ari" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "arj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay/surgery) "ark" = ( /obj/structure/showcase{ @@ -5835,9 +4384,7 @@ name = "Communications Server" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "arl" = ( /obj/structure/closet/crate/freezer, @@ -5848,21 +4395,13 @@ /obj/item/organ/lungs, /obj/item/organ/brain, /obj/item/organ/eyes, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay) "arm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/sigma/north) "aro" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/hallwaysouth) "arp" = ( /turf/closed/wall/biodome, @@ -5871,10 +4410,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security/armory) "arr" = ( /obj/structure/window/framed/corsat, @@ -5884,19 +4420,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security/armory) "art" = ( /obj/structure/computerframe, /obj/effect/decal/cleanable/cobweb{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aru" = ( /obj/structure/flora/pottedplant{ @@ -5906,9 +4437,7 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "arv" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -5917,9 +4446,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "arx" = ( /turf/closed/wall/biodome, @@ -5958,22 +4485,16 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "arG" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/north) "arH" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "arI" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "arJ" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -5983,10 +4504,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/hangar/security) "arL" = ( /turf/closed/wall/biodome, @@ -6002,30 +4520,18 @@ /turf/closed/wall/biodome, /area/corsat/gamma/residential/laundry) "arO" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "arP" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/gamma/cargo/disposal) "arQ" = ( /obj/structure/bedsheetbin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "arR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "arT" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -6034,10 +4540,7 @@ /area/corsat/sigma/north) "arU" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "arV" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -6046,9 +4549,7 @@ /turf/closed/wall/biodome, /area/corsat/gamma/residential/lavatory) "arY" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "arZ" = ( /obj/structure/window/reinforced{ @@ -6060,10 +4561,7 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/sigma/north) "asa" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/rnr) "asb" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -6071,23 +4569,16 @@ name = "Reactor Core"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "asc" = ( /turf/closed/wall/biodome, /area/corsat/gamma/kitchen) "asd" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/sigma/cargo) "ase" = ( -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "asf" = ( /obj/structure/machinery/light{ @@ -6098,10 +4589,7 @@ /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) "asg" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "ash" = ( /obj/structure/window/reinforced{ @@ -6125,10 +4613,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/flightcontrol) "ask" = ( /obj/structure/closet/crate/trashcart, @@ -6143,10 +4628,7 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/sigma/north) "aso" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "asp" = ( /turf/closed/wall/biodome, @@ -6156,10 +4638,7 @@ /turf/open/floor/plating, /area/corsat/gamma/rnr/library) "asr" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "ass" = ( /obj/structure/window/framed/corsat/hull, @@ -6178,10 +4657,7 @@ /area/corsat/gamma/residential/east) "asv" = ( /obj/structure/curtain/shower, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "asw" = ( /obj/structure/machinery/light/small{ @@ -6202,9 +4678,7 @@ /area/corsat/gamma/hangar/monorail/railcart) "asB" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "asC" = ( /turf/closed/wall/biodome, @@ -6213,22 +4687,13 @@ /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/airlock/south) "asE" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/canteen) "asF" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/canteen) "asG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "asH" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -6281,18 +4746,13 @@ }, /obj/item/weapon/shield/riot, /obj/item/weapon/shield/riot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/security/armory) "asP" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "asQ" = ( /obj/structure/flora/pottedplant{ @@ -6305,9 +4765,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "asS" = ( /obj/structure/surface/table/woodentable, @@ -6340,15 +4798,10 @@ /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) "asY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/southeast) "asZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "atb" = ( /obj/structure/surface/rack, @@ -6360,9 +4813,7 @@ /obj/item/paper, /obj/item/tool/pen, /obj/item/tool/stamp, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo/lobby) "atd" = ( /obj/structure/window/framed/corsat/hull, @@ -6370,36 +4821,26 @@ /area/corsat/sigma/southeast) "ate" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/north) "atf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "atg" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/southeast/dataoffice) "ath" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/administration) "ati" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/southeast/generator) "atj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/corsat/gamma/administration) "atk" = ( /turf/closed/wall/biodome, @@ -6408,19 +4849,13 @@ /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/southeast/generator) "atm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/southeast) "atn" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) "ato" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -6433,26 +4868,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "ats" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/sigma/dorms) "att" = ( /turf/closed/wall/biodome, /area/corsat/sigma/southeast/datalab) "atu" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "atv" = ( /obj/structure/window/framed/corsat, @@ -6466,16 +4893,10 @@ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential) "aty" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/corsat/gamma/administration) "atz" = ( /turf/closed/wall/r_wall/biodome, @@ -6512,26 +4933,17 @@ /area/corsat/sigma/airlock/east/id) "atK" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/airlock/north) "atL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/security/armory) "atM" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/security/armory) "atN" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "atO" = ( /obj/structure/machinery/light/small{ @@ -6544,22 +4956,16 @@ /turf/open/floor/corsat, /area/corsat/sigma/hangar/id) "atQ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/airlock/east) "atR" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "atS" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "atT" = ( /obj/structure/window/framed/corsat/security, @@ -6574,15 +4980,10 @@ /obj/structure/surface/rack, /obj/item/storage/box/handcuffs, /obj/item/storage/box/handcuffs, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/security/armory) "atV" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/south) "atW" = ( /obj/structure/bed/chair/office/light{ @@ -6591,26 +4992,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "atX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/checkpoint) "atY" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/airlock/north) "atZ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -6620,14 +5014,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "aua" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/north/id) "aub" = ( /obj/structure/bed/chair/wood/normal{ @@ -6651,21 +5041,13 @@ /turf/closed/wall/biodome, /area/corsat/sigma/airlock/east) "aue" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "auf" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) "aug" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "auh" = ( /turf/closed/wall/r_wall/biodome, @@ -6680,10 +5062,7 @@ "auk" = ( /obj/structure/window/reinforced, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/airlock/south) "aul" = ( /obj/structure/flora/pottedplant{ @@ -6692,9 +5071,7 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "aum" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -6705,9 +5082,7 @@ id = "GammaAdmin"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "aun" = ( /obj/structure/window/reinforced, @@ -6715,9 +5090,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "auo" = ( /obj/structure/machinery/constructable_frame{ @@ -6733,66 +5106,47 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "auq" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/security) "aur" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/east) "aus" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "aut" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "SigmaSouthN"; name = "Sigma South Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/south) "auu" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "auv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "auw" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "aux" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "auy" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "auz" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -6801,19 +5155,14 @@ /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/administration) "auB" = ( /turf/closed/wall/biodome, /area/corsat/sigma/south/offices) "auC" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "auD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -6822,19 +5171,14 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) "auE" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/south/offices) "auF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south) "auG" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -6853,25 +5197,18 @@ /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/airlocknorth) "auN" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/engineering) "auO" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/sigma/dorms) "auP" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "auQ" = ( /obj/structure/window/framed/corsat/hull, @@ -6895,10 +5232,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south) "auW" = ( /obj/structure/machinery/power/smes, @@ -6908,17 +5242,13 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/airlock/north) "auY" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/airlock/north) "auZ" = ( /obj/structure/surface/table/reinforced, @@ -6936,20 +5266,14 @@ pixel_y = -3; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/airlock/north) "ava" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/airlock/north) "avb" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -6957,21 +5281,14 @@ name = "\improper Bar Rear" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "avc" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/airlock/north) "avd" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/gamma/airlock/north) "ave" = ( /obj/structure/machinery/power/apc/hyper{ @@ -6983,10 +5300,7 @@ /obj/item/evidencebag, /obj/item/evidencebag, /obj/item/evidencebag, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security/cells) "avf" = ( /obj/item/cell/crap, @@ -6998,10 +5312,7 @@ "avg" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/checkpoint) "avh" = ( /obj/structure/machinery/power/apc/hyper{ @@ -7009,40 +5320,26 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering/core) "avj" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/checkpoint) "avl" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "avm" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/south/offices) "avn" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/checkpoint) "avo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/hangar/checkpoint) "avp" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "avq" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -7051,14 +5348,10 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "avr" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/south) "avs" = ( /obj/structure/machinery/light/small{ @@ -7071,17 +5364,13 @@ id = "SigmaEastW"; name = "Sigma East Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/east) "avu" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) "avv" = ( /obj/structure/machinery/door_control{ @@ -7090,10 +5379,7 @@ pixel_x = 25; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/security) "avx" = ( /obj/structure/machinery/power/apc/high{ @@ -7101,10 +5387,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "avy" = ( /obj/structure/machinery/power/apc/high{ @@ -7112,22 +5395,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/omega/cargo) "avz" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/corsat/gamma/administration) "avA" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/south/id) "avD" = ( /obj/structure/surface/table/woodentable, @@ -7140,14 +5415,10 @@ /area/corsat/gamma/residential/researcher) "avE" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/hangar) "avF" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/airlock/north) "avG" = ( /obj/structure/machinery/door/window/brigdoor/southleft{ @@ -7155,40 +5426,26 @@ name = "Cell 1" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/cells) "avH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/east/id) "avI" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/hangar) "avJ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hangar) "avK" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/omega/cargo) "avL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/cargo) "avM" = ( /obj/structure/machinery/power/apc/high{ @@ -7196,26 +5453,16 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/southeast) "avN" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "avO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/gamma/residential) "avP" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/gamma/residential) "avQ" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -7225,17 +5472,13 @@ name = "Security Office"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "avS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "avT" = ( /obj/structure/window/framed/corsat/cell/research, @@ -7249,90 +5492,58 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/medbay/morgue) "avV" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/residential) "avW" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/residential) "avX" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "avY" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/residential) "avZ" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "awa" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/residential) "awb" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/airlock/north) "awc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/residential) "awd" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/residential) "awe" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/residential) "awf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/residential/maint) "awg" = ( /obj/structure/machinery/bot/medbot/mysterious, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "awh" = ( /obj/structure/surface/table/almayer, /obj/item/roller, /obj/item/roller, /obj/item/roller, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "awi" = ( /obj/structure/surface/table/reinforced, @@ -7347,42 +5558,29 @@ id = "GammaHangarCargoC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/cargo) "awj" = ( /obj/structure/surface/table/reinforced, /obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/checkpoint) "awk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "awl" = ( /obj/structure/surface/rack, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay/chemistry) "awm" = ( /obj/structure/closet/secure_closet/chemical{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/chemistry) "awn" = ( /obj/structure/machinery/power/apc/high{ @@ -7390,29 +5588,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/north, /area/corsat/gamma/medbay/chemistry) "awo" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/chemistry) "awp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/id) "awq" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/corsat/gamma/hallwaysouth) "awr" = ( /obj/structure/shuttle/diagonal{ @@ -7426,33 +5614,23 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "awt" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/gamma/administration) "awu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "awv" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "aww" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -7460,9 +5638,7 @@ name = "Administration Desk"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "awx" = ( /obj/structure/window/framed/corsat/security, @@ -7491,9 +5667,7 @@ id = "GammaDSC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north/id) "awA" = ( /obj/structure/machinery/light{ @@ -7507,18 +5681,13 @@ dir = 4 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/airlock/north/id) "awC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "awD" = ( /obj/structure/machinery/door/window/brigdoor/southleft{ @@ -7526,45 +5695,33 @@ name = "Cell 2" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/cells) "awE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "awF" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "awG" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/north/id) "awH" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/airlock/north) "awJ" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "awK" = ( /obj/structure/surface/table/reinforced, @@ -7573,46 +5730,31 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/north/id) "awL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "awM" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/airlock/south/id) "awN" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/north/id) "awO" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "awP" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/checkpoint) "awQ" = ( /turf/closed/wall/r_wall/biodome, @@ -7621,9 +5763,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/airlock/north/id) "awS" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -7633,23 +5773,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/morgue) "awT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo/disposal) "awU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "awV" = ( /obj/structure/surface/table/reinforced, @@ -7657,10 +5791,7 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/airlock/north/id) "awW" = ( /obj/structure/surface/table/reinforced, @@ -7669,9 +5800,7 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/airlock/north/id) "awX" = ( /obj/structure/closet/wardrobe/white, @@ -7685,10 +5814,7 @@ /obj/item/clothing/head/ushanka, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/airlock/north/id) "awY" = ( /turf/closed/wall/r_wall/biodome, @@ -7699,10 +5825,7 @@ dir = 1 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "axa" = ( /obj/structure/bed/chair{ @@ -7711,18 +5834,13 @@ /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "axb" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/checkpoint) "axc" = ( /obj/structure/machinery/vending/coffee, @@ -7730,64 +5848,43 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/hallwaysouth) "axd" = ( /obj/structure/bed, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security/cells) "axe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "axf" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/hallwaysouth) "axg" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/south/id) "axh" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/gamma/administration) "axi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "axj" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "axk" = ( /obj/structure/machinery/light{ @@ -7797,9 +5894,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/gamma/administration) "axl" = ( /obj/structure/bed/chair{ @@ -7808,28 +5903,19 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "axm" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "axn" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) "axo" = ( /obj/structure/machinery/camera/autoname{ @@ -7837,24 +5923,16 @@ network = list("gamma") }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/airlock/north/id) "axp" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering/core) "axq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/north/id) "axr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -7863,50 +5941,35 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/maint) "axs" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/residential/maint) "axt" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential/maint) "axu" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "axv" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/airlock/north/id) "axw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "axx" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "axy" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -7915,66 +5978,46 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "axz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "axB" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "axC" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/administration) "axD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "axE" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/gamma/administration) "axF" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/gamma/administration) "axG" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/omega/checkpoint) "axH" = ( /obj/structure/machinery/constructable_frame{ @@ -7984,39 +6027,27 @@ /turf/open/floor/corsat, /area/corsat/emergency_access) "axI" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/checkpoint) "axJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Laundry" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "axK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/hangar/checkpoint) "axL" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/checkpoint) "axM" = ( /obj/structure/surface/table/reinforced, @@ -8024,60 +6055,38 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/airlock/north) "axN" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/gamma/airlock/north) "axO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "axP" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/airlock/east/id) "axQ" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "axR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/airlock/east/id) "axS" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/airlock/east/id) "axT" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/airlock/east/id) "axV" = ( /obj/structure/surface/table/woodentable, @@ -8089,31 +6098,22 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/east/id) "axX" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/east/id) "axY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Bar" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr/bar) "axZ" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/east/id) "aya" = ( /obj/structure/surface/table/reinforced, @@ -8122,15 +6122,10 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/east/id) "ayb" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "ayc" = ( /obj/structure/window/framed/corsat/security, @@ -8146,36 +6141,24 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/id) "aye" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/north) "ayf" = ( /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/north) "ayg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/id) "ayh" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "ayi" = ( /obj/structure/machinery/power/apc/high{ @@ -8183,66 +6166,42 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/hangar/id) "ayj" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/id) "ayk" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "ayl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "aym" = ( /obj/structure/bed, /obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "ayn" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/id) "ayo" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "ayp" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/id) "ayq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/hangar/id) "ayr" = ( /obj/structure/surface/table/reinforced, @@ -8250,10 +6209,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/id) "ays" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -8263,41 +6219,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "ayt" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/north) "ayu" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/north) "ayv" = ( /obj/structure/machinery/optable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "ayw" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/north) "ayx" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/id) "ayy" = ( /obj/structure/surface/table/almayer, @@ -8305,10 +6247,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/hangar/id) "ayz" = ( /obj/structure/bed, @@ -8316,18 +6255,12 @@ dir = 1 }, /obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "ayA" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/hangar/id) "ayB" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -8336,34 +6269,22 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "ayC" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo) "ayD" = ( /obj/structure/bed, /obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay) "ayE" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar/id) "ayF" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/id) "ayG" = ( /obj/structure/machinery/power/apc/high{ @@ -8372,16 +6293,10 @@ start_charge = 0 }, /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "ayH" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/omega/airlocknorth) "ayI" = ( /obj/structure/surface/table/reinforced, @@ -8403,10 +6318,7 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar/id) "ayJ" = ( /obj/structure/machinery/door_control{ @@ -8422,10 +6334,7 @@ use_power = 0 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/sigma/airlock/east) "ayK" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -8433,45 +6342,33 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/id) "ayL" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/airlock/east) "ayM" = ( /obj/structure/surface/rack, /obj/item/storage/box/chemimp, /obj/item/storage/box/trackimp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/sigmaremote) "ayN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/north) "ayO" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "ayP" = ( /obj/structure/surface/table/reinforced, @@ -8481,28 +6378,17 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/airlock/east) "ayQ" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/airlock/east) "ayR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "ayS" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "ayT" = ( /obj/structure/surface/table/reinforced, @@ -8511,34 +6397,23 @@ health = 250 }, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/airlock/east) "ayU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "ayV" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/airlock/east) "ayW" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/airlock/east) "ayX" = ( /obj/structure/machinery/power/apc/hyper{ @@ -8547,41 +6422,28 @@ start_charge = 0 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/sigma/airlock/east) "ayY" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/airlock/east) "ayZ" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/airlock/east) "aza" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "GammaNorthN"; name = "Gamma North Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "azb" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/east) "azc" = ( /obj/structure/surface/table/reinforced, @@ -8589,96 +6451,67 @@ dir = 8; health = 250 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/east) "azd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "aze" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/east) "azf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "azg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "azh" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/airlock/east) "azi" = ( /obj/structure/pipes/binary/pump/on{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "azj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/airlock/east) "azk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "azl" = ( /obj/structure/stairs{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "azm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "azn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/east) "azo" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/security) "azp" = ( /obj/structure/surface/table/almayer, @@ -8686,61 +6519,43 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "azq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/east) "azr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "azs" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/checkpoint) "azt" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/east) "azu" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/security) "azv" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/security) "azw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "azx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -8748,124 +6563,85 @@ name = "Airlock Control"; req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/east) "azy" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "azz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "azA" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "azB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "azC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/gamma/administration) "azD" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/airlock/east) "azE" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "azF" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/east) "azG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "azH" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/east) "azI" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/east) "azJ" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/east) "azK" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "azL" = ( /obj/structure/machinery/light, /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/east) "azM" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/east) "azN" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "azO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "azP" = ( /obj/structure/machinery/light{ @@ -8874,10 +6650,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/south) "azQ" = ( /obj/structure/machinery/power/apc/hyper{ @@ -8890,39 +6663,29 @@ name = "secure evidence locker"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "azR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/south) "azS" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "azT" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "azU" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "azV" = ( /obj/structure/window/framed/corsat/security, @@ -8935,10 +6698,7 @@ /area/corsat/sigma/airlock/south/id) "azW" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/biodome/toxins) "azX" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -8946,9 +6706,7 @@ "azY" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "azZ" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ @@ -8956,9 +6714,7 @@ name = "Cargo Bay"; req_one_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "aAa" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ @@ -8967,57 +6723,38 @@ req_one_access_txt = "100" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "aAb" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAc" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "aAe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "aAf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/airlock/south) "aAg" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/hangar/security) "aAh" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "aAi" = ( /obj/structure/closet/secure_closet/security_empty, @@ -9028,15 +6765,10 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/security) "aAj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "aAk" = ( /obj/structure/surface/table/reinforced, @@ -9052,24 +6784,17 @@ pixel_x = -5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAl" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAm" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "aAo" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -9080,17 +6805,12 @@ /area/space) "aAp" = ( /obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/atmos) "aAq" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/airlock/south) "aAr" = ( /obj/structure/machinery/power/apc/high{ @@ -9098,68 +6818,46 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/canteen) "aAs" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAt" = ( /obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "aAu" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/security) "aAv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/engineering/lobby) "aAw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "aAx" = ( /obj/structure/sign/safety/airlock{ pixel_x = 32 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/south) "aAy" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo) "aAz" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/airlock/south) "aAA" = ( /obj/structure/surface/table/almayer, @@ -9167,89 +6865,61 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAB" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "aAD" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/airlock/south) "aAE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/medbay/morgue) "aAF" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAG" = ( /obj/effect/decal/mecha_wreckage/hoverpod, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aAH" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/airlock/south) "aAI" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/airlock/south) "aAJ" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/south) "aAK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/sigma/airlock/south) "aAL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "aAM" = ( /obj/structure/machinery/power/apc/high{ @@ -9257,10 +6927,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/west, /area/corsat/gamma/medbay/surgery) "aAN" = ( /obj/structure/machinery/light, @@ -9269,9 +6936,7 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar/checkpoint) "aAO" = ( /obj/structure/machinery/power/apc/high{ @@ -9279,24 +6944,16 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay/lobby) "aAP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/south) "aAQ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar/checkpoint) "aAR" = ( /obj/structure/machinery/power/apc/hyper{ @@ -9304,22 +6961,15 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aAS" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/security) "aAT" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/south) "aAU" = ( /obj/item/tool/pen, @@ -9327,93 +6977,61 @@ network = list("gamma") }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aAV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/south) "aAW" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/sigma/south) "aAX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/south) "aAY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/airlock/south) "aAZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "GammaAdmin"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "aBa" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/airlock/south) "aBb" = ( /obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo) "aBc" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aBe" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/hallways) "aBf" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/omega/cargo) "aBg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "aBh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "aBi" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ @@ -9423,192 +7041,128 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "aBj" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, /area/corsat/inaccessible) "aBk" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/corsat/inaccessible) "aBl" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/corsat/inaccessible) "aBm" = ( /obj/item/clothing/mask/gas, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "aBn" = ( -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/entrance/west, /area/corsat/inaccessible) "aBo" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/corsat/inaccessible) "aBq" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/corsat/inaccessible) "aBr" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/corner/north, /area/corsat/inaccessible) "aBs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/airlock/south) "aBt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/south) "aBu" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "aBv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/airlock/south) "aBw" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/south) "aBx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "aBy" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aBz" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aBD" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aBE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/west/id) "aBF" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ id = "SigmaEastE"; name = "Sigma East Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/east) "aBG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/west) "aBH" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/south/id) "aBJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "aBK" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/airlock/south) "aBL" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/south) "aBM" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "aBO" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/hangar/office) "aBP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "aBQ" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aBR" = ( /obj/structure/machinery/door_control{ @@ -9624,50 +7178,35 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "aBS" = ( /obj/structure/bed/chair/office/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/airlock/south) "aBT" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/south) "aBU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/sigma/airlock/south) "aBV" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hallways) "aBW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aBX" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/theta/airlock/east) "aBY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -9678,9 +7217,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/airlock/south) "aBZ" = ( /obj/structure/machinery/power/apc/high{ @@ -9688,10 +7225,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/omega/maint) "aCa" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, @@ -9700,55 +7234,39 @@ "aCb" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aCc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "aCd" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aCe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/airlocknorth/id) "aCf" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aCg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "aCh" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "aCi" = ( /obj/structure/surface/table/almayer, @@ -9757,16 +7275,11 @@ dir = 8; health = 250 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aCj" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/security) "aCk" = ( /obj/structure/surface/table/almayer, @@ -9774,9 +7287,7 @@ dir = 4 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "aCl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -9784,15 +7295,10 @@ name = "Airlock Control Office"; req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/theta/airlock/east) "aCm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/theta/airlock/east) "aCn" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -9801,9 +7307,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "aCo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -9811,44 +7315,31 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/south) "aCp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "aCq" = ( /obj/structure/showcase{ icon_state = "processor"; name = "Processor Unit" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "aCr" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "aCs" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "aCt" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering) "aCu" = ( /turf/open/floor/corsat, @@ -9859,69 +7350,49 @@ /obj/item/implantcase, /obj/item/implantcase, /obj/item/implantpad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "aCw" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "aCx" = ( /obj/structure/prop/almayer/cannon_cables{ color = "#55BBFF"; name = "\improper Cables" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "aCy" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/southeast) "aCz" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "aCA" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/southeast/generator) "aCB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "aCC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "aCD" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "aCE" = ( /obj/structure/machinery/light{ @@ -9929,31 +7400,21 @@ }, /obj/structure/surface/table/almayer, /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/gamma/cargo/lobby) "aCF" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "aCG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "aCH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aCI" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -9963,17 +7424,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "aCJ" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Cable connector" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "aCK" = ( /obj/structure/machinery/light/small{ @@ -9991,10 +7448,7 @@ dir = 8 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering/lobby) "aCM" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -10004,17 +7458,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "aCN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "aCO" = ( /obj/structure/machinery/light/small{ @@ -10026,15 +7476,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "aCQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/theta/airlock/east) "aCS" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -10044,33 +7489,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/lobby) "aCT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aCU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aCV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/checkpoint) "aCW" = ( /obj/structure/machinery/power/apc/high{ @@ -10078,10 +7515,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/checkpoint) "aCX" = ( /turf/open/floor/corsat, @@ -10095,81 +7529,55 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "aCZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/dorms) "aDa" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "aDb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/theta/airlock/east) "aDc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "aDd" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/sigma/south) "aDe" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/south) "aDf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "aDg" = ( /obj/structure/closet/crate/science, /obj/item/cell/hyper/empty, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/sigma/south/complex) "aDh" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aDi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential) "aDj" = ( /obj/structure/surface/table/reinforced, @@ -10179,38 +7587,27 @@ /obj/structure/machinery/door/window/eastright{ name = "Medical Desk" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/lobby) "aDk" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/theta/airlock/east) "aDl" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "aDm" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/theta/airlock/east) "aDn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "aDo" = ( /obj/structure/machinery/power/apc/high{ @@ -10218,48 +7615,32 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "aDp" = ( /obj/structure/surface/rack, /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/north) "aDq" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/theta/airlock/east) "aDr" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/theta/airlock/east) "aDs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "aDt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "aDu" = ( /obj/structure/machinery/power/apc/high{ @@ -10267,23 +7648,16 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/sigma/cargo) "aDv" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aDw" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/theta/airlock/east) "aDx" = ( /obj/structure/surface/table/reinforced, @@ -10291,9 +7665,7 @@ dir = 1; network = list("theta") }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/theta/airlock/east) "aDy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -10323,24 +7695,18 @@ pixel_x = -5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/theta/airlock/east) "aDB" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aDC" = ( /obj/structure/showcase{ icon_state = "broadcast receiver"; name = "Subspace Receiver" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "aDD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -10349,18 +7715,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aDE" = ( /obj/structure/surface/table/reinforced, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/theta/airlock/east) "aDF" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -10368,9 +7729,7 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "aDG" = ( /obj/structure/machinery/power/apc/high{ @@ -10378,19 +7737,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aDH" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/theta/airlock/east) "aDI" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -10399,9 +7753,7 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/id) "aDJ" = ( /obj/structure/machinery/door_control{ @@ -10411,16 +7763,11 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "aDK" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/hangar) "aDL" = ( /obj/structure/machinery/camera/autoname{ @@ -10428,36 +7775,26 @@ network = list("sigma") }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "aDM" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "aDN" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "aDO" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "aDP" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "aDQ" = ( /obj/structure/machinery/power/apc/hyper{ @@ -10465,25 +7802,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/hangar) "aDR" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "aDS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northwest, /area/corsat/gamma/hangar/arrivals) "aDT" = ( /obj/structure/machinery/power/apc/high{ @@ -10495,9 +7824,7 @@ dir = 8 }, /obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "aDU" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -10507,9 +7834,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "aDV" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -10518,17 +7843,11 @@ req_access_txt = "106"; use_power = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "aDX" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/arrivals) "aDY" = ( /turf/closed/shuttle/ert{ @@ -10540,9 +7859,7 @@ name = "Control Room"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "aEa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -10551,19 +7868,14 @@ req_access_txt = "103"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "aEb" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/hangar/checkpoint) "aEc" = ( /turf/closed/shuttle/ert{ @@ -10592,49 +7904,32 @@ "aEg" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/hangar/checkpoint) "aEh" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "aEi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hallways) "aEj" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/prison/hangar_storage/research/shuttle) "aEk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/omega/airlocknorth) "aEl" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/omega/airlocknorth) "aEn" = ( /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/airlocknorth) "aEq" = ( /obj/structure/window/framed/corsat, @@ -10645,22 +7940,16 @@ /turf/open/floor/plating, /area/corsat/gamma/cargo/lobby) "aEt" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/gamma/engineering/core) "aEu" = ( /obj/structure/sign/safety/airlock{ pixel_x = 32 }, -/turf/open/floor/corsat{ - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner, /area/corsat/omega/airlocknorth) "aEv" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, +/turf/open/floor/corsat/arrow_north, /area/corsat/sigma/southeast/generator) "aEw" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -10673,30 +7962,20 @@ /area/corsat/omega/hangar) "aEz" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/hangar/monorail) "aEC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/airlocknorth) "aED" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/airlocknorth) "aEE" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/airlocknorth) "aEF" = ( /obj/structure/surface/table/reinforced, @@ -10705,44 +7984,29 @@ name = "Dome Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/airlocknorth) "aEG" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth) "aEH" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth) "aEJ" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aEK" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "aEL" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/omega/complex) "aEM" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -10752,18 +8016,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "aEN" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "aEP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -10773,9 +8033,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aER" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10787,43 +8045,29 @@ "aES" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "aET" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "Administration"; req_access_txt = "106" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "aEU" = ( /obj/structure/closet/secure_closet/engineering_chief{ req_access_txt = "101" }, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering) "aEV" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo/disposal) "aEW" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "aEX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10836,9 +8080,7 @@ /obj/structure/bed, /obj/structure/machinery/light, /obj/item/bedsheet, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "aEZ" = ( /obj/effect/alien/weeds/node, @@ -10848,16 +8090,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/checkpoint) "aFc" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "aFd" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -10866,16 +8103,12 @@ /area/corsat/gamma/biodome) "aFe" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "aFf" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "aFg" = ( /obj/structure/bed/chair/wood/normal{ @@ -10894,10 +8127,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "aFj" = ( /obj/structure/toilet{ @@ -10906,19 +8136,13 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "aFk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/researcher) "aFl" = ( /obj/structure/barricade/handrail{ @@ -10939,10 +8163,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) "aFn" = ( /obj/structure/filingcabinet/filingcabinet, @@ -10959,10 +8180,7 @@ /area/corsat/gamma/residential/researcher) "aFp" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering) "aFq" = ( /obj/structure/barricade/handrail{ @@ -10978,15 +8196,11 @@ /area/corsat/gamma/residential/east) "aFr" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar/checkpoint) "aFs" = ( /obj/structure/bed/chair/comfy, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/corsat/gamma/hangar/monorail/railcart) "aFt" = ( /obj/structure/closet/cabinet, @@ -10998,9 +8212,7 @@ "aFu" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aFv" = ( /obj/structure/surface/table/woodentable, @@ -11011,9 +8223,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "aFw" = ( -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/corsat/gamma/hangar/monorail/railcart) "aFx" = ( /obj/structure/surface/table/woodentable, @@ -11028,38 +8238,27 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar) "aFz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/foyer) "aFA" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "aFB" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "aFC" = ( /obj/structure/surface/table/woodentable, @@ -11073,9 +8272,7 @@ "aFD" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aFE" = ( /obj/structure/machinery/light, @@ -11086,26 +8283,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/foyer) "aFG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/monorail/control) "aFH" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aFI" = ( /obj/structure/bed{ @@ -11118,17 +8306,11 @@ /area/corsat/gamma/residential/researcher) "aFJ" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/theta/airlock/east) "aFK" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/foyer) "aFL" = ( /obj/structure/machinery/power/apc/hyper{ @@ -11136,10 +8318,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/theta/airlock/east) "aFM" = ( /obj/structure/machinery/light{ @@ -11152,27 +8331,18 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aFO" = ( /obj/item/paper, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aFP" = ( /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/theta/airlock/east) "aFR" = ( /obj/structure/bed, @@ -11184,19 +8354,13 @@ /area/corsat/gamma/residential/east) "aFS" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/theta/airlock/east) "aFT" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Waste Tank Control" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/airlock/control) "aFU" = ( /obj/structure/bed/chair{ @@ -11206,9 +8370,7 @@ /area/corsat/gamma/residential/east) "aFV" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar/cargo) "aFW" = ( /obj/structure/toilet{ @@ -11217,10 +8379,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "aFX" = ( /obj/structure/bed/chair{ @@ -11235,10 +8394,7 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) "aGb" = ( /obj/structure/surface/table/woodentable, @@ -11260,10 +8416,7 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88, /obj/item/ammo_magazine/pistol/mod88, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/south/security) "aGd" = ( /obj/structure/surface/table, @@ -11275,19 +8428,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aGe" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "aGf" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -11298,27 +8445,19 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aGh" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo) "aGi" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/theta/airlock/east) "aGj" = ( /obj/structure/filingcabinet/filingcabinet, @@ -11331,10 +8470,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/cargo) "aGl" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -11342,27 +8478,19 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar) "aGm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo) "aGn" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/gamma/cargo) "aGo" = ( /obj/structure/machinery/power/apc/high{ @@ -11371,41 +8499,29 @@ start_charge = 0 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aGp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "aGq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "aGr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south) "aGs" = ( /obj/structure/toilet, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "aGt" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -11414,30 +8530,22 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/surgery) "aGu" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/theta/airlock/east) "aGv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/theta/airlock/east) "aGw" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "aGx" = ( /obj/structure/window/framed/corsat, @@ -11452,57 +8560,38 @@ id = "OmegaN"; name = "Omega Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/airlocknorth) "aGz" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "aGA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/gamma/residential) "aGB" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/airlocknorth) "aGC" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/gamma/cargo) "aGD" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "aGE" = ( /obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aGF" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/theta/airlock/east) "aGG" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/theta/airlock/east) "aGI" = ( /obj/structure/toilet{ @@ -11511,37 +8600,26 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "aGJ" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "aGK" = ( /obj/structure/bedsheetbin, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "aGL" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "aGM" = ( /obj/structure/surface/rack, @@ -11551,26 +8629,17 @@ /obj/item/ammo_magazine/smg/mp27, /obj/item/ammo_magazine/smg/mp27, /obj/item/ammo_magazine/smg/mp27, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "aGN" = ( /obj/structure/machinery/bioprinter{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "aGO" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south/security) "aGP" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -11579,9 +8648,7 @@ req_access_txt = "106;102;103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "aGQ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -11590,18 +8657,14 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/chemistry) "aGR" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Engineering"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "aGS" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -11610,24 +8673,16 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "aGT" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/southeast/datalab) "aGU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "aGV" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -11636,16 +8691,10 @@ }, /obj/item/weapon/shield/riot, /obj/item/weapon/shield/riot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/south/security) "aGW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/southeast/datalab) "aGX" = ( /obj/structure/machinery/power/apc/high{ @@ -11653,33 +8702,23 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/southeast/datalab) "aGY" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aHa" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aHb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/gamma/cargo) "aHc" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -11687,9 +8726,7 @@ name = "Administration"; req_access_txt = "106" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "aHd" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -11698,23 +8735,16 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/east/id) "aHe" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "aHf" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aHg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -11731,9 +8761,7 @@ name = "Administration"; req_access_txt = "106" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "aHi" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -11743,9 +8771,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "aHj" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -11754,9 +8780,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "aHk" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -11766,33 +8790,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "aHm" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/gamma/cargo) "aHn" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/hallways) "aHo" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "aHp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -11802,9 +8816,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/west/id) "aHq" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -11814,9 +8826,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/west) "aHr" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ @@ -11826,15 +8836,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "aHs" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "aHt" = ( /obj/structure/closet/secure_closet/security_empty, @@ -11842,33 +8848,20 @@ /obj/item/clothing/accessory/storage/holster/armpit, /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/south/security) "aHu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "aHv" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "aHw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "aHx" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/south/security) "aHy" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -11877,9 +8870,7 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "aHz" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -11889,9 +8880,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "aHA" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -11901,17 +8890,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "aHB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "aHC" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -11920,9 +8905,7 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "aHD" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -11936,16 +8919,12 @@ name = "Virology Lockdown" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "aHE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/juicer, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "aHF" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -11960,9 +8939,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "aHG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -11972,17 +8949,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "aHH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/omega/cargo) "aHI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11992,23 +8965,16 @@ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/omega/cargo) "aHJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "aHK" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "aHL" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -12019,19 +8985,14 @@ name = "Omega Airlock" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/airlocknorth) "aHN" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/theta/airlock/east) "aHO" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -12041,9 +9002,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "aHP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -12052,9 +9011,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "aHQ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -12063,9 +9020,7 @@ name = "Food Storage"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "aHR" = ( /obj/structure/machinery/power/apc/high{ @@ -12073,27 +9028,20 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "aHS" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/theta/airlock/east) "aHT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "aHU" = ( /obj/structure/machinery/light{ @@ -12103,9 +9051,7 @@ /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/theta/airlock/east) "aHV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -12115,9 +9061,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "aHW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -12127,17 +9071,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "aHX" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "aHY" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -12147,15 +9085,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "aHZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "aIa" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -12164,9 +9097,7 @@ req_one_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "aIb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -12175,9 +9106,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/maint) "aIc" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -12187,22 +9116,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "aId" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "aIe" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/security) "aIf" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -12211,9 +9132,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/east/id) "aIg" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -12230,22 +9149,14 @@ id = "GammaAdmin"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "aIh" = ( /obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "aIi" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/airlocknorth) "aIj" = ( /obj/effect/landmark/survivor_spawner, @@ -12269,55 +9180,37 @@ /turf/open/floor/plating, /area/corsat/gamma/biodome/virology) "aIo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/biodome/virology) "aIp" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "aIq" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "aIr" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "aIs" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "aIt" = ( /turf/closed/wall/biodome, /area/corsat/gamma/biodome/complex) "aIu" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/biodome/complex) "aIv" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/hangar/office) "aIw" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "aIx" = ( /turf/closed/wall/r_wall/biodome, @@ -12332,85 +9225,53 @@ name = "Gamma Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "aIz" = ( /obj/structure/closet/crate/science, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "aIA" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/airlock/control) "aIB" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/gamma/biodome/complex) "aIC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/airlock/control) "aID" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/control) "aIE" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/airlock/control) "aIF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "aIG" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "aIH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "aII" = ( /obj/structure/window/framed/corsat/research, /turf/open/floor/plating, /area/corsat/gamma/biodome/complex) "aIJ" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/northwest, /area/corsat/gamma/biodome/complex) "aIK" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/gamma/airlock/control) "aIL" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "aIM" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "aIN" = ( /obj/structure/surface/table/reinforced, @@ -12418,23 +9279,16 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "aIO" = ( /turf/closed/wall/biodome, /area/corsat/gamma/biodome) "aIP" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/biodome/complex) "aIQ" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "aIR" = ( /obj/structure/closet/secure_closet/brig{ @@ -12445,20 +9299,13 @@ name = "Cell 1"; pixel_x = -32 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security/cells) "aIS" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "aIT" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "aIU" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -12467,9 +9314,7 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "aIV" = ( /obj/structure/closet/secure_closet/brig{ @@ -12480,18 +9325,13 @@ name = "Cell 2"; pixel_x = 32 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security/cells) "aIW" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "aIX" = ( /turf/open/floor/wood, @@ -12501,9 +9341,7 @@ /turf/open/floor/plating, /area/corsat/gamma/biodome/toxins) "aIZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "aJa" = ( /turf/closed/wall/biodome, @@ -12515,10 +9353,7 @@ req_access_txt = "100"; req_one_access_txt = "0" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) "aJc" = ( /obj/structure/window/framed/corsat, @@ -12526,21 +9361,13 @@ /area/corsat/gamma/airlock/control) "aJd" = ( /obj/structure/coatrack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aJe" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "aJf" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "aJg" = ( /obj/structure/sink{ @@ -12550,19 +9377,13 @@ /obj/structure/mirror{ pixel_y = 24 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) "aJh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/cargo) "aJi" = ( /obj/structure/sink{ @@ -12572,23 +9393,15 @@ /obj/structure/mirror{ pixel_y = 24 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) "aJj" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/theta/airlock/east) "aJk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "aJl" = ( /obj/structure/window/framed/corsat, @@ -12598,83 +9411,48 @@ /turf/closed/wall/r_wall, /area/corsat/sigma/biodome/gunrange) "aJn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome) "aJo" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/corsat/gamma/biodome/complex) "aJp" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/biodome/complex) "aJq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/corsat/gamma/biodome/complex) "aJr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "aJs" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) "aJt" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/airlock/control) "aJu" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/hallwaysouth) "aJv" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "aJw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome) "aJx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "aJy" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "aJz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south) "aJA" = ( /obj/structure/machinery/power/apc/high{ @@ -12685,71 +9463,42 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/corsat/gamma/cargo/disposal) "aJB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/corsat/gamma/biodome/complex) "aJC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/biodome/complex) "aJD" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/biodome/complex) "aJE" = ( /obj/structure/disposaloutlet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/gamma/cargo/disposal) "aJF" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "aJG" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/airlock/control) "aJH" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/airlock/control) "aJI" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome) "aJJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome) "aJK" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "aJL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -12759,22 +9508,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "aJM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "aJN" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security) "aJO" = ( /obj/structure/window/framed/corsat/security, @@ -12782,9 +9523,7 @@ /area/corsat/sigma/airlock/control) "aJP" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/gamma/cargo) "aJQ" = ( /obj/structure/machinery/power/apc/high{ @@ -12792,10 +9531,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "aJR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -12803,46 +9539,29 @@ req_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "aJS" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "aJT" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south/security) "aJU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/theta/airlock/control) "aJV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/theta/airlock/control) "aJW" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/control) "aJX" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "aJY" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/control) "aJZ" = ( /turf/open/gm/grass/grass1/weedable, @@ -12859,9 +9578,7 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aKc" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -12869,20 +9586,13 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/id) "aKe" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/gamma/airlock/control) "aKf" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "aKg" = ( /obj/structure/window/framed/corsat, @@ -12932,94 +9642,63 @@ "aKv" = ( /obj/structure/closet/crate/science, /obj/item/ore/diamond, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/sigma/south/complex) "aKw" = ( /obj/structure/closet/secure_closet/security, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) "aKx" = ( /obj/structure/sign/safety/airlock{ pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/sigma/south) "aKy" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/theta/biodome/hydroeast) "aKz" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "aKA" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/south) "aKB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/south) "aKC" = ( /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/theta/biodome/complex) "aKD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/theta/biodome/complex) "aKE" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "aKF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/south) "aKG" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "aKH" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/biodome/complex) "aKI" = ( /obj/structure/machinery/door_control{ @@ -13035,20 +9714,14 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/airlock/control) "aKJ" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("theta") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/west, /area/corsat/theta/biodome/complex) "aKK" = ( /turf/closed/wall/biodome, @@ -13057,115 +9730,74 @@ /turf/closed/wall/biodome, /area/corsat/theta/biodome/hydroeast) "aKM" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydrowest) "aKN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydrowest) "aKO" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydrowest) "aKP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/hydrowest) "aKQ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydroeast) "aKR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/hydroeast) "aKS" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydroeast) "aKT" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydroeast) "aKV" = ( /obj/structure/prop/almayer/particle_cannon/corsat, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "aKW" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "aKX" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "aKY" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) "aKZ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) "aLa" = ( /obj/structure/closet/crate/trashcart, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/gamma/cargo/disposal) "aLb" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "aLc" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aLd" = ( /obj/structure/closet/secure_closet{ @@ -13175,10 +9807,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "aLe" = ( /obj/structure/machinery/light{ @@ -13186,26 +9815,18 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "aLf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "Hangar Office" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "aLg" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "aLh" = ( /turf/closed/wall/r_wall/biodome, @@ -13220,41 +9841,25 @@ name = "Virology Wing"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "aLj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/control) "aLk" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/control) "aLl" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "aLm" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/sigma/south/complex) "aLn" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/airlock/control) "aLo" = ( /obj/structure/window/framed/corsat/security, @@ -13272,39 +9877,25 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/airlocknorth) "aLq" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "aLs" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/control) "aLt" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/control) "aLu" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/hallways) "aLv" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/control) "aLw" = ( /obj/structure/machinery/power/apc/high{ @@ -13312,38 +9903,25 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/airlock/south/id) "aLx" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/theta/airlock/east/id) "aLy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/sigma/south) "aLA" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south/id) "aLB" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south/id) "aLC" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/dataoffice) "aLD" = ( /obj/structure/machinery/power/apc/high{ @@ -13351,15 +9929,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "aLE" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/south) "aLH" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -13367,9 +9940,7 @@ name = "Gamma Cargo Bay"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/cargo) "aLI" = ( /obj/structure/machinery/door_control{ @@ -13378,60 +9949,40 @@ pixel_x = -24; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, +/turf/open/floor/corsat/arrow_north, /area/corsat/gamma/cargo) "aLK" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/security) "aLL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "aLM" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "aLN" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "aLO" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "aLP" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/south) "aLQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/south) "aLR" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "aLS" = ( /obj/structure/surface/table/reinforced, @@ -13439,19 +9990,13 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/theta/airlock/east/id) "aLT" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "aLU" = ( /obj/structure/window/framed/corsat/security, @@ -13467,14 +10012,10 @@ "aLW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "aLX" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "aLY" = ( /obj/structure/window/framed/corsat/security, @@ -13485,26 +10026,17 @@ /turf/open/floor/plating, /area/corsat/theta/airlock/east/id) "aLZ" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/west) "aMa" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/east) "aMb" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "aMc" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/airlocknorth) "aMd" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -13517,16 +10049,11 @@ name = "Identification Desk"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/west/id) "aMf" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/south/security) "aMg" = ( /obj/structure/surface/table/reinforced, @@ -13535,97 +10062,65 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/theta/airlock/east/id) "aMh" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/mask/cigarette/cigar/cohiba, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/east/id) "aMi" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "aMj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/east/id) "aMk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/east/id) "aMl" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/theta/airlock/east/id) "aMm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/theta/airlock/east/id) "aMn" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "aMo" = ( /obj/item/device/assembly/voice, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "aMp" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "aMq" = ( /obj/structure/machinery/autolathe, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "aMr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "aMs" = ( /obj/structure/machinery/power/apc/hyper{ @@ -13634,10 +10129,7 @@ start_charge = 0 }, /obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "aMt" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -13647,16 +10139,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "aMu" = ( /obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "aMv" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -13665,15 +10152,11 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "aMw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "aMx" = ( /obj/structure/surface/table/reinforced, @@ -13683,32 +10166,24 @@ start_charge = 0 }, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth/id) "aMy" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/east/id) "aMz" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "aMA" = ( /obj/structure/surface/table/reinforced, /obj/item/xeno_restraints, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth/id) "aMB" = ( /obj/structure/closet/secure_closet/security_empty, @@ -13719,76 +10194,51 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth) "aMC" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "aMD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/airlocknorth) "aME" = ( /obj/structure/bedsheetbin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "aMF" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "aMG" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, +/turf/open/floor/corsat/arrow_south, /area/corsat/gamma/cargo) "aMH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/gamma/cargo) "aMI" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/east/id) "aMJ" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, +/turf/open/floor/corsat/arrow_north, /area/corsat/gamma/cargo) "aMK" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo/disposal) "aML" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "aMM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -13797,23 +10247,17 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datamaint) "aMN" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/east/id) "aMO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datamaint) "aMP" = ( /obj/structure/bed{ @@ -13825,9 +10269,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "aMR" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/east/id) "aMS" = ( /obj/structure/surface/table/reinforced, @@ -13836,44 +10278,28 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/theta/airlock/east/id) "aMT" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/south) "aMU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south) "aMV" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "aMW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/southeast/datamaint) "aMX" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datamaint) "aMY" = ( /obj/structure/closet/crate, @@ -13885,40 +10311,26 @@ /obj/item/stack/rods{ amount = 25 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/residential/maint) "aMZ" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "aNa" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "aNb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "Administration Office" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "aNc" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/southeast/dataoffice) "aNe" = ( /obj/structure/machinery/power/apc/high{ @@ -13926,32 +10338,22 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/southeast/dataoffice) "aNg" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "aNh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/northeast, /area/corsat/sigma/south) "aNi" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "aNj" = ( /obj/structure/surface/rack, @@ -13961,10 +10363,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/theta/airlock/east/id) "aNk" = ( /obj/structure/machinery/computer/cameras{ @@ -13975,10 +10374,7 @@ /area/corsat/gamma/administration) "aNl" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/theta/airlock/east/id) "aNm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -13989,17 +10385,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "aNn" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "aNo" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -14008,9 +10400,7 @@ req_access_txt = "106" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "aNp" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -14018,28 +10408,19 @@ name = "Administration"; req_access_txt = "106" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "aNq" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/south/offices) "aNr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/southeast/datalab) "aNs" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/datalab) "aNt" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/datalab) "aNu" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -14049,35 +10430,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/datalab) "aNv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/south/offices) "aNw" = ( /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, /area/corsat/theta/airlock/east/id) "aNx" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "aNy" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "aNz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "aNB" = ( /obj/structure/machinery/power/apc/high{ @@ -14086,34 +10456,23 @@ start_charge = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "aNC" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/surgery) "aND" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/chemistry) "aNE" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/south/security) "aNF" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/chemistry) "aNG" = ( /obj/structure/surface/rack, @@ -14126,9 +10485,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aNH" = ( /obj/structure/window/framed/corsat/security, @@ -14146,9 +10503,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "aNJ" = ( /obj/structure/machinery/door_control{ @@ -14157,9 +10512,7 @@ pixel_x = 24; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, +/turf/open/floor/corsat/arrow_north, /area/corsat/gamma/cargo) "aNK" = ( /turf/closed/wall/r_wall/biodome, @@ -14169,10 +10522,7 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security/cells) "aNM" = ( /obj/structure/surface/rack, @@ -14182,125 +10532,77 @@ req_access_txt = "103" }, /obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aNN" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/security) "aNO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "aNP" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/security/cells) "aNQ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/cells) "aNR" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security/armory) "aNS" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/security/cells) "aNT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security/cells) "aNU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/security) "aNV" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "aNW" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "aNX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security) "aNY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/gamma/hangar/arrivals) "aNZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "aOa" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/checkpoint) "aOb" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/checkpoint) "aOc" = ( /obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "aOd" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/checkpoint) "aOe" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/corsat/gamma/hangar/monorail/railcart) "aOf" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/hangar/checkpoint) "aOg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/sigma/south) "aOh" = ( /obj/structure/machinery/power/apc/high{ @@ -14308,39 +10610,26 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/foyer) "aOi" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "aOj" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) "aOk" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south/security) "aOl" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail/control) "aOm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -14351,22 +10640,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "aOn" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south/security) "aOo" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south) "aOp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -14375,88 +10656,55 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/security) "aOq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/gamma/hangar/office) "aOr" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/gamma/hangar) "aOs" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/hangar) "aOt" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/hangar) "aOu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/hangar/arrivals) "aOv" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/south/security) "aOw" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/hangar) "aOx" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/gamma/hangar) "aOy" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/south/security) "aOz" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/cargo) "aOA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/hangar/cargo) "aOB" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/south/security) "aOC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -14469,9 +10717,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "aOE" = ( /obj/structure/showcase, @@ -14486,71 +10732,44 @@ dir = 1; layer = 2.9 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/south) "aOF" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "aOG" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/hangar/monorail/control) "aOH" = ( /obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aOI" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/sigma/south/complex) "aOJ" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/hangar) "aOK" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "aOL" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "aOM" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, +/turf/open/floor/corsat/arrow_south, /area/corsat/sigma/hangar) "aON" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/hangar/id) "aOP" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "aOQ" = ( /obj/structure/pipes/standard/simple/visible{ @@ -14565,9 +10784,7 @@ dir = 1; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aOS" = ( /obj/structure/showcase{ @@ -14579,35 +10796,26 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aOT" = ( /turf/closed/wall/biodome, /area/corsat/emergency_access) "aOU" = ( -/turf/open/floor/corsat{ - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner, /area/corsat/theta/biodome/complex) "aOW" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "aOX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "aOY" = ( /obj/structure/machinery/power/apc/hyper{ @@ -14615,24 +10823,17 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/office) "aOZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "aPa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "aPb" = ( /obj/structure/computerframe, @@ -14648,36 +10849,25 @@ /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aPd" = ( /obj/structure/machinery/power/apc/hyper{ dir = 1; pixel_y = 25 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security/armory) "aPe" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/armory) "aPf" = ( /obj/effect/alien/weeds/node, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome) "aPg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "aPh" = ( /obj/structure/machinery/power/apc/hyper{ @@ -14685,33 +10875,23 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/security) "aPj" = ( /obj/item/paper, /obj/item/tool/pen, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aPk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/security) "aPl" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "aPm" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -14719,93 +10899,67 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering/atmos) "aPn" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "aPo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/security) "aPp" = ( /obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aPq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "aPr" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/residential/researcher) "aPs" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aPt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aPu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "aPv" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/sigma/airlock/south) "aPw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "aPx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "aPy" = ( /obj/structure/window/framed/corsat, @@ -14823,54 +10977,38 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/checkpoint) "aPA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/checkpoint) "aPB" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/corsat/gamma/hangar/monorail/railcart) "aPC" = ( /obj/effect/landmark/yautja_teleport, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aPD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "aPE" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, +/turf/open/floor/corsat/arrow_south, /area/corsat/gamma/hangar) "aPF" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/crap_item, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/foyer) "aPG" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -14881,9 +11019,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Arrivals" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "aPJ" = ( /obj/structure/flora/jungle/alienplant1, @@ -14895,10 +11031,7 @@ /obj/structure/machinery/computer/cameras{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/hangar/monorail/control) "aPL" = ( /obj/structure/shuttle/diagonal{ @@ -14914,9 +11047,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/checkpoint) "aPN" = ( /obj/effect/landmark/yautja_teleport, @@ -14935,21 +11066,14 @@ /obj/structure/machinery/door/airlock/dropship_hatch/monorail{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/corsat/gamma/hangar/monorail/railcart) "aPR" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/airlock/south) "aPS" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/gamma/engineering/core) "aPT" = ( /obj/structure/window/framed/corsat, @@ -14970,16 +11094,11 @@ id = "ThetaIDEC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east/id) "aPV" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/foyer) "aPW" = ( /obj/structure/window/framed/corsat, @@ -14990,49 +11109,32 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) "aPY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "aPZ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "aQa" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/cargo) "aQb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "aQc" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "aQd" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/residential/maint) "aQe" = ( /turf/closed/shuttle/ert{ @@ -15056,10 +11158,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/hangar/office) "aQi" = ( /obj/structure/window/framed/corsat/hull/security, @@ -15083,18 +11182,13 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/theta/airlock/control) "aQm" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/hangar/office) "aQn" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/prison/hangar_storage/research/shuttle) "aQo" = ( /obj/structure/window/framed/corsat/security, @@ -15104,106 +11198,71 @@ /obj/structure/surface/table/almayer, /obj/item/trash/raisins, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "aQq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/core) "aQr" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/hangar) "aQs" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hangar) "aQt" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar) "aQu" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/omega/hangar) "aQv" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/glass, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "aQw" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/core) "aQx" = ( /obj/effect/alien/weeds/node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "aQy" = ( /obj/structure/tunnel{ id = "hole4" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "aQz" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/emergency_access) "aQA" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "aQB" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "aQC" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/emergency_access) "aQD" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/hangar/security) "aQE" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/hangar/office) "aQF" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "aQG" = ( /obj/structure/bookcase/manuals/research_and_development, @@ -15214,15 +11273,11 @@ /area/corsat/gamma/residential/researcher) "aQH" = ( /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aQI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aQJ" = ( /obj/effect/decal/cleanable/dirt, @@ -15231,9 +11286,7 @@ "aQK" = ( /obj/item/tool/wet_sign, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential/maint) "aQL" = ( /obj/structure/machinery/light{ @@ -15242,19 +11295,13 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security/cells) "aQM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "aQN" = ( /obj/structure/closet/crate, @@ -15264,10 +11311,7 @@ /obj/item/stack/sheet/glass{ amount = 30 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/residential/maint) "aQO" = ( /turf/open/floor/corsat, @@ -15276,45 +11320,30 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/rnr) "aQQ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aQR" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "aQS" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/engineering) "aQT" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "aQU" = ( /obj/effect/decal/cleanable/cobweb{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aQV" = ( /obj/structure/computerframe, @@ -15329,9 +11358,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/researcher) "aQY" = ( /obj/structure/sink{ @@ -15339,25 +11366,17 @@ pixel_y = -10 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "aQZ" = ( /obj/item/paper_bin, /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/gamma/residential/lounge) "aRa" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "aRb" = ( /obj/structure/computerframe, @@ -15371,42 +11390,29 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "aRd" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "aRe" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "aRf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "aRg" = ( /obj/item/tool/pen, /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/residential/lounge) "aRh" = ( /obj/item/reagent_container/food/snacks/grown/tomato, @@ -15420,27 +11426,19 @@ /obj/item/reagent_container/food/snacks/grown/tomato, /obj/item/reagent_container/food/snacks/grown/tomato, /obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "aRj" = ( /obj/item/paper, /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/residential/lounge) "aRk" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering) "aRl" = ( /obj/structure/surface/table/woodentable, @@ -15456,9 +11454,7 @@ /obj/structure/surface/table/almayer, /obj/item/folder/yellow, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "aRn" = ( /obj/structure/window/framed/corsat, @@ -15473,9 +11469,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "aRp" = ( /turf/open/floor/plating, @@ -15484,24 +11478,16 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "aRr" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/arrivals) "aRs" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/residential/lounge) "aRt" = ( /obj/structure/sign/safety/airlock, @@ -15511,9 +11497,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "aRv" = ( /obj/structure/window/framed/corsat, @@ -15523,113 +11507,76 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "aRx" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/hangar) "aRy" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "aRz" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "aRA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/canteen) "aRB" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "aRD" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hallwaysouth) "aRE" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) "aRF" = ( /obj/item/paper, /obj/item/tool/pen, /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/corsat/gamma/residential/lounge) "aRG" = ( /obj/item/tool/pen, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aRH" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/office) "aRJ" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/hangar) "aRK" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "aRM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -15637,34 +11584,23 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "aRN" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hangar/monorail) "aRO" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/biodome/virology) "aRP" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/morgue) "aRQ" = ( /obj/structure/machinery/light, @@ -15672,84 +11608,60 @@ dir = 1 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aRS" = ( /obj/structure/machinery/computer/emails{ dir = 1 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "aRT" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay) "aRU" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "aRV" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "aRW" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "aRX" = ( /obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/cargo/disposal) "aRY" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "aRZ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "aSa" = ( /obj/structure/lattice, /turf/open/space, /area/space) "aSb" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aSc" = ( /obj/structure/machinery/light{ @@ -15757,49 +11669,34 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "aSd" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "aSe" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "aSf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "aSg" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "aSh" = ( /obj/structure/machinery/light, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar) "aSi" = ( /obj/structure/surface/table/almayer, @@ -15807,37 +11704,25 @@ /obj/item/bodybag, /obj/item/bodybag, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay) "aSj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "aSk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "aSl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/west, /area/corsat/gamma/medbay) "aSm" = ( /obj/structure/window/framed/almayer/white, @@ -15851,10 +11736,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "aSp" = ( /obj/structure/window/framed/almayer/white, @@ -15871,25 +11753,16 @@ /obj/structure/closet/secure_closet/medical2{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "aSs" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/checkpoint) "aSt" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/control) "aSu" = ( /obj/structure/machinery/light{ @@ -15897,26 +11770,18 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "aSv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "aSw" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "aSx" = ( /obj/structure/surface/table/reinforced, @@ -15931,60 +11796,43 @@ id = "SigmaHangarC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "aSy" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "aSz" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) "aSA" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "aSB" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) "aSC" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "aSD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/gamma/biodome/complex) "aSE" = ( /obj/structure/machinery/light{ @@ -15993,50 +11841,36 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/gamma/biodome/complex) "aSF" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aSG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "aSH" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aSJ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/security) "aSL" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/complex) "aSM" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ @@ -16046,65 +11880,47 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo/lobby) "aSN" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "aSO" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/gamma/biodome/complex) "aSP" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "aSQ" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "aSR" = ( /obj/item/trash/chips, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "aSS" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "aST" = ( /obj/item/trash/candy, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "aSU" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "aSV" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -16122,93 +11938,65 @@ /area/corsat/inaccessible) "aSX" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydrowest) "aSY" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "aSZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "aTa" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/airlock/control) "aTb" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/gamma/airlock/control) "aTc" = ( /obj/structure/barricade/handrail{ layer = 3 }, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aTd" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "aTe" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/airlock/control) "aTf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "aTg" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "aTi" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/security) "aTj" = ( /obj/structure/surface/table/woodentable, @@ -16217,87 +12005,60 @@ /area/corsat/gamma/rnr/bar) "aTk" = ( /obj/item/trash/burger, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "aTl" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aTm" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "aTn" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/reagent_container/glass/bottle/capsaicin, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/toxins) "aTo" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) "aTp" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/hallwaysouth) "aTq" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "aTr" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/id) "aTs" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/id) "aTt" = ( /obj/item/trash/buritto, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "aTu" = ( /obj/item/device/camera, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aTv" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -16309,84 +12070,58 @@ "aTw" = ( /obj/item/storage/fancy/cigar, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aTx" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "aTy" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) "aTz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "aTA" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "aTB" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "aTC" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/gamma/biodome/complex) "aTD" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/control) "aTE" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/north) "aTF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/north) "aTG" = ( /obj/structure/machinery/light{ @@ -16404,17 +12139,11 @@ /obj/item/phone, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/biodome/complex) "aTK" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/biodome/complex) "aTL" = ( /obj/structure/sign/safety/airlock, @@ -16423,19 +12152,13 @@ "aTM" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/corsat/gamma/biodome/complex) "aTN" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/north) "aTO" = ( /obj/structure/machinery/light{ @@ -16445,15 +12168,10 @@ dir = 4 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aTP" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/biodome) "aTQ" = ( /obj/structure/machinery/light{ @@ -16463,10 +12181,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/toxins) "aTR" = ( /obj/structure/machinery/light{ @@ -16475,29 +12190,20 @@ /obj/structure/surface/rack, /obj/item/reagent_container/ld50_syringe/choral, /obj/item/reagent_container/ld50_syringe, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/toxins) "aTS" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "aTT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) "aTU" = ( /obj/structure/machinery/door_control{ @@ -16519,30 +12225,21 @@ use_power = 0 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/corsat/gamma/biodome/complex) "aTV" = ( /obj/structure/machinery/computer/skills{ dir = 4 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aTW" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "aTX" = ( /obj/item/storage/box/monkeycubes, @@ -16550,10 +12247,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/containment) "aTY" = ( /obj/structure/machinery/light{ @@ -16562,63 +12256,43 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/canteen) "aTZ" = ( /obj/structure/lamarr, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aUa" = ( /obj/item/tool/stamp/rd, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aUb" = ( /obj/structure/largecrate/supply/floodlights, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "aUc" = ( /obj/item/paper_bin, /obj/item/tool/pen, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "aUd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/north) "aUe" = ( /obj/structure/machinery/light, /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "aUf" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "aUg" = ( /obj/structure/machinery/light, @@ -16627,35 +12301,25 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "aUh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "aUi" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/sigma/north) "aUj" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "aUk" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "aUl" = ( /obj/structure/surface/table/almayer, @@ -16664,16 +12328,12 @@ health = 250 }, /obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "aUm" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "aUn" = ( /obj/structure/sign/safety/airlock, @@ -16688,19 +12348,13 @@ "aUp" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/hangar/cargo) "aUq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/sigma/cargo) "aUr" = ( /obj/item/storage/fancy/cigar, @@ -16721,28 +12375,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/gamma/foyer) "aUw" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/corsat/gamma/hallwaysouth) "aUx" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aUy" = ( /obj/item/disk/botany, @@ -16753,25 +12398,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/cargo) "aUA" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "aUB" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) "aUC" = ( /obj/item/toy/prize/ripley{ @@ -16824,10 +12461,7 @@ dir = 8 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/corsat/gamma/administration) "aUL" = ( /obj/structure/surface/table/woodentable, @@ -16842,10 +12476,7 @@ /obj/item/tank/air, /obj/item/tank/air, /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "aUN" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -16858,26 +12489,17 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/sigma/dorms) "aUP" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "aUQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "aUR" = ( /obj/effect/decal/cleanable/cobweb{ @@ -16893,26 +12515,18 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "aUT" = ( /obj/structure/surface/rack, /obj/item/tank/oxygen, /obj/item/tank/oxygen, /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "aUU" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/corsat/gamma/administration) "aUV" = ( /obj/structure/machinery/light{ @@ -16921,19 +12535,13 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/dorms) "aUW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/checkpoint) "aUX" = ( /obj/structure/machinery/light{ @@ -16942,51 +12550,36 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/dorms) "aUY" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/sigma/dorms) "aUZ" = ( /obj/structure/machinery/computer/emails{ dir = 4 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/corsat/gamma/administration) "aVa" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/omega/cargo) "aVb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "aVc" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/theta/airlock/control) "aVd" = ( /obj/structure/flora/pottedplant, @@ -17021,17 +12614,13 @@ /area/corsat/sigma/dorms) "aVh" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/sigma/dorms) "aVi" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "aVj" = ( /obj/structure/surface/table/woodentable, @@ -17044,10 +12633,7 @@ "aVl" = ( /obj/item/folder/blue, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/gamma/administration) "aVm" = ( /obj/item/paper, @@ -17055,18 +12641,12 @@ /obj/item/tool/stamp/rd, /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aVn" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/stamp/rd, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) "aVo" = ( /obj/structure/shuttle/diagonal{ @@ -17080,68 +12660,45 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/theta/airlock/control) "aVq" = ( /obj/structure/closet/secure_closet/CMO, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay) "aVr" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aVs" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "aVt" = ( /obj/item/device/flashlight/lamp, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/corsat/gamma/administration) "aVu" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/hallways) "aVv" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/checkpoint) "aVw" = ( /obj/item/folder/black, /obj/item/tool/stamp/rd, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/gamma/administration) "aVx" = ( /obj/structure/machinery/light{ @@ -17150,19 +12707,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) "aVy" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aVz" = ( /obj/item/device/flashlight/lamp, @@ -17170,10 +12722,7 @@ dir = 10 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/corsat/gamma/administration) "aVA" = ( /obj/item/folder/white, @@ -17182,10 +12731,7 @@ dir = 6 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/gamma/administration) "aVB" = ( /obj/structure/toilet{ @@ -17194,101 +12740,70 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/theta/biodome/complex) "aVC" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aVD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "aVE" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/southeast) "aVF" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/omega/offices) "aVG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "aVH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/theta/airlock/control) "aVI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/theta/airlock/control) "aVJ" = ( /obj/item/paper, /obj/item/tool/pen/red, /obj/item/tool/stamp/rd, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/gamma/administration) "aVK" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/south) "aVL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "aVM" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "aVO" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -17296,44 +12811,30 @@ name = "Security Armory"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "aVP" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "aVQ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/southeast/dataoffice) "aVT" = ( /obj/item/folder/yellow, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aVU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "aVV" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -17345,52 +12846,37 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/arrivals) "aVW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "aVX" = ( /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aVY" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "aVZ" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/south) "aWa" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security) "aWb" = ( /obj/structure/machinery/light{ @@ -17398,43 +12884,29 @@ }, /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "aWc" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/security) "aWd" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, +/turf/open/floor/corsat/arrow_north, /area/corsat/sigma/cargo) "aWf" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "aWh" = ( /obj/structure/largecrate/cow, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "aWi" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "aWj" = ( /obj/structure/surface/table/woodentable, @@ -17443,9 +12915,7 @@ layer = 2.8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "aWk" = ( /obj/structure/machinery/light{ @@ -17456,10 +12926,7 @@ }, /obj/item/clothing/head/beret/sec/warden, /obj/item/clothing/mask/fakemoustache, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) "aWl" = ( /obj/structure/surface/table/woodentable, @@ -17469,9 +12936,7 @@ layer = 2.8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "aWm" = ( /obj/item/paper_bin, @@ -17481,112 +12946,76 @@ /area/corsat/gamma/administration) "aWn" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/sigma/south/complex) "aWo" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/airlocknorth/id) "aWp" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/hangar/office) "aWq" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/hallways) "aWr" = ( /obj/structure/machinery/conveyor{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "aWs" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/south) "aWt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/southeast) "aWu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/cargo) "aWv" = ( /obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/gamma/cargo/disposal) "aWw" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast) "aWx" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hallways) "aWy" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/omega/hallways) "aWz" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/south/id) "aWA" = ( /obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "aWB" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "aWC" = ( /obj/structure/machinery/power/apc/hyper{ @@ -17594,9 +13023,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aWD" = ( /obj/structure/machinery/light{ @@ -17604,43 +13031,29 @@ }, /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "aWF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/southeast/datalab) "aWG" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/southeast/datalab) "aWH" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/sigma/south) "aWI" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/southeast/datalab) "aWK" = ( /obj/structure/surface/table/woodentable/fancy, @@ -17649,59 +13062,40 @@ "aWM" = ( /obj/item/tool/stamp/hop, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aWN" = ( /obj/item/ashtray/bronze, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aWO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/south/security) "aWP" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) "aWQ" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/airlocknorth/id) "aWR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/containment) "aWS" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/hallways) "aWT" = ( /obj/structure/machinery/faxmachine{ @@ -17709,38 +13103,26 @@ req_one_access_txt = "106" }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/gamma/administration) "aWW" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "aWY" = ( /obj/structure/surface/rack, /obj/item/device/toner, /obj/item/device/toner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/residential/maint) "aWZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/southeast/datalab) "aXa" = ( /obj/structure/surface/table/woodentable, @@ -17752,9 +13134,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) "aXc" = ( /obj/structure/machinery/light{ @@ -17763,41 +13143,28 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "aXd" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "aXe" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) "aXg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) "aXh" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/southeast/datalab) "aXi" = ( /obj/structure/machinery/light{ @@ -17806,28 +13173,20 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/canteen) "aXj" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) "aXk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "aXl" = ( /obj/structure/machinery/light{ @@ -17835,52 +13194,39 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "aXm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/cargo) "aXn" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/airlocknorth) "aXo" = ( /obj/structure/machinery/computer/telecomms/server{ req_one_access_txt = "19;106;102" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aXp" = ( /obj/structure/showcase{ icon_state = "broadcaster_send" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aXq" = ( /obj/structure/showcase{ icon_state = "relay"; name = "Telecommunication Relay" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aXr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -17890,9 +13236,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/telecomm) "aXs" = ( /obj/structure/machinery/door_control{ @@ -17908,34 +13252,23 @@ use_power = 0 }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "aXt" = ( /obj/structure/machinery/recycler, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/gamma/cargo/disposal) "aXu" = ( /obj/item/folder/black_random, /obj/item/clothing/mask/cigarette/cigar/havana, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/security) "aXv" = ( /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/lighter/random, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "aXw" = ( /obj/structure/window/framed/corsat/hull, @@ -17947,21 +13280,14 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "aXy" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "aXz" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/sigma/southeast/datalab) "aXB" = ( /obj/structure/barricade/handrail{ @@ -17970,9 +13296,7 @@ /obj/structure/surface/table/woodentable, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "aXC" = ( /obj/structure/barricade/handrail{ @@ -17980,24 +13304,17 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "aXD" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/airlocknorth) "aXE" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/airlocknorth) "aXF" = ( /obj/structure/surface/table/almayer, @@ -18006,9 +13323,7 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "aXG" = ( /obj/structure/reagent_dispensers/virusfood{ @@ -18016,41 +13331,30 @@ }, /obj/structure/surface/rack, /obj/item/reagent_container/glass/bottle/random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "aXH" = ( /obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "aXJ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/id) "aXM" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/hangar/monorail) "aXN" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "aXO" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -18060,49 +13364,37 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "aXP" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/hangar/monorail) "aXQ" = ( /obj/structure/machinery/light, /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/hangar/monorail) "aXR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/biodome/complex) "aXS" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "aXT" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "aXU" = ( /turf/open/floor/wood, @@ -18111,42 +13403,30 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/security) "aXW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/corsat/theta/biodome/complex) "aXX" = ( /obj/item/toy/deck, /obj/structure/machinery/light, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/sigma/dorms) "aXY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "aXZ" = ( /obj/item/folder/black_random, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "aYa" = ( /obj/structure/surface/table/almayer, @@ -18158,26 +13438,19 @@ /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "aYb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/atmos) "aYc" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydrowest) "aYd" = ( /obj/structure/machinery/shower, @@ -18188,10 +13461,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aYe" = ( /obj/structure/machinery/shower, @@ -18201,39 +13471,28 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aYf" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydroeast) "aYg" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/hydrowest) "aYh" = ( /obj/structure/machinery/light, /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "aYi" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "aYj" = ( /obj/structure/sink{ @@ -18244,10 +13503,7 @@ dir = 4; pixel_x = -32 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aYk" = ( /obj/structure/toilet{ @@ -18256,64 +13512,43 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "aYl" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/south/security) "aYn" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/theta/biodome/hydroeast) "aYp" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "aYq" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Waste Tank Control" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering/atmos) "aYr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "aYs" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "aYt" = ( /obj/structure/machinery/light, /obj/item/clothing/mask/gas, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "aYu" = ( /obj/structure/machinery/light{ @@ -18321,18 +13556,13 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "aYv" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/hangar/monorail/control) "aYw" = ( /obj/structure/machinery/light, @@ -18342,71 +13572,49 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "aYz" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "aYA" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bottle/random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "aYB" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar) "aYC" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/hangar/monorail/control) "aYD" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aYE" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "aYF" = ( /obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aYG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "aYH" = ( /obj/structure/machinery/light{ @@ -18415,124 +13623,85 @@ /obj/effect/landmark/crap_item, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "aYI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hangar) "aYJ" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aYK" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "aYL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay/chemistry) "aYM" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "aYN" = ( /obj/structure/machinery/pipedispenser, /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "aYO" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "aYP" = ( /obj/structure/cargo_container/arious/right, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aYQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/security) "aYR" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/theta/biodome) "aYS" = ( /obj/structure/machinery/processor, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "aYT" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "aYV" = ( /obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aYW" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/airlock/south) "aYX" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "aYY" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/researcher) "aYZ" = ( /obj/structure/surface/table/almayer, @@ -18541,10 +13710,7 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "aZa" = ( /obj/structure/window/framed/corsat/hull/security, @@ -18554,10 +13720,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hangar/security) "aZc" = ( /obj/structure/surface/table/reinforced, @@ -18567,18 +13730,13 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "aZd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar) "aZe" = ( /turf/closed/wall/r_wall/biodome, @@ -18587,57 +13745,39 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/office) "aZg" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/office) "aZh" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZi" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar) "aZj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "aZk" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/morgue) "aZl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "aZm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -18650,10 +13790,7 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZo" = ( /obj/structure/machinery/power/apc/hyper{ @@ -18661,16 +13798,11 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "aZp" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aZq" = ( /obj/structure/bed/chair/wood/normal, @@ -18690,9 +13822,7 @@ /area/corsat/sigma/dorms) "aZs" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aZt" = ( /obj/structure/platform{ @@ -18700,17 +13830,11 @@ layer = 2.7 }, /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZu" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar/security) "aZv" = ( /obj/structure/pipes/vents/pump{ @@ -18721,10 +13845,7 @@ layer = 2.7 }, /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZw" = ( /obj/structure/bed/chair/wood/normal, @@ -18753,9 +13874,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "aZA" = ( /obj/structure/surface/table/almayer, @@ -18764,9 +13883,7 @@ health = 80 }, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "aZB" = ( /obj/structure/bed/chair/wood/normal{ @@ -18789,28 +13906,21 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "aZD" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "SigmaSouthS"; name = "Sigma South Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/south) "aZE" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "aZF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18821,10 +13931,7 @@ layer = 2.7 }, /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18835,33 +13942,23 @@ layer = 2.7 }, /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/southeast/generator) "aZI" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "aZJ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "aZK" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -18870,19 +13967,13 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/sigma/south/complex) "aZM" = ( /obj/structure/stairs, @@ -18890,43 +13981,31 @@ dir = 4; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZN" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/sigma/south/complex) "aZQ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/entrance/west, /area/corsat/inaccessible) "aZR" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/corsat/inaccessible) "aZS" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datamaint) "aZT" = ( /obj/structure/platform{ @@ -18934,10 +14013,7 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZV" = ( /obj/structure/machinery/light{ @@ -18946,40 +14022,28 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "aZW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "aZX" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) "aZY" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "aZZ" = ( /obj/structure/surface/table, /obj/item/folder/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "baa" = ( /obj/structure/machinery/light{ @@ -18988,29 +14052,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/control) "bab" = ( /obj/structure/platform{ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "bac" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/control) "bad" = ( /obj/structure/surface/table/almayer, @@ -19020,18 +14075,13 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "bae" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/omega/control) "baf" = ( /obj/structure/closet/secure_closet/security_empty, @@ -19042,17 +14092,12 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/control) "bag" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/engineering) "bah" = ( /obj/structure/closet/secure_closet/security_empty, @@ -19063,28 +14108,21 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/control) "bai" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "OmegaHangarN"; name = "Landing Bay Omega" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) "baj" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "OmegaHangarNE"; name = "Landing Bay Omega" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) "bak" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -19092,38 +14130,27 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "bal" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "bam" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "ban" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "ID Checkpoint"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "bao" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -19133,27 +14160,21 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/omega/control) "bap" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ id = "OmegaHangarW"; name = "Landing Bay Omega" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) "baq" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ id = "OmegaHangarE"; name = "Landing Bay Omega" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) "bar" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -19162,9 +14183,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "bas" = ( /obj/structure/surface/table/almayer, @@ -19173,19 +14192,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bat" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/airlock/control) "bau" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -19194,9 +14207,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "bav" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -19204,26 +14215,18 @@ name = "ID Checkpoint"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/control) "baw" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/control) "bax" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/control) "bay" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -19234,9 +14237,7 @@ dir = 4 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "baz" = ( /obj/effect/decal/cleanable/cobweb{ @@ -19247,30 +14248,19 @@ "baA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/checkpoint) "baB" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/checkpoint) "baC" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/checkpoint) "baD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "baE" = ( /obj/structure/surface/table/reinforced, @@ -19278,24 +14268,16 @@ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) "baF" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "baG" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/checkpoint) "baH" = ( /obj/structure/surface/table/reinforced, @@ -19311,9 +14293,7 @@ name = "Security Shutters" }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "baI" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ @@ -19321,9 +14301,7 @@ name = "Gamma Emergency Access"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "baJ" = ( /obj/structure/sign/safety/airlock, @@ -19331,9 +14309,7 @@ /area/corsat/gamma/hangar/checkpoint) "baK" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "baL" = ( /obj/structure/machinery/power/apc/hyper{ @@ -19341,27 +14317,20 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/control) "baM" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/control) "baN" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/omega/control) "baO" = ( /obj/structure/surface/table/reinforced, @@ -19376,9 +14345,7 @@ id = "OmegaAccessC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "baR" = ( /obj/structure/surface/table/reinforced, @@ -19394,15 +14361,10 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "baT" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/hallways) "baU" = ( /obj/structure/window/framed/corsat/hull, @@ -19420,9 +14382,7 @@ network = list("omega") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "baY" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -19431,18 +14391,14 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "baZ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Engineering"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) "bba" = ( /obj/structure/window/framed/corsat/security, @@ -19454,9 +14410,7 @@ /area/corsat/omega/control) "bbb" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/control) "bbc" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -19473,9 +14427,7 @@ id = "OmegaCSC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/control) "bbd" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -19483,10 +14435,7 @@ name = "Sigma Dome Control"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "bbe" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -19495,19 +14444,14 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/north) "bbf" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/checkpoint) "bbg" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -19515,18 +14459,13 @@ name = "ID Checkpoint"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bbh" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "Theta Dome Control" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/theta/airlock/control) "bbi" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -19536,26 +14475,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "bbj" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Theta Dome Control"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) "bbk" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bbl" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -19568,46 +14499,31 @@ name = "Identification Desk"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bbm" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/omega/checkpoint) "bbn" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/checkpoint) "bbo" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile{ id = "ThetaNorthS"; name = "Theta North Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "bbp" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "bbr" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "bbs" = ( /obj/structure/surface/table/reinforced, @@ -19623,10 +14539,7 @@ pixel_x = -5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/west) "bbt" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ @@ -19638,60 +14551,42 @@ name = "Theta Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "bbu" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "ThetaEastE"; name = "Theta East Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "bbv" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "bbx" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Hangar Security"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "bby" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "bbz" = ( /obj/structure/closet/secure_closet/engineering_electrical{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/hangar/monorail/control) "bbA" = ( /obj/structure/closet/secure_closet/engineering_welding{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/hangar/monorail/control) "bbB" = ( /obj/structure/window/framed/corsat/research, @@ -19708,15 +14603,11 @@ name = "Research Complex Gamma"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "bbD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "bbE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19726,9 +14617,7 @@ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "bbF" = ( /obj/structure/surface/table/almayer, @@ -19738,10 +14627,7 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/checkpoint) "bbG" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -19749,19 +14635,13 @@ name = "Research Desk" }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/complex) "bbH" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "bbI" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/biodome/complex) "bbJ" = ( /obj/structure/window/framed/corsat/research, @@ -19780,18 +14660,14 @@ /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bbL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "Research Complex Gamma" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/biodome/complex) "bbM" = ( /obj/structure/window/framed/corsat/research, @@ -19806,24 +14682,15 @@ /obj/structure/closet/secure_closet/engineering_electrical{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bbO" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) "bbP" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/checkpoint) "bbQ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -19845,10 +14712,7 @@ name = "Toxins Lockdown" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "bbS" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -19857,9 +14721,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "bbT" = ( /obj/structure/machinery/door_control{ @@ -19868,32 +14730,21 @@ pixel_y = 24; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/biodome/toxins) "bbU" = ( /obj/structure/closet/secure_closet/engineering_welding{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/engineering) "bbV" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "bbW" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/containment) "bbX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -19901,9 +14752,7 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "bbZ" = ( /obj/structure/machinery/light{ @@ -19912,10 +14761,7 @@ /obj/structure/sink{ pixel_y = 25 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bca" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -19924,18 +14770,14 @@ req_one_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "bcb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydrowest) "bcc" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -19947,19 +14789,14 @@ name = "Toxins Lab"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "bcd" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydroeast) "bce" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -19968,9 +14805,7 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "bcf" = ( /obj/structure/window/framed/corsat/research, @@ -20092,24 +14927,17 @@ pixel_x = -24; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/security) "bct" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "bcu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "bcv" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -20117,9 +14945,7 @@ name = "Hangar Security"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "bcw" = ( /obj/structure/surface/table/reinforced, @@ -20127,9 +14953,7 @@ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar/checkpoint) "bcx" = ( /obj/effect/decal/cleanable/cobweb{ @@ -20150,9 +14974,7 @@ id = "SigmaHCargoC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/id) "bcz" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -20160,9 +14982,7 @@ name = "Gamma Dome Control"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bcA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -20172,9 +14992,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bcB" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -20182,9 +15000,7 @@ name = "Gamma Dome Control"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bcC" = ( /obj/structure/surface/table/reinforced, @@ -20195,9 +15011,7 @@ name = "Research Desk" }, /obj/structure/machinery/bot/medbot, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "bcD" = ( /obj/structure/flora/jungle/vines/light_1, @@ -20251,9 +15065,7 @@ /obj/structure/sign/safety/airlock{ pixel_x = 32 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "bcP" = ( /obj/structure/sign/safety/storage, @@ -20271,9 +15083,7 @@ /obj/item/reagent_container/food/snacks/grown/potato, /obj/item/reagent_container/food/snacks/grown/potato, /obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "bcR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -20330,117 +15140,75 @@ /area/corsat/theta/biodome) "bdc" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome/gunrange) "bdd" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/corsat/sigma/biodome/gunrange) "bde" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/corsat/sigma/biodome) "bdf" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/corsat/sigma/biodome) "bdg" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/corsat/sigma/biodome/gunrange) "bdh" = ( /obj/structure/target/syndicate, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/corsat/sigma/biodome/gunrange) "bdi" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/corsat/sigma/biodome/gunrange) "bdj" = ( /obj/structure/target, /obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/corsat/sigma/biodome/gunrange) "bdk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/corsat/sigma/biodome/gunrange) "bdl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/corsat/sigma/biodome/gunrange) "bdm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/gunrange) "bdn" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/corsat/sigma/biodome) "bdo" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/corsat/sigma/biodome) "bdp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome/gunrange) "bdq" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/corsat/sigma/biodome) "bdr" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/gunrange) "bds" = ( /obj/structure/target, /obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/gunrange) "bdt" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/corsat/sigma/biodome/gunrange) "bdu" = ( /obj/structure/target/syndicate, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/corsat/sigma/biodome/gunrange) "bdv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/corsat/sigma/biodome/gunrange) "bdw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/corsat/sigma/biodome/gunrange) "bdx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -20557,9 +15325,7 @@ /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) "bef" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, +/turf/open/mars_cave/mars_cave_4, /area/corsat/sigma/biodome/gunrange) "beg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -20578,9 +15344,7 @@ name = "Research Complex Sigma"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bek" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ @@ -20588,9 +15352,7 @@ name = "Omega Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "bel" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -20614,9 +15376,7 @@ /turf/closed/gm/dense, /area/corsat/theta/biodome) "beq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome/gunrange) "ber" = ( /obj/structure/flora/jungle/alienplant1, @@ -20634,15 +15394,11 @@ use_power = 0 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "beu" = ( /obj/structure/target/syndicate, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/gunrange) "bev" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -20705,24 +15461,16 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) "beK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/corsat/sigma/biodome/gunrange) "beL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/corsat/sigma/biodome/gunrange) "beM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/corsat/sigma/biodome/gunrange) "beN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/corsat/sigma/biodome/gunrange) "beO" = ( /turf/open/auto_turf/snow/layer3, @@ -20753,19 +15501,13 @@ "beU" = ( /obj/structure/target, /obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/corsat/sigma/biodome/gunrange) "beV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/corsat/sigma/biodome/gunrange) "beW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/corsat/sigma/biodome/gunrange) "beX" = ( /turf/open/auto_turf/snow/layer1, @@ -20917,9 +15659,7 @@ /area/corsat/gamma/biodome) "bfw" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/corsat/sigma/biodome/gunrange) "bfx" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -21044,17 +15784,13 @@ /turf/closed/ice_rock/corners, /area/corsat/gamma/biodome) "bfO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/corsat/sigma/biodome/gunrange) "bfP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "bfQ" = ( /turf/closed/ice, @@ -21150,81 +15886,51 @@ /turf/open/ice, /area/corsat/gamma/biodome) "bgj" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/corsat/sigma/biodome/gunrange) "bgk" = ( /turf/closed/ice_rock/singleEnd, /area/corsat/gamma/biodome) "bgl" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/gunrange) "bgm" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "bgn" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "bgo" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/corsat/sigma/biodome/gunrange) "bgp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/gunrange) "bgq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/gunrange) "bgr" = ( /turf/closed/wall, /area/corsat/sigma/biodome/gunrange) "bgs" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bgt" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "bgu" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/corsat/sigma/biodome) "bgv" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/corsat/sigma/biodome) "bgw" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Research Complex Gamma"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bgx" = ( /obj/structure/machinery/constructable_frame{ @@ -21239,9 +15945,7 @@ /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive, /obj/item/explosive/grenade/high_explosive, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bgz" = ( /obj/structure/machinery/m56d_hmg{ @@ -21251,167 +15955,104 @@ name = "Firing Lane" }, /obj/structure/surface/table/almayer, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/gunrange) "bgB" = ( /turf/closed/wall, /area/corsat/sigma/biodome/scrapyard) "bgC" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome/scrapyard) "bgD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/scrapyard) "bgE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/scrapyard) "bgF" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/scrapyard) "bgG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/corsat/sigma/biodome/scrapyard) "bgH" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/corsat/sigma/biodome/scrapyard) "bgI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "bgJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/mars_cave/mars_cave_20, /area/corsat/sigma/biodome/scrapyard) "bgK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/corsat/sigma/biodome/scrapyard) "bgL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome/scrapyard) "bgM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome/scrapyard) "bgN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/corsat/sigma/biodome/scrapyard) "bgO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/corsat/sigma/biodome/scrapyard) "bgP" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/corsat/sigma/biodome/scrapyard) "bgQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, +/turf/open/mars_cave/mars_cave_4, /area/corsat/sigma/biodome/scrapyard) "bgR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/corsat/sigma/biodome/scrapyard) "bgS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/corsat/sigma/biodome/scrapyard) "bgT" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/corsat/sigma/biodome/scrapyard) "bgU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/corsat/sigma/biodome/scrapyard) "bgV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/corsat/sigma/biodome) "bgW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/corsat/sigma/biodome/scrapyard) "bgX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/corsat/sigma/biodome/scrapyard) "bgY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/corsat/sigma/biodome/scrapyard) "bgZ" = ( /turf/closed/wall/r_wall, /area/corsat/sigma/biodome/testgrounds) "bha" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bhb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bhc" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "bhd" = ( /obj/structure/largecrate/supply/ammo/m39/half, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bhe" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/corsat/sigma/biodome) "bhf" = ( /obj/structure/surface/rack, @@ -21422,27 +16063,19 @@ dir = 1 }, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bhg" = ( /turf/open/floor/plating, /area/corsat/sigma/biodome/testgrounds) "bhh" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/corsat/sigma/biodome/testgrounds) "bhi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential) "bhj" = ( /obj/structure/surface/rack, @@ -21453,15 +16086,11 @@ dir = 1 }, /obj/item/weapon/gun/rifle/m41a, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bhk" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "bhl" = ( /obj/structure/foamed_metal, @@ -21469,9 +16098,7 @@ /area/corsat/sigma/biodome/testgrounds) "bhm" = ( /obj/structure/largecrate/supply/ammo/pistol/half, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bhn" = ( /turf/closed/mineral{ @@ -21479,52 +16106,34 @@ }, /area/corsat/sigma/biodome) "bho" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/corsat/sigma/biodome) "bhp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/corsat/sigma/biodome) "bhq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/corsat/sigma/biodome) "bhr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome) "bhs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome) "bht" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/corsat/sigma/biodome) "bhu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/corsat/sigma/biodome) "bhv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/corsat/sigma/biodome) "bhw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/corsat/sigma/biodome) "bhx" = ( /obj/structure/bed/chair/wood/wings{ @@ -21534,15 +16143,11 @@ /area/corsat/gamma/rnr/bar) "bhy" = ( /obj/structure/machinery/botany/editor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "bhz" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "bhA" = ( /obj/structure/machinery/light{ @@ -21551,69 +16156,47 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security/cells) "bhB" = ( /obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "bhC" = ( /obj/structure/machinery/computer/shuttle_control/monorail{ dir = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/monorail/control) "bhD" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "bhE" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "bhF" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "bhI" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "bhJ" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/security/cells) "bhK" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo/lobby) "bhL" = ( /obj/structure/machinery/light{ @@ -21622,163 +16205,107 @@ /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Mixed Air Control" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bhM" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/atmos) "bhN" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering) "bhO" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "bhP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "bhQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "bhR" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Atmospherics"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bhS" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hallways) "bhT" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bhU" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering/atmos) "bhV" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "bhW" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door/window/northright{ name = "Firing Lane" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/gunrange) "bhX" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/theta/airlock/control) "bhY" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "bhZ" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/atmos) "bia" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "bib" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "bic" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/gamma/cargo/lobby) "bid" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bie" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/engineering) "bif" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering/atmos) "big" = ( /obj/structure/machinery/light{ @@ -21787,25 +16314,17 @@ /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "bih" = ( /obj/structure/closet/secure_closet/engineering_personal{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "bii" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "bij" = ( /obj/structure/machinery/floodlight{ @@ -21815,26 +16334,17 @@ /area/corsat/gamma/biodome) "bik" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering/atmos) "bil" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bim" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering/atmos) "bin" = ( /obj/structure/machinery/light{ @@ -21843,88 +16353,55 @@ /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Nitrogen Control Console" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bio" = ( /obj/structure/dispenser/phoron, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/atmos) "bip" = ( /obj/structure/dispenser/oxygen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/atmos) "biq" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "bir" = ( /obj/structure/bed/stool, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/chemistry) "bis" = ( /obj/structure/powerloader_wreckage, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "biu" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "biv" = ( /obj/structure/closet/crate/internals, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "biw" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/omega/hallways) "bix" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "biy" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/dice, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "biz" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/security) "biA" = ( /obj/structure/machinery/light{ @@ -21933,104 +16410,64 @@ /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "biB" = ( /obj/structure/largecrate/supply/ammo/m41a/half, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "biC" = ( /obj/structure/pipes/trinary/mixer{ dir = 4; name = "Gas mixer N2/O2" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "biE" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "biF" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "biG" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "biH" = ( /obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/surgery) "biI" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/surgery) "biJ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay/morgue) "biK" = ( /obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southwest, /area/corsat/gamma/medbay) "biL" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/west, /area/corsat/gamma/medbay) "biM" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay/chemistry) "biO" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "biP" = ( /obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/toxins) "biQ" = ( /obj/structure/machinery/smartfridge/chemistry{ @@ -22041,10 +16478,7 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "biR" = ( /obj/structure/surface/table/woodentable, @@ -22053,28 +16487,19 @@ pixel_x = 15 }, /obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "biS" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/airlocknorth) "biT" = ( /obj/structure/machinery/constructable_frame, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "biU" = ( /obj/structure/machinery/constructable_frame, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/corsat/sigma/biodome/scrapyard) "biV" = ( /obj/structure/surface/table/woodentable, @@ -22083,17 +16508,11 @@ pixel_x = 15 }, /obj/item/reagent_container/food/drinks/shaker, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "biW" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/hallways) "biX" = ( /obj/structure/machinery/light{ @@ -22101,19 +16520,14 @@ }, /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "biY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "biZ" = ( /obj/structure/reagent_dispensers/watertank, @@ -22122,92 +16536,60 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "bja" = ( /obj/structure/machinery/message_server, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "bjb" = ( /obj/structure/showcase{ icon_state = "hub"; name = "Telecommunication Hub" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "bjc" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "bjd" = ( /obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "bje" = ( /obj/structure/machinery/botany/extractor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "bjf" = ( /obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/theta/biodome/complex) "bjg" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) "bjh" = ( /obj/structure/machinery/biogenerator, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/theta/biodome/complex) "bji" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "bjj" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/flightcontrol) "bjk" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/engineering/atmos) "bjl" = ( /obj/structure/surface/table/almayer, @@ -22218,10 +16600,7 @@ pixel_y = 6; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bjm" = ( /obj/structure/bed, @@ -22236,17 +16615,11 @@ /obj/item/implanter/adrenalin, /obj/item/implanter/loyalty, /obj/item/implanter/loyalty, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "bjp" = ( /obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bjq" = ( /obj/structure/bed, @@ -22256,49 +16629,33 @@ /area/corsat/sigma/dorms) "bjr" = ( /obj/item/broken_device, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "bjs" = ( /obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "bjt" = ( /obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "bju" = ( /obj/item/cell/crap, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "bjv" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "bjw" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bjx" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hallways) "bjy" = ( /obj/structure/sink{ @@ -22314,9 +16671,7 @@ /obj/item/reagent_container/glass/rag{ pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bjz" = ( /obj/structure/machinery/light{ @@ -22324,9 +16679,7 @@ }, /obj/structure/machinery/microwave, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bjA" = ( /obj/item/reagent_container/food/snacks/meat/monkey, @@ -22340,9 +16693,7 @@ /obj/item/reagent_container/food/snacks/flour, /obj/item/reagent_container/food/snacks/flour, /obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "bjB" = ( /obj/structure/surface/table/almayer, @@ -22350,10 +16701,7 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/gamma/administration) "bjC" = ( /obj/structure/surface/table/almayer, @@ -22363,9 +16711,7 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "bjD" = ( /obj/structure/bed/chair/wood/wings{ @@ -22378,9 +16724,7 @@ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "bjG" = ( /obj/structure/closet/crate/medical, @@ -22389,52 +16733,36 @@ network = list("gamma") }, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "bjH" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/adv, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bjI" = ( /obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bjJ" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hallways) "bjK" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "bjM" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/incendiary, /obj/item/explosive/grenade/incendiary, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bjN" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/smokebomb, /obj/item/explosive/grenade/smokebomb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bjO" = ( /obj/structure/surface/rack, @@ -22446,9 +16774,7 @@ }, /obj/item/weapon/gun/pistol/m4a3, /obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bjP" = ( /obj/structure/surface/rack, @@ -22459,9 +16785,7 @@ name = "Weapon Rack" }, /obj/item/weapon/gun/smg/mp5, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bjQ" = ( /obj/structure/machinery/power/apc/high{ @@ -22471,27 +16795,19 @@ }, /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/containment) "bjR" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bjU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "CORSAT Library" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bjV" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -22501,10 +16817,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bjW" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -22512,9 +16825,7 @@ name = "Sigma Cargo Bay"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/cargo) "bjY" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -22522,9 +16833,7 @@ name = "Security Armory"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "bjZ" = ( /obj/structure/machinery/door_control{ @@ -22533,10 +16842,7 @@ pixel_x = -24; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "bka" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -22545,9 +16851,7 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/cargo) "bkb" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -22555,25 +16859,19 @@ name = "Omega Cargo Bay"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/cargo) "bkc" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south/id) "bkd" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Research Complex Theta" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "bke" = ( /obj/structure/machinery/light{ @@ -22594,10 +16892,7 @@ pixel_y = 24; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/sigmaremote) "bki" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -22606,9 +16901,7 @@ name = "Gate Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/sigmaremote) "bko" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -22617,18 +16910,14 @@ req_one_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "bkp" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "Research Complex"; req_one_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "bkq" = ( /obj/structure/surface/rack{ @@ -22636,10 +16925,7 @@ unacidable = 1 }, /obj/item/weed_extract, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/omega/complex) "bkr" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -22649,36 +16935,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "bks" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/hangar/monorail/control) "bku" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "Hangar Office" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "bkv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "Flight Control" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "bkx" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -22686,9 +16963,7 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/cargo) "bky" = ( /obj/structure/window/framed/corsat/hull, @@ -22700,9 +16975,7 @@ name = "Gamma Cargo Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/cargo) "bkB" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -22711,9 +16984,7 @@ name = "Gamma Cargo Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/cargo) "bkC" = ( /obj/structure/surface/table/reinforced, @@ -22722,10 +16993,7 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/checkpoint) "bkD" = ( /obj/structure/surface/table/reinforced, @@ -22734,10 +17002,7 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/airlock/south/id) "bkE" = ( /obj/structure/window/framed/corsat/security, @@ -22762,9 +17027,7 @@ id = "SigmaIDSC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/south/id) "bkJ" = ( /obj/structure/window/framed/corsat/security, @@ -22782,16 +17045,11 @@ pixel_x = -24; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/south/security) "bkL" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "bkM" = ( /obj/structure/window/framed/corsat/security, @@ -22814,18 +17072,14 @@ name = "Privacy Shutters" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "bkO" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "OmegaO"; name = "Omega Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/biodome) "bkP" = ( /obj/structure/window/framed/corsat/cell/security, @@ -22838,10 +17092,7 @@ /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/containment) "bkS" = ( /obj/structure/machinery/light{ @@ -22850,10 +17101,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/complex) "bkT" = ( /obj/structure/closet/crate/science{ @@ -22862,9 +17110,7 @@ opened = 1 }, /obj/item/organ/lungs, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "bkU" = ( /obj/structure/closet/crate/science{ @@ -22873,24 +17119,17 @@ opened = 1 }, /obj/item/organ/heart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "bkV" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/containment) "bkW" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/ce, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "bkX" = ( /obj/structure/surface/table/almayer, @@ -22899,9 +17138,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "bkY" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -22911,9 +17148,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "bkZ" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -22922,25 +17157,19 @@ name = "Omega Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "blb" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/engineering) "blc" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "bld" = ( /obj/structure/target/syndicate, @@ -22952,40 +17181,29 @@ desc = "A rectangular steel crate containing firing targets."; name = "target crate" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "blg" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/flashbang, /obj/item/explosive/grenade/flashbang, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "blh" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "blj" = ( /obj/structure/machinery/pipedispenser, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "blk" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/cargo) "bll" = ( /obj/structure/surface/table/almayer, @@ -22993,76 +17211,47 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "blm" = ( /obj/structure/closet/wardrobe/chemistry_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/chemistry) "bln" = ( /obj/structure/machinery/door/airlock/dropship_hatch/monorail{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "blo" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/hangar/monorail) "blp" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/hangar/monorail) "blr" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hangar/monorail) "bls" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/hangar/monorail) "blt" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "bly" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "blz" = ( /obj/structure/machinery/light, /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/hangar/monorail) "blA" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "blB" = ( /turf/closed/wall/r_wall/biodome, @@ -23070,9 +17259,7 @@ "blC" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "blD" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -23081,23 +17268,16 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar) "blF" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "blG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hangar) "blH" = ( /obj/structure/machinery/light{ @@ -23105,24 +17285,17 @@ }, /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "blI" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hangar) "blJ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar) "blK" = ( /turf/closed/wall/biodome, @@ -23134,9 +17307,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "blM" = ( /turf/closed/wall/r_wall/biodome, @@ -23151,10 +17322,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/cargo) "blP" = ( /obj/structure/machinery/power/apc/hyper{ @@ -23162,32 +17330,21 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hangar/arrivals) "blQ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/office) "blS" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/hangar/monorail/control) "blT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "blU" = ( /obj/structure/monorail, @@ -23213,10 +17370,7 @@ /area/space) "blZ" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/hangar/monorail/control) "bma" = ( /obj/structure/machinery/power/apc/high{ @@ -23224,46 +17378,29 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/hangar/monorail/control) "bmb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/monorail/control) "bmc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/sigma/hangar) "bmd" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northwest, /area/corsat/sigma/hangar) "bme" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar) "bmh" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "bmi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -23275,9 +17412,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bmj" = ( /obj/structure/window/framed/corsat/hull, @@ -23287,50 +17422,33 @@ /obj/structure/machinery/door/airlock/dropship_hatch/monorail{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "bml" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "bmm" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/sigma/hangar/monorail/control) "bmn" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/sigma/hangar/monorail) "bmo" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northwest, /area/corsat/sigma/hangar/monorail) "bmp" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "bmq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/hangar/monorail) "bmr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) "bms" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -23338,17 +17456,12 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/monorail) "bmu" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/monorail/control) "bmv" = ( /obj/structure/monorail, @@ -23360,33 +17473,22 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "bmx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/sigma/hangar/monorail) "bmz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/hangar/monorail) "bmA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/sigma/hangar/monorail) "bmB" = ( /obj/structure/monorail{ @@ -23416,17 +17518,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "bmI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "bmJ" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -23435,40 +17533,28 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "bmL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "bmM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/office) "bmN" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "bmO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/arrivals) "bmS" = ( /obj/structure/window/framed/corsat, @@ -23489,9 +17575,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bmW" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile{ @@ -23499,20 +17583,14 @@ name = "Gamma Checkpoint"; unacidable = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/checkpoint) "bmX" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/checkpoint) "bmY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/checkpoint) "bmZ" = ( /obj/structure/window/framed/corsat/hull/security, @@ -23523,29 +17601,20 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "bnb" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/hangar/arrivals) "bnd" = ( /obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "bne" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/monorail/control) "bnf" = ( /obj/structure/sign/safety/fridge, @@ -23557,17 +17626,12 @@ /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/residential/maint) "bnj" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "bnk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -23576,9 +17640,7 @@ req_access_txt = "103"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "bnl" = ( /obj/structure/sign/safety/high_voltage, @@ -23590,15 +17652,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/gamma/cargo) "bnn" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/hallwaysouth) "bno" = ( /obj/structure/sign/safety/airlock{ @@ -23611,19 +17668,13 @@ /area/corsat/gamma/biodome) "bnp" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/canteen) "bnq" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "bnr" = ( /obj/structure/sign/safety/galley, @@ -23631,10 +17682,7 @@ /area/corsat/gamma/canteen) "bns" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "bnw" = ( /obj/structure/sign/safety/airlock, @@ -23642,24 +17690,18 @@ /area/corsat/sigma/hangar/monorail) "bnx" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/canteen) "bny" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/canteen) "bnz" = ( /obj/structure/sign/safety/biohazard, /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder, /obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "bnA" = ( /obj/structure/surface/rack{ @@ -23667,30 +17709,19 @@ unacidable = 1 }, /obj/item/xenos_claw, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) "bnB" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/virology) "bnC" = ( /obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "bnD" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/biodome/virology) "bnE" = ( /obj/structure/machinery/light{ @@ -23700,16 +17731,11 @@ /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Oxygen Supply Console" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bnF" = ( /obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "bnH" = ( /obj/structure/sign/safety/biohazard, @@ -23718,10 +17744,7 @@ "bnI" = ( /obj/structure/sign/safety/biohazard, /obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "bnJ" = ( /obj/structure/sign/nosmoking_1, @@ -23741,9 +17764,7 @@ /area/corsat/gamma/medbay) "bnN" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "bnO" = ( /obj/structure/sign/safety/medical, @@ -23757,17 +17778,13 @@ /obj/structure/sign/safety/chem_lab{ pixel_y = -30 }, -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner, /area/corsat/gamma/medbay) "bnR" = ( /obj/structure/sign/safety/airlock{ pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/airlock/control) "bnU" = ( /obj/structure/sign/safety/airlock, @@ -23777,18 +17794,13 @@ /obj/structure/sign/safety/airlock{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/id) "bnW" = ( /obj/structure/sign/safety/airlock{ pixel_x = 32 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome) "bnY" = ( /obj/structure/safe, @@ -23800,9 +17812,7 @@ /area/corsat/sigma/hangar/id) "boc" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/north) "boe" = ( /obj/structure/sign/safety/airlock, @@ -23816,28 +17826,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) "boh" = ( /obj/structure/cargo_container/grant/left, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "boi" = ( /obj/structure/cargo_container/grant/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "boj" = ( /obj/structure/cargo_container/grant/right, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "bon" = ( /obj/structure/fence, @@ -23850,18 +17851,13 @@ /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome) "bop" = ( /obj/structure/sign/safety/airlock{ pixel_x = -32 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/control) "boq" = ( /obj/structure/sign/safety/storage, @@ -23879,9 +17875,7 @@ /obj/structure/sign/safety/storage{ pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "bow" = ( /obj/structure/sign/safety/airlock, @@ -23905,9 +17899,7 @@ /obj/structure/sign/safety/airlock{ pixel_x = 32 }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/hallways) "boB" = ( /obj/structure/sign/safety/airlock{ @@ -23920,44 +17912,31 @@ /area/corsat/theta/biodome) "boD" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security) "boE" = ( /obj/structure/sign/safety/biolab{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydrowest) "boF" = ( /obj/structure/sign/safety/biolab{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydroeast) "boG" = ( /obj/structure/sign/safety/biolab{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydrowest) "boH" = ( /obj/structure/sign/safety/biolab{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydroeast) "boJ" = ( /obj/structure/sign/safety/airlock, @@ -23969,22 +17948,14 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar) "boL" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/gamma/cargo) "boM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/gamma/cargo/lobby) "boN" = ( /obj/structure/surface/table/almayer, @@ -23995,129 +17966,90 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/north, /area/corsat/gamma/medbay) "boP" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo) "boQ" = ( /obj/vehicle/train/cargo/engine{ dir = 2 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/cargo) "boR" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/cargo) "boT" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/hangar/cargo) "boU" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/gamma/cargo) "boV" = ( /obj/structure/surface/table/almayer, /obj/item/trash/chips, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "boW" = ( /obj/item/bananapeel, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "boX" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "boY" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/condiment/sugar, /obj/item/reagent_container/food/condiment/sugar, /obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "bpa" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "bpb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/north, /area/corsat/gamma/residential) "bpd" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "bpe" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential/east) "bph" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, +/turf/open/gm/river/desert/shallow/pool, /area/corsat/gamma/residential/showers) "bpi" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "bpj" = ( /obj/structure/surface/rack, @@ -24126,23 +18058,16 @@ /obj/item/reagent_container/food/snacks/chocolatebar, /obj/item/reagent_container/food/snacks/chocolatebar, /obj/item/reagent_container/food/snacks/chocolatebar, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "bpl" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "bpn" = ( /obj/structure/surface/table/almayer, /obj/item/light_bulb/tube/large, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "bpq" = ( /obj/structure/surface/table/almayer, @@ -24150,71 +18075,49 @@ /obj/item/paper, /obj/item/tool/pen, /obj/item/tool/stamp/cmo, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "bpr" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/southeast, /area/corsat/gamma/rnr) "bps" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "bpt" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bpv" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail/control) "bpz" = ( /obj/structure/machinery/botany/editor, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "bpA" = ( /obj/item/tool/minihoe, /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "bpB" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "bpC" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/chef_recipes, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bpD" = ( /obj/structure/surface/table/almayer, @@ -24223,9 +18126,7 @@ }, /obj/item/tool/kitchen/tray, /obj/item/tool/kitchen/knife, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bpE" = ( /obj/structure/surface/table/almayer, @@ -24235,103 +18136,69 @@ dir = 1 }, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bpF" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bpG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "bpH" = ( /obj/structure/machinery/meter, /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bpK" = ( /obj/structure/surface/table, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "bpL" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering/atmos) "bpM" = ( /obj/structure/surface/rack, /obj/item/device/transfer_valve, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bpN" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bpO" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/canteen) "bpP" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "bpR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bpS" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/sigma/north) "bpT" = ( /obj/structure/surface/table/almayer, /obj/item/tool/surgery/scalpel, /obj/item/tool/surgery/retractor, /obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay/morgue) "bpU" = ( /obj/structure/barricade/handrail{ @@ -24344,100 +18211,65 @@ /area/corsat/gamma/residential/east) "bpW" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "bpX" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "bqa" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "bqb" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "bqd" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/biodome/complex) "bqe" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/complex) "bqf" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "bqg" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay/chemistry) "bqh" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "bqi" = ( /obj/item/cell/super/empty, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "bqj" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "bqk" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "bqm" = ( /obj/structure/closet/secure_closet/medical2{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "bqn" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "bqo" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -24454,10 +18286,7 @@ /area/corsat/inaccessible) "bqq" = ( /obj/structure/bed/chair/comfy/orange, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/administration) "bqr" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -24472,16 +18301,11 @@ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) "bqw" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "bqx" = ( /obj/structure/surface/table/almayer, @@ -24489,49 +18313,35 @@ dir = 4 }, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "bqy" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "bqz" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "bqA" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/gamma/administration) "bqC" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "bqD" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/administration) "bqE" = ( /obj/structure/surface/table/almayer, @@ -24542,18 +18352,13 @@ /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bqG" = ( /obj/structure/pipes/binary/pump/on{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/theta/airlock/control) "bqI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -24561,91 +18366,59 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/west/id) "bqJ" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "bqK" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "bqL" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "bqM" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "bqO" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/monorail) "bqR" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/sigma/hangar/monorail) "bqS" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/monorail) "bqU" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) "bqV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/hangar/office) "bqW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) "bqY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/hangar/office) "bqZ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering) "brd" = ( /obj/structure/bed/chair{ @@ -24655,10 +18428,7 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/security/cells) "brf" = ( /obj/structure/pipes/vents/pump{ @@ -24668,38 +18438,24 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) "brg" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "brj" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) "brm" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "brn" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "bro" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24709,24 +18465,18 @@ /area/corsat/gamma/biodome) "brq" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "brr" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "brs" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "brt" = ( /obj/structure/machinery/disposal, @@ -24734,48 +18484,33 @@ /area/corsat/sigma/cafe) "bru" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "brw" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "brx" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bry" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "brz" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/checkpoint) "brB" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/omega/offices) "brD" = ( /obj/structure/surface/table/almayer, @@ -24785,15 +18520,11 @@ }, /obj/structure/window/reinforced, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "brE" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "brF" = ( /obj/structure/flora/pottedplant{ @@ -24802,147 +18533,99 @@ /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "brI" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/omega/offices) "brN" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/security) "brO" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "brP" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "brQ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "brR" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "brT" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "brU" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "brX" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "brY" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "brZ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "bsa" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "bsb" = ( /obj/structure/noticeboard{ pixel_y = 32 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/gamma/administration) "bsd" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/sigma/southeast/dataoffice) "bse" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) "bsf" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/security) "bsg" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/security) "bsi" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/security) "bsl" = ( /obj/structure/surface/table/almayer, @@ -24950,71 +18633,50 @@ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) "bsm" = ( /obj/structure/sign/safety/airlock{ pixel_y = 32 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "bsn" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "bso" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/checkpoint) "bsp" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "bsq" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/security) "bsr" = ( /obj/structure/surface/rack, /obj/item/evidencebag, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/security) "bss" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/security) "bsx" = ( /obj/structure/barricade/handrail{ @@ -25023,81 +18685,56 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "bsy" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/scalpel/laser{ pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bsz" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bsB" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "bsD" = ( /obj/structure/machinery/computer/cameras{ network = list("omega") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/airlocknorth) "bsE" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "bsG" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "bsI" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/chem_dispenser/soda{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "bsJ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/south/offices) "bsK" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/omega/complex) "bsL" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -25107,155 +18744,107 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/south/offices) "bsN" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/chem_dispenser/soda/beer{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "bsO" = ( /obj/structure/machinery/botany{ name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "bsP" = ( /obj/structure/machinery/botany{ name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "bsQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "bsR" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "bsS" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bsT" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/south/security) "bsU" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "bsW" = ( /obj/structure/machinery/light, /obj/structure/machinery/botany{ name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "bsX" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/theta/biodome/complex) "bsY" = ( /obj/structure/machinery/light, /obj/structure/machinery/botany{ name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "bsZ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "bta" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "btb" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "btf" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "btg" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "bth" = ( /obj/structure/machinery/lapvend, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "bti" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/theta/biodome/hydrowest) "btj" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/hydroeast) "btk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -25265,10 +18854,7 @@ /area/corsat/theta/biodome) "btl" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) "btn" = ( /obj/structure/machinery/light{ @@ -25277,9 +18863,7 @@ /obj/structure/machinery/botany{ name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "bto" = ( /obj/structure/machinery/light{ @@ -25288,22 +18872,15 @@ /obj/structure/machinery/botany{ name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "btq" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "bts" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/hallways) "btt" = ( /obj/structure/surface/table/reinforced, @@ -25311,17 +18888,12 @@ name = "Acid Resistant Hemostat"; unacidable = 1 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "btv" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/botanydisk, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) "btw" = ( /obj/structure/surface/rack, @@ -25330,38 +18902,26 @@ maxcharge = 3000; name = "overpowered potato" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "btx" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "btz" = ( /obj/structure/surface/rack, /obj/item/circuitboard/apc, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "btB" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/security) "btC" = ( /obj/structure/machinery/light{ @@ -25370,17 +18930,13 @@ /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "btD" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "btE" = ( /obj/structure/machinery/light{ @@ -25390,9 +18946,7 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "btF" = ( /obj/structure/machinery/light{ @@ -25401,9 +18955,7 @@ /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "btG" = ( /obj/structure/surface/table/almayer, @@ -25411,19 +18963,13 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/flightcontrol) "btH" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "btI" = ( /obj/structure/machinery/vending/cola, @@ -25432,36 +18978,25 @@ "btJ" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/gamma/hangar/flightcontrol) "btK" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "btL" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "btM" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "btN" = ( /obj/structure/window/framed/corsat, @@ -25469,66 +19004,44 @@ /area/corsat/gamma/hangar/flightcontrol) "btO" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "btQ" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/flightcontrol) "btR" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/gamma/hangar/flightcontrol) "btS" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/office) "btT" = ( /obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/virology) "btU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/communications, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "btV" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/southeast/dataoffice) "btW" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/southeast/dataoffice) "btX" = ( /obj/structure/surface/table/almayer, @@ -25537,17 +19050,13 @@ health = 80 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "btY" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "btZ" = ( /obj/structure/surface/table/almayer, @@ -25557,18 +19066,13 @@ }, /obj/item/clipboard, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bua" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/southeast/dataoffice) "bub" = ( /obj/structure/machinery/light{ @@ -25578,67 +19082,46 @@ /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/southeast/dataoffice) "buc" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "bud" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "bue" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bug" = ( /obj/structure/surface/table/almayer, /obj/item/phone, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/southeast/datalab) "buh" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/datalab) "bui" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/datalab) "buj" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/datalab) "bum" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "bun" = ( /obj/structure/bed/chair/wood/wings{ @@ -25689,38 +19172,27 @@ dir = 1 }, /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "bux" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "buy" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "buz" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "buA" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "buB" = ( /obj/structure/sign/safety/distribution_pipes{ @@ -25735,69 +19207,47 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/omega/complex) "buD" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "buE" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen, /obj/item/tool/stamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/lobby) "buF" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering) "buG" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "buI" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "buJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar) "buK" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar) "buL" = ( /obj/structure/machinery/power/apc/high{ @@ -25806,45 +19256,30 @@ start_charge = 0 }, /obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "buM" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/sigma/hangar/office) "buN" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/cargo) "buO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/hallwaysouth) "buP" = ( /obj/structure/closet/secure_closet/engineering_personal{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/engineering) "buQ" = ( /obj/item/alien_embryo, @@ -25858,18 +19293,14 @@ icon_state = "open_science"; opened = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "buR" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "buS" = ( /obj/structure/machinery/light{ @@ -25880,16 +19311,10 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "buT" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hallwaysouth) "buU" = ( /obj/structure/window/framed/corsat/hull, @@ -25903,28 +19328,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/sigma/dorms) "buW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/checkpoint) "buX" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/containment) "buY" = ( /obj/structure/prop/mech/drill, @@ -25945,9 +19361,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bvh" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -25956,18 +19370,13 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bvi" = ( /obj/structure/surface/rack, /obj/item/tool/soap/deluxe, /obj/item/tool/soap/deluxe, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/residential/maint) "bvj" = ( /turf/open/floor/mech_bay_recharge_floor, @@ -25980,67 +19389,44 @@ /area/corsat/sigma/south/robotics) "bvm" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "bvn" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/robot_module/engineering, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/robotics) "bvo" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/robot_module/butler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "bvp" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/robotic_fabricator, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "bvq" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/head/welding, /obj/item/tool/weldingtool, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/robotics) "bvs" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/corsat/sigma/biodome/scrapyard) "bvt" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/south/offices) "bvw" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/engineering) "bvx" = ( /obj/structure/bed, @@ -26050,34 +19436,25 @@ /area/corsat/sigma/dorms) "bvy" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/south/engineering) "bvB" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bvC" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bvD" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/gold{ amount = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bvE" = ( /obj/structure/surface/rack, @@ -26087,18 +19464,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "bvF" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "bvJ" = ( /obj/structure/bed, @@ -26113,19 +19485,14 @@ /obj/item/paper, /obj/item/tool/pen, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bvL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/powercell, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/robotics) "bvM" = ( /obj/structure/machinery/light{ @@ -26135,36 +19502,26 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "bvN" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/silver{ amount = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bvO" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal{ amount = 30 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/robotics) "bvP" = ( /obj/structure/surface/table/almayer, /obj/item/stock_parts/smes_coil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bvQ" = ( /obj/structure/bed, @@ -26197,130 +19554,87 @@ "bvX" = ( /obj/item/tool/weldingtool/experimental, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bvY" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/glass{ amount = 30 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/south/engineering) "bvZ" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/platinum{ amount = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/south/engineering) "bwa" = ( /obj/structure/machinery/smartfridge/secure/virology{ req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/virology) "bwb" = ( /obj/structure/machinery/smartfridge/chemistry/virology{ req_access_txt = "103"; req_one_access = null }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "bwc" = ( /obj/structure/surface/rack, /obj/item/device/chameleon, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "bwe" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bwg" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/bookcase/manuals/engineering, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "bwh" = ( /obj/structure/bookcase/manuals/engineering, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/engineering) "bwi" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/robot_module/medic, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "bwk" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "bwm" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bwn" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 15 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "bwo" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bwp" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bwq" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -26329,15 +19643,11 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "bwr" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bwt" = ( /obj/structure/machinery/light{ @@ -26345,16 +19655,11 @@ }, /obj/structure/surface/table/almayer, /obj/item/device/analyzer, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/engineering) "bwu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/engineering) "bww" = ( /obj/structure/machinery/power/apc/hyper{ @@ -26362,9 +19667,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "bwx" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -26372,9 +19675,7 @@ name = "Robotics"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "bwz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -26383,64 +19684,45 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "bwA" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bwB" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bwC" = ( /obj/structure/surface/table/almayer, /obj/item/device/t_scanner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bwD" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) "bwE" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bwG" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, /obj/item/tool/wirecutters, /obj/item/tool/screwdriver, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/residential/maint) "bwH" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bwI" = ( /obj/structure/surface/table/almayer, @@ -26448,42 +19730,30 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bwJ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bwK" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bwN" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bwO" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bwP" = ( /turf/open/floor/corsat, @@ -26492,16 +19762,12 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bwR" = ( /obj/structure/surface/rack, /obj/item/tool/weldingtool, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "bwS" = ( /obj/structure/machinery/light, @@ -26509,48 +19775,34 @@ /area/corsat/sigma/south/engineering) "bwT" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/south/engineering) "bwU" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel{ amount = 10 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/south/engineering) "bwV" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "bwW" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "bwZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/robotics) "bxa" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "bxb" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -26559,9 +19811,7 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bxe" = ( /obj/structure/machinery/light{ @@ -26570,26 +19820,17 @@ /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/surgicaldrill, /obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) "bxf" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/cautery, /obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) "bxg" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "bxh" = ( /obj/item/implant/neurostim, @@ -26597,9 +19838,7 @@ /obj/item/implant/adrenalin, /obj/item/implant/adrenalin, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "bxi" = ( /obj/item/implant/loyalty, @@ -26607,9 +19846,7 @@ /obj/item/implant/compressed, /obj/item/implant/compressed, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "bxj" = ( /obj/item/implant/death_alarm, @@ -26617,83 +19854,54 @@ /obj/item/implant/tracking, /obj/item/implant/tracking, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "bxm" = ( /obj/structure/surface/table/almayer, /obj/structure/prop/mech/tesla_energy_relay, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bxn" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bxo" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wirecutters, /obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bxp" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldingtool, /obj/item/tool/screwdriver, /obj/item/tool/wrench, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/robotics) "bxs" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/ripley_build_and_repair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "bxt" = ( /obj/structure/surface/table/almayer, /obj/structure/prop/mech/armor_booster, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "bxw" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/sigma/south/robotics) "bxx" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/robotics) "bxy" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/south/robotics) "bxz" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/south/robotics) "bxB" = ( /obj/structure/girder/displaced, @@ -26702,55 +19910,36 @@ "bxC" = ( /obj/structure/surface/rack, /obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/robotics) "bxF" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/robotics) "bxH" = ( /obj/structure/surface/table/almayer, /obj/item/folder/yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bxI" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/robotics) "bxJ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bxK" = ( /obj/structure/surface/rack, /obj/item/holder/drone, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/robotics) "bxL" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/light_bulb/tube/large, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/engineering) "bxM" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -26759,9 +19948,7 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bxN" = ( /obj/structure/machinery/power/apc/high{ @@ -26771,10 +19958,7 @@ }, /obj/structure/surface/rack, /obj/item/powerloader_clamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bxO" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -26785,9 +19969,7 @@ name = "Containment Cell 1"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/inaccessible) "bxP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -26797,27 +19979,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "bxQ" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "bxR" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/gamma/airlock/control) "bxS" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -26828,9 +20002,7 @@ name = "Containment Cell 4"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/inaccessible) "bxT" = ( /obj/structure/machinery/light{ @@ -26838,17 +20010,11 @@ }, /obj/structure/surface/rack, /obj/item/cell/secborg, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bxU" = ( /obj/structure/machinery/r_n_d/server, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "bxV" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -26857,9 +20023,7 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "bxW" = ( /obj/structure/closet/crate, @@ -26869,18 +20033,13 @@ /obj/item/organ/kidneys/prosthetic, /obj/item/organ/liver/prosthetic, /obj/item/organ/lungs/prosthetic, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "bxX" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bxY" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -26891,9 +20050,7 @@ name = "Containment Cell 4"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/inaccessible) "bxZ" = ( /obj/structure/closet/crate, @@ -26901,10 +20058,7 @@ /obj/item/robot_parts/robot_component/armour, /obj/item/robot_parts/robot_component/camera, /obj/item/robot_parts/robot_component/diagnosis_unit, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "bya" = ( /obj/structure/machinery/light{ @@ -26915,32 +20069,22 @@ /obj/item/tool/screwdriver, /obj/item/tool/wrench, /obj/item/stack/nanopaste, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "byb" = ( /obj/structure/machinery/optable, /obj/item/robot_parts/robot_suit, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "byc" = ( /obj/structure/surface/rack, /obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/robotics) "byd" = ( /obj/structure/surface/rack, /obj/item/frame/bucket_sensor, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "bye" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -26953,18 +20097,13 @@ /area/corsat/gamma/administration) "byg" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "byh" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/robotics) "byi" = ( /obj/structure/closet/crate, @@ -26973,42 +20112,31 @@ pixel_x = 2; pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/south/engineering) "byj" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/robotics) "byk" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "byl" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "bym" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "byn" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -27039,9 +20167,7 @@ /area/corsat/gamma/administration) "byr" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "bys" = ( /obj/structure/machinery/microwave, @@ -27049,18 +20175,12 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "byt" = ( /obj/structure/machinery/juicer, /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "byu" = ( /obj/structure/surface/table/woodentable, @@ -27071,64 +20191,43 @@ "byv" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "byw" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "byy" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "byz" = ( /obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "byB" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/masks, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "byE" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "byF" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "byG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "byH" = ( /obj/structure/closet/crate/science{ @@ -27137,9 +20236,7 @@ opened = 1 }, /obj/item/organ/liver, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "byI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -27148,24 +20245,17 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "byJ" = ( /obj/structure/surface/rack, /obj/item/xeno_restraints, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "byL" = ( /obj/structure/surface/table/reinforced, /obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "byM" = ( /obj/structure/machinery/light{ @@ -27175,32 +20265,22 @@ /area/corsat/omega/complex) "byN" = ( /obj/structure/machinery/shower, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "byO" = ( /obj/structure/surface/table/reinforced, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "byP" = ( /obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "byQ" = ( /obj/structure/surface/table/reinforced, /obj/item/form_printer, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/omega/complex) "byR" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -27210,26 +20290,18 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "byS" = ( /obj/structure/sink{ pixel_y = 25 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "byT" = ( /obj/item/storage/box/masks, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "byU" = ( /obj/structure/machinery/light{ @@ -27237,10 +20309,7 @@ }, /obj/structure/surface/rack, /obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "byV" = ( /obj/structure/closet/crate/science{ @@ -27249,16 +20318,11 @@ opened = 1 }, /obj/item/organ/eyes, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "byW" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/omega/complex) "byX" = ( /obj/item/xeno_egg, @@ -27269,91 +20333,65 @@ icon_state = "open_science"; opened = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "byY" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "byZ" = ( /obj/structure/surface/rack, /obj/item/stock_parts/console_screen, /obj/item/stock_parts/console_screen, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/engineering) "bzb" = ( /obj/structure/surface/table/almayer, /obj/item/stock_parts/matter_bin/super, /obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "bzc" = ( /obj/structure/surface/table/almayer, /obj/item/device/assembly/igniter, /obj/item/device/assembly/voice, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bzd" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/glasses/meson, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "bze" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/powercell, /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "bzf" = ( /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "bzg" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/omega/complex) "bzj" = ( /obj/structure/surface/table/almayer, /obj/item/form_printer, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bzk" = ( /obj/structure/surface/table/almayer, /obj/item/form_printer, /obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bzl" = ( /obj/structure/machinery/power/apc/hyper{ @@ -27361,10 +20399,7 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "bzm" = ( /obj/structure/window/framed/corsat/hull/research, @@ -27379,9 +20414,7 @@ name = "Containment Cell 3"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/inaccessible) "bzo" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -27398,27 +20431,21 @@ id = "SigmaIDSC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bzp" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bzq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Research Complex Theta"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "bzr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -27426,44 +20453,34 @@ req_access_txt = "103"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bzs" = ( /obj/structure/machinery/door/airlock/almayer/research{ name = "\improper Containment Chambers"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bzt" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bzu" = ( /obj/structure/machinery/door/airlock/almayer/research{ name = "\improper Xeno Autopsy"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bzv" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) "bzw" = ( /obj/structure/machinery/door/airlock/almayer/research{ @@ -27472,9 +20489,7 @@ name = "\improper Decontamination Chamber"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bzx" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -27482,17 +20497,12 @@ name = "Xenobiology Reception Desk"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bzy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bzz" = ( /obj/structure/surface/rack, @@ -27500,10 +20510,7 @@ /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, /obj/item/clothing/glasses/welding, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/residential/maint) "bzA" = ( /obj/structure/surface/rack, @@ -27521,24 +20528,15 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bzB" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/omega/complex) "bzC" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "bzD" = ( /obj/structure/surface/rack, @@ -27550,143 +20548,99 @@ name = "Secure Racks"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bzE" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/machine/clonescanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bzF" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bzG" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bzH" = ( /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, /obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bzI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bzJ" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bzK" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bzL" = ( /obj/structure/machinery/light, /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bzM" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/wirecutters, /obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/south/robotics) "bzN" = ( /obj/structure/surface/table/almayer, /obj/item/device/assembly/infra, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "bzP" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bzQ" = ( /obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "bzS" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/engineering_guide, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "bzT" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) "bzV" = ( /obj/structure/surface/table/almayer, /obj/item/device/robotanalyzer, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "bzW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bzY" = ( /obj/structure/surface/table/almayer, /obj/item/device/mmi/radio_enabled, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/robotics) "bzZ" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bAa" = ( /obj/structure/surface/table/almayer, @@ -27694,115 +20648,77 @@ dir = 8 }, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "bAb" = ( /obj/structure/machinery/optable, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "bAd" = ( /obj/structure/curtain/open/medical, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bAe" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bAf" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bAg" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay) "bAh" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bAi" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bAj" = ( /obj/structure/surface/table/almayer, /obj/item/storage/syringe_case/regular, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/omega/complex) "bAk" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay) "bAl" = ( /obj/structure/machinery/chem_dispenser{ req_access_txt = "100" }, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/chemistry) "bAm" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bAn" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/omega/complex) "bAo" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "bAp" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "bAq" = ( /obj/structure/surface/rack, @@ -27814,75 +20730,43 @@ name = "Secure Racks"; req_access_txt = "103" }, -/obj/item/XenoItem/AntiAcid, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bAr" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/o2, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bAs" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) -"bAt" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/obj/item/XenoItem/ResinPaste, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) "bAu" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "bAv" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "bAw" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Hydroponics Lab"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "bAx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Laboratory"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bAy" = ( /obj/structure/surface/rack, -/obj/item/XenoBio/Resin, +/obj/item/oldresearch/Resin, /obj/structure/window/reinforced/toughened{ dir = 8 }, @@ -27891,41 +20775,28 @@ name = "Secure Racks"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/omega/complex) "bAz" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bAA" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/lobby) "bAB" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bAC" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/surgery) "bAD" = ( /obj/structure/machinery/light, @@ -27938,9 +20809,7 @@ pixel_x = 12; pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/surgery) "bAE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -27948,146 +20817,96 @@ name = "Genetics Lab"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "bAF" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/omega/complex) "bAG" = ( /obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) "bAH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "bAI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ name = "Emergency NanoMed"; pixel_x = 30 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "bAJ" = ( /obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bAK" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop{ pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bAL" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bAO" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "bAP" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/north, /area/corsat/gamma/medbay) "bAR" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/omega/complex) "bAS" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "bAT" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay) "bAV" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bAW" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "bAX" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southwest, /area/corsat/gamma/medbay/surgery) "bAY" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/retractor, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay/surgery) "bAZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southwest, /area/corsat/gamma/medbay/lobby) "bBa" = ( /obj/structure/machinery/light{ @@ -28099,10 +20918,7 @@ /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "bBc" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -28111,42 +20927,30 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "bBd" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "bBe" = ( /obj/structure/surface/table/almayer, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "bBf" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "bBh" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/surgery) "bBj" = ( /obj/structure/surface/rack, @@ -28157,19 +20961,14 @@ /obj/item/storage/pill_bottle/antitox{ pixel_x = -5 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay/chemistry) "bBk" = ( /obj/structure/machinery/smartfridge/chemistry{ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/chemistry) "bBl" = ( /obj/structure/surface/rack, @@ -28184,50 +20983,36 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay/chemistry) "bBm" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southwest, /area/corsat/gamma/medbay/chemistry) "bBn" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/chemistry) "bBo" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/chemistry) "bBp" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/beakers, /obj/item/storage/box/beakers, /obj/item/tool/hand_labeler, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/chemistry) "bBq" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "bBr" = ( /obj/structure/surface/table/almayer, @@ -28235,9 +21020,7 @@ /obj/item/paper, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "bBs" = ( /obj/structure/machinery/light, @@ -28245,48 +21028,34 @@ /obj/item/clipboard, /obj/item/clipboard, /obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "bBt" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "bBu" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "bBw" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bBx" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) "bBy" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/adv, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/omega/complex) "bBz" = ( /obj/structure/surface/table/almayer, @@ -28295,60 +21064,39 @@ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/omega/complex) "bBA" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) "bBB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bBC" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bBD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential/researcher) "bBE" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/omega/complex) "bBF" = ( /obj/item/storage/box/masks, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/omega/complex) "bBG" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bBH" = ( /obj/structure/surface/rack, @@ -28360,21 +21108,16 @@ name = "Secure Racks"; req_access_txt = "103" }, -/obj/item/XenoBio/Blood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/obj/item/oldresearch/Blood, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bBI" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bBJ" = ( /obj/structure/surface/rack, -/obj/item/XenoBio/Chitin, +/obj/item/oldresearch/Chitin, /obj/structure/window/reinforced/toughened{ dir = 8 }, @@ -28383,9 +21126,7 @@ name = "Secure Racks"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bBL" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -28399,27 +21140,20 @@ name = "Containment"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bBM" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bBN" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/omega/complex) "bBO" = ( /obj/structure/window/reinforced{ @@ -28440,34 +21174,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "bBT" = ( /obj/structure/machinery/door/window/eastright, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "bBW" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bBX" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/gamma/hangar) "bBY" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/omega/complex) "bBZ" = ( /obj/structure/surface/table/woodentable, @@ -28481,10 +21204,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCb" = ( /obj/structure/bed/chair/wood/normal{ @@ -28499,19 +21219,13 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCd" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCe" = ( /obj/structure/bookcase/manuals/medical, @@ -28532,17 +21246,11 @@ icon_state = "book-5"; name = "\improper Mentor's Guide Bookcase" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCi" = ( /obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCj" = ( /obj/structure/surface/rack, @@ -28552,9 +21260,7 @@ req_access_txt = "103" }, /obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "bCk" = ( /obj/structure/bookcase/manuals/research_and_development, @@ -28566,10 +21272,7 @@ /area/corsat/gamma/rnr/library) "bCn" = ( /obj/structure/bookcase, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCo" = ( /obj/structure/bed/chair/wood/normal, @@ -28584,20 +21287,14 @@ /obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCr" = ( /obj/structure/machinery/light, /obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "bCu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -28605,44 +21302,30 @@ req_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bCv" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bCw" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/security) "bCx" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "bCy" = ( /obj/structure/bed/chair/comfy/beige, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "bCB" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "bCD" = ( /obj/item/storage/belt/gun/m4a3/vp78{ @@ -28655,18 +21338,13 @@ /obj/item/device/flash, /obj/item/device/hailer, /obj/item/device/megaphone, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security) "bCE" = ( /obj/structure/bed/chair/comfy/lime{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "bCF" = ( /obj/structure/closet/secure_closet/security_empty{ @@ -28682,10 +21360,7 @@ /obj/item/clothing/accessory/storage/holster/armpit, /obj/item/device/binoculars, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/security) "bCG" = ( /obj/structure/machinery/door_control{ @@ -28701,17 +21376,12 @@ pixel_y = -24; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "bCH" = ( /obj/item/storage/toolbox/mechanical, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "bCI" = ( /obj/structure/window/framed/corsat/security, @@ -28725,50 +21395,35 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/cargo) "bCL" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "bCM" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bCN" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/id) "bCQ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bCR" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bCS" = ( /obj/structure/window/framed/corsat/security, @@ -28792,10 +21447,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/south/id) "bCX" = ( /obj/structure/window/framed/corsat/security, @@ -28808,17 +21460,11 @@ /area/corsat/gamma/airlock/south) "bCZ" = ( /obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "bDa" = ( /obj/structure/machinery/computer/rdservercontrol, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "bDd" = ( /obj/item/storage/belt/security/MP/full, @@ -28829,33 +21475,22 @@ /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/security) "bDe" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "bDf" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "riot cabinet"; req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "bDg" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "bDk" = ( /obj/item/storage/belt/security/MP/full, @@ -28866,17 +21501,11 @@ /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "bDl" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/security) "bDn" = ( /obj/structure/machinery/light{ @@ -28894,34 +21523,23 @@ /area/corsat/omega/security) "bDs" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/south/security) "bDt" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "bDu" = ( /obj/structure/surface/table/almayer, /obj/item/restraint/handcuffs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) "bDv" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Armory"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "bDw" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -28931,9 +21549,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "bDy" = ( /obj/structure/machinery/light{ @@ -28942,43 +21558,31 @@ /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) "bDz" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/security) "bDC" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "bDD" = ( /obj/structure/bed/chair, /obj/structure/machinery/flasher{ pixel_y = 24 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "bDF" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/south/security) "bDH" = ( /obj/structure/window/framed/corsat/cell/security, @@ -28994,10 +21598,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/theta/airlock/west/id) "bDJ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -29012,9 +21613,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "bDM" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -29028,33 +21627,21 @@ dir = 5 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "bDO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/skills, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/gamma/administration) "bDP" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) "bDT" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/airlock/control) "bDU" = ( /obj/structure/surface/table/reinforced, @@ -29062,57 +21649,37 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/checkpoint) "bDX" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/airlock/south/id) "bDY" = ( /obj/item/device/taperecorder, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bDZ" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "bEb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/southeast/datalab) "bEf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "bEg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "bEi" = ( /obj/structure/surface/table/reinforced, @@ -29121,63 +21688,45 @@ name = "Checkpoint Control"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hangar/security) "bEj" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/control) "bEk" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/control) "bEl" = ( /obj/structure/machinery/light, /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/chemistry) "bEm" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "bEn" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/control) "bEo" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "bEp" = ( /obj/structure/surface/table/reinforced, @@ -29193,40 +21742,27 @@ pixel_x = -7; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/hangar/security) "bEq" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/security) "bEr" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "bEs" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "bEt" = ( /obj/structure/surface/table/reinforced, /obj/item/phone, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/security) "bEv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -29234,25 +21770,18 @@ name = "Research Complex Omega"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "bEy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Laboratory"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "bEC" = ( /obj/structure/machinery/lapvend, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "bED" = ( /obj/structure/machinery/power/apc/high{ @@ -29263,10 +21792,7 @@ /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "bEE" = ( /obj/structure/machinery/light{ @@ -29277,10 +21803,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "bEF" = ( /obj/structure/machinery/disposal, @@ -29299,24 +21822,16 @@ "bEI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/communications, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) "bEK" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/administration) "bEM" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bEN" = ( /obj/structure/surface/table/almayer, @@ -29324,21 +21839,13 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "bEO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/gamma/administration) "bES" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/corsat/gamma/administration) "bET" = ( /obj/structure/machinery/photocopier, @@ -29353,9 +21860,7 @@ /obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/administration) "bEV" = ( /obj/structure/surface/table/almayer, @@ -29365,38 +21870,27 @@ /obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/administration) "bEW" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/administration) "bEX" = ( /obj/structure/machinery/light, /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/administration) "bFc" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/wood, /area/corsat/sigma/cafe) "bFf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/corsat/omega/offices) "bFg" = ( /obj/structure/surface/table/almayer, @@ -29406,9 +21900,7 @@ }, /obj/structure/window/reinforced, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bFi" = ( /obj/structure/machinery/light{ @@ -29418,30 +21910,20 @@ /obj/structure/window/reinforced, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bFj" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bFm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/corsat/omega/offices) "bFn" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) "bFo" = ( /obj/structure/surface/table/almayer, @@ -29451,23 +21933,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bFp" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "bFq" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/security) "bFr" = ( /obj/structure/window/reinforced{ @@ -29477,16 +21952,11 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/security) "bFs" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "bFt" = ( /obj/structure/machinery/light{ @@ -29494,141 +21964,99 @@ }, /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/security) "bFu" = ( /obj/structure/window/reinforced, /obj/structure/machinery/door/window/brigdoor/eastleft{ name = "Forensics" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/security) "bFv" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "bFw" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "bFx" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/security) "bFy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/security) "bFz" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Holding Cell 1"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "bFA" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "bFB" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/security) "bFC" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "bFD" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/security) "bFF" = ( /obj/structure/surface/table/almayer, /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "bFG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "bFH" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/gloves/latex, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/security) "bFI" = ( /obj/structure/surface/table/reinforced, /obj/item/device/taperecorder, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/security) "bFK" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "bFL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/residential/maint) "bFM" = ( /obj/structure/surface/table/almayer, @@ -29638,10 +22066,7 @@ /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "bFN" = ( /obj/structure/surface/table/almayer, @@ -29653,17 +22078,11 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "bFO" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/gamma/hangar/flightcontrol) "bFP" = ( /obj/structure/surface/table/almayer, @@ -29673,9 +22092,7 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "bFQ" = ( /obj/structure/surface/table/almayer, @@ -29684,71 +22101,48 @@ health = 250 }, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "bFR" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/flightcontrol) "bFT" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "bFU" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/gamma/hangar/flightcontrol) "bFV" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bFW" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bFX" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/gamma/hangar/flightcontrol) "bFY" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "bFZ" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "bGa" = ( /obj/structure/surface/table/almayer, @@ -29756,23 +22150,15 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bGc" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/flightcontrol) "bGd" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/flightcontrol) "bGe" = ( /obj/structure/surface/table/almayer, @@ -29781,9 +22167,7 @@ health = 80 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bGf" = ( /obj/structure/surface/table/almayer, @@ -29793,9 +22177,7 @@ }, /obj/item/clipboard, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bGg" = ( /obj/structure/surface/table/almayer, @@ -29803,9 +22185,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bGh" = ( /obj/structure/surface/table/almayer, @@ -29813,9 +22193,7 @@ dir = 4 }, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "bGi" = ( /obj/structure/surface/table/almayer, @@ -29824,22 +22202,15 @@ health = 80 }, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bGj" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/residential/maint) "bGn" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential/maint) "bGp" = ( /obj/structure/machinery/power/apc/hyper{ @@ -29847,16 +22218,11 @@ start_charge = 0 }, /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "bGq" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/hangar/monorail/control) "bGr" = ( /obj/structure/machinery/power/apc/hyper{ @@ -29865,27 +22231,18 @@ start_charge = 0 }, /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/hangar/monorail/control) "bGs" = ( /obj/structure/surface/table/reinforced, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/monorail/control) "bGt" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/hangar/monorail/control) "bGu" = ( /obj/structure/machinery/power/apc/hyper{ @@ -29893,10 +22250,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/monorail) "bGy" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -29905,53 +22259,37 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "bGB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/sigma/hangar/arrivals) "bGE" = ( /obj/structure/machinery/camera/autoname{ network = list("sigma") }, /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/arrivals) "bGH" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "bGI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/landing/console) "bGJ" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/hangar/office) "bGL" = ( /obj/structure/flora/pottedplant, @@ -29959,29 +22297,21 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/office) "bGM" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/office) "bGN" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "bGO" = ( /obj/structure/surface/table/almayer, @@ -29989,118 +22319,81 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/office) "bGP" = ( /obj/structure/prop/dam/crane, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "bGQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/foyer) "bGR" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/foyer) "bGT" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/foyer) "bGW" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "bGZ" = ( /obj/structure/bed/chair, /obj/item/bananapeel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "bHa" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/corsat/gamma/administration) "bHb" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/corsat/gamma/administration) "bHc" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security) "bHd" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential/researcher) "bHe" = ( /obj/structure/surface/table, /obj/item/book, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "bHf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "bHg" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "bHi" = ( /obj/structure/machinery/light{ @@ -30109,10 +22402,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/researcher) "bHj" = ( /obj/structure/machinery/light{ @@ -30121,70 +22411,48 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/researcher) "bHk" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "bHl" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential/east) "bHy" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "bHz" = ( /obj/structure/showcase{ icon_state = "bus" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "bHA" = ( /obj/structure/surface/table, /obj/item/trash/plate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "bHB" = ( /obj/structure/surface/table, /obj/item/trash/plate, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/canteen) "bHC" = ( /obj/structure/machinery/botany{ name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "bHL" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/arrivals) "bHR" = ( /obj/structure/surface/table/woodentable, @@ -30195,24 +22463,18 @@ /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "bIe" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "bIk" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/arrivals) "bIU" = ( /obj/structure/surface/table/reinforced, @@ -30220,96 +22482,63 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/south/id) "bIX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "bJa" = ( /obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo) "bJc" = ( /obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "bJf" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "bJg" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/canteen) "bJh" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "bJi" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "bJj" = ( /obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "bJk" = ( /obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/cargo) "bJl" = ( /obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "bJm" = ( /obj/structure/powerloader_wreckage, -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/corsat/sigma/biodome/scrapyard) "bJq" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/theta/airlock/west) "bJr" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/west) "bJu" = ( /obj/structure/machinery/light, @@ -30317,59 +22546,39 @@ /obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/west) "bJw" = ( /obj/structure/surface/table/almayer, /obj/item/device/assembly/infra, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering) "bJx" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/hangar/cargo) "bJA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/gamma/airlock/control) "bJB" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/sigma/airlock/control) "bJC" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "bJD" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/gamma/airlock/control) "bJE" = ( /obj/structure/machinery/floodlight{ @@ -30381,81 +22590,59 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bJG" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bJH" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/theta/airlock/control) "bJI" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bJJ" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bJK" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "bJL" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bJM" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bJN" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) "bJO" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/gamma/airlock/control) "bJP" = ( /obj/structure/surface/table/reinforced, @@ -30463,10 +22650,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/sigma/airlock/control) "bJQ" = ( /obj/structure/surface/table/reinforced, @@ -30474,67 +22658,46 @@ dir = 4; network = list("theta") }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/theta/airlock/control) "bJR" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/theta/airlock/control) "bJS" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bJT" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bJU" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/theta/airlock/control) "bJV" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "bJW" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bJX" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/sigma/airlock/control) "bJY" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -30549,16 +22712,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bJZ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "bKa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -30571,24 +22729,16 @@ name = "Access Shutter" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bKb" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "bKc" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/theta/airlock/control) "bKd" = ( /obj/structure/surface/table/reinforced, @@ -30597,45 +22747,29 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "bKe" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "bKf" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/airlock/control) "bKg" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/gamma/airlock/control) "bKh" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) "bKi" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) "bKj" = ( /obj/structure/surface/table/reinforced, @@ -30645,157 +22779,104 @@ dir = 8; network = list("theta") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/theta/airlock/control) "bKk" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/theta/airlock/control) "bKl" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/theta/airlock/control) "bKm" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/airlock/control) "bKn" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/airlock/control) "bKo" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bKp" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "bKq" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bKr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) "bKs" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "bKt" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/theta/airlock/control) "bKv" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/theta/airlock/control) "bKw" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/theta/airlock/control) "bKx" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/theta/airlock/control) "bKy" = ( /obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/airlock/control) "bKz" = ( /obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "bKA" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/sigma/airlock/control) "bKB" = ( /obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/theta/airlock/control) "bKC" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/theta/airlock/control) "bKD" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/sigma/dorms) "bKE" = ( /obj/structure/machinery/light{ @@ -30804,10 +22885,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/sigma/dorms) "bKF" = ( /obj/structure/machinery/light{ @@ -30816,99 +22894,65 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/sigma/dorms) "bKG" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/sigma/dorms) "bKH" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/sigma/dorms) "bKI" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/sigma/dorms) "bKJ" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/sigma/dorms) "bKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "bKL" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/sigma/dorms) "bKM" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/sigma/dorms) "bKN" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/gamma/administration) "bKQ" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail/control) "bKR" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "bKS" = ( /obj/structure/surface/table/reinforced, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/monorail/control) "bKT" = ( /obj/structure/machinery/light{ @@ -30916,29 +22960,18 @@ }, /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail/control) "bKU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/hangar/monorail) "bKX" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/hangar/monorail) "bKY" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) "bKZ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -30947,257 +22980,169 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/monorail/control) "bLc" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/hangar/monorail) "bLd" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/monorail/control) "bLg" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/monorail/control) "bLh" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/monorail/control) "bLi" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "bLk" = ( /obj/structure/surface/rack, /obj/item/circuitboard/airlock, /obj/item/circuitboard/airlock, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/residential/maint) "bLl" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/omega/maint) "bLm" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail/control) "bLn" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/shuttle_control/monorail{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/monorail/control) "bLq" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail/control) "bLr" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/hangar/monorail/control) "bLs" = ( /obj/structure/closet/secure_closet/engineering_welding{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bLu" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail/control) "bLw" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/office) "bLx" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "bLy" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bLz" = ( /obj/structure/closet/secure_closet/engineering_electrical{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bLA" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "bLB" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering) "bLC" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/maint) "bLD" = ( /obj/structure/closet/l3closet/janitor, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/omega/maint) "bLE" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) "bLF" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) "bLG" = ( /obj/structure/surface/rack, /obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) "bLI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Custodial Closet"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "bLL" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/storage/box/lights, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/omega/maint) "bLM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bLO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bLQ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) "bLR" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) "bLS" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/omega/maint) "bLT" = ( /obj/structure/surface/table/almayer, @@ -31208,50 +23153,32 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bLW" = ( /obj/structure/surface/table/almayer, /obj/item/stock_parts/matter_bin/super, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bLY" = ( /obj/structure/closet/secure_closet/engineering_personal{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/omega/maint) "bMb" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bMc" = ( /obj/structure/closet/secure_closet/engineering_personal{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "bMf" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bMh" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ @@ -31260,31 +23187,20 @@ req_one_access_txt = "100" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "bMi" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bMj" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bMk" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bMm" = ( /obj/structure/surface/rack, @@ -31296,52 +23212,35 @@ /obj/item/stack/sheet/plasteel{ amount = 10 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/omega/maint) "bMo" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/omega/maint) "bMp" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/glasses/meson, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/omega/maint) "bMu" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "bMv" = ( /obj/structure/surface/table/almayer, /obj/item/device/assembly/timer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "bMw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/engineering/lobby) "bMA" = ( /obj/structure/machinery/light, @@ -31349,9 +23248,7 @@ /obj/structure/machinery/computer/communications{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bMB" = ( /obj/structure/machinery/light, @@ -31359,9 +23256,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bMC" = ( /obj/structure/surface/table/almayer, @@ -31371,10 +23266,7 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "bMD" = ( /obj/structure/surface/table/almayer, @@ -31383,9 +23275,7 @@ health = 80 }, /obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bME" = ( /obj/structure/surface/table/almayer, @@ -31394,9 +23284,7 @@ health = 80 }, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "bMI" = ( /obj/structure/surface/table/almayer, @@ -31404,79 +23292,52 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bMM" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/omega/offices) "bMN" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/omega/offices) "bMO" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "bMP" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "bMQ" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/omega/offices) "bMR" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "bMS" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "bMT" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/sigma/southeast/dataoffice) "bMU" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/sigma/southeast/dataoffice) "bMX" = ( /obj/structure/machinery/light{ @@ -31484,10 +23345,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/southeast/dataoffice) "bMY" = ( /obj/structure/surface/table/almayer, @@ -31495,41 +23353,29 @@ /obj/item/paper, /obj/item/tool/pen/blue, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "bNb" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bNc" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bNd" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "bNe" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "bNh" = ( /obj/structure/surface/table/almayer, @@ -31538,9 +23384,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "bNi" = ( /obj/structure/surface/table/almayer, @@ -31549,39 +23393,29 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "bNj" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bNk" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "bNl" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bNm" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bNo" = ( /obj/structure/surface/table/almayer, @@ -31589,10 +23423,7 @@ pixel_y = 32 }, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "bNp" = ( /obj/structure/surface/table/almayer, @@ -31602,35 +23433,24 @@ /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "bNq" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/southeast/dataoffice) "bNr" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/southeast/dataoffice) "bNs" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/dataoffice) "bNt" = ( /obj/structure/surface/table/almayer, @@ -31639,40 +23459,27 @@ }, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/dataoffice) "bNu" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/dataoffice) "bNv" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/omega/offices) "bNw" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/sigma/south/offices) "bNx" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/south/offices) "bNy" = ( /obj/structure/surface/table/almayer, @@ -31680,10 +23487,7 @@ /obj/item/paper, /obj/item/tool/pen/blue, /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/sigma/south/offices) "bNz" = ( /obj/structure/machinery/light{ @@ -31692,10 +23496,7 @@ /obj/structure/surface/table/almayer, /obj/structure/window/reinforced, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "bNA" = ( /obj/structure/machinery/light{ @@ -31703,33 +23504,24 @@ }, /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/south/offices) "bNB" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "bNC" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "bND" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "bNE" = ( /obj/structure/surface/table/almayer, @@ -31737,18 +23529,13 @@ /obj/item/paper, /obj/item/tool/pen/blue, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "bNF" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "bNI" = ( /obj/structure/machinery/light{ @@ -31756,38 +23543,25 @@ }, /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/south/offices) "bNJ" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/south/offices) "bNK" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/sigma/south/offices) "bNM" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "bNN" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/lobby) "bNO" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -31796,31 +23570,21 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "bNP" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/corsat/sigma/cargo) "bNQ" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "bNR" = ( /obj/structure/surface/rack, /obj/item/circuitboard/apc, /obj/item/circuitboard/apc, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential/maint) "bNS" = ( /obj/structure/machinery/light{ @@ -31829,64 +23593,41 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering) "bNT" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering) "bNW" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering) "bNX" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering) "bNY" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering) "bNZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering) "bOa" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/omega/control) "bOb" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "bOc" = ( /obj/structure/surface/table/almayer, @@ -31897,56 +23638,37 @@ }, /obj/item/pamphlet/skill/powerloader, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "bOd" = ( /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "bOe" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/omega/control) "bOf" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) "bOg" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) "bOh" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/sigma/cargo) "bOi" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/sigma/cargo) "bOj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -31955,162 +23677,109 @@ name = "Virology Lockdown" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "bOl" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/sigma/cargo) "bOm" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "bOn" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/sigma/cargo) "bOo" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/cargo) "bOp" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/sigma/cargo) "bOq" = ( /obj/structure/machinery/light, /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "bOr" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "bOs" = ( /obj/structure/largecrate/lisa, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "bOt" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "bOu" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "bOw" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "bOx" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "bOy" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "bOA" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "bOB" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "bOC" = ( /obj/structure/surface/table/almayer, /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "bOD" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "bOE" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/trash/popcorn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/omega/cargo) "bOF" = ( /obj/structure/machinery/light, /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "bOG" = ( /obj/structure/surface/rack, /obj/item/cell/high, /obj/item/cell/high, /obj/item/cell/high, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential/maint) "bOH" = ( /obj/structure/machinery/power/apc/high{ @@ -32120,200 +23789,133 @@ }, /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/corsat/gamma/cargo/lobby) "bOI" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/cargo/lobby) "bOJ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bOK" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bOL" = ( /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "bON" = ( /obj/structure/machinery/autolathe, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/maint) "bOP" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/maint) "bOQ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "bOR" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "bOS" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/tool/crowbar, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/hangar/cargo) "bOT" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/hangar/cargo) "bOU" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "bOV" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/hangar/arrivals) "bOW" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/hangar/arrivals) "bOX" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/hangar/checkpoint) "bOY" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/hangar/checkpoint) "bOZ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/checkpoint) "bPa" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/checkpoint) "bPb" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "bPe" = ( /obj/structure/surface/table/almayer, /obj/item/robot_parts/robot_component/radio, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/robotics) "bPf" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/device/radio, /obj/item/device/radio, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential/maint) "bPg" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential/maint) "bPh" = ( /obj/structure/surface/rack, /obj/item/tool/wet_sign, /obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/hangar/monorail/control) "bPi" = ( /obj/structure/surface/table, /obj/item/corncob, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "bPj" = ( /obj/structure/surface/table/almayer, /obj/item/device/assembly/mousetrap, /obj/item/device/assembly/mousetrap, /obj/item/clothing/glasses/welding, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering) "bPk" = ( /obj/structure/machinery/light{ @@ -32323,33 +23925,21 @@ /obj/item/reagent_container/glass/bucket, /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/southeast/datamaint) "bPl" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/southeast/datamaint) "bPm" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering) "bPn" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/corsat/sigma/cargo) "bPp" = ( /obj/structure/surface/table/almayer, @@ -32358,93 +23948,63 @@ /obj/item/tool/stamp{ name = "Quartermaster's stamp" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) "bPq" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) "bPr" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/sigma/cargo) "bPs" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "bPt" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "bPv" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/sigma/cargo) "bPw" = ( /obj/structure/surface/table/almayer, /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "bPx" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigar, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "bPy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/sigma/cargo) "bPC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/chips, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "bPD" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "bPE" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox/meat{ pixel_y = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/cargo) "bPG" = ( /obj/structure/surface/table/almayer, @@ -32453,47 +24013,32 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/sigma/cargo) "bPH" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/sigma/cargo) "bPI" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen, /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "bPJ" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "bPK" = ( /obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "bPL" = ( /obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/sigma/cargo) "bPM" = ( /obj/structure/machinery/power/apc/high{ @@ -32501,26 +24046,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/north) "bPO" = ( /obj/structure/surface/rack, /obj/item/storage/box/lights, /obj/item/device/lightreplacer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/north) "bPQ" = ( /obj/structure/machinery/computer/general_air_control, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "bPR" = ( /obj/structure/machinery/power/apc/hyper{ @@ -32528,20 +24064,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering/atmos) "bPS" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering/atmos) "bPV" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -32551,38 +24081,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bPW" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bPX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bPY" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/north) "bPZ" = ( /obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bQa" = ( /obj/structure/machinery/light{ @@ -32591,33 +24110,22 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/north) "bQb" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/north) "bQc" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/north) "bQd" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/north) "bQe" = ( /obj/structure/machinery/power/apc/high{ @@ -32629,10 +24137,7 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 15 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering) "bQf" = ( /obj/structure/closet/crate, @@ -32642,10 +24147,7 @@ /obj/item/stack/sheet/glass{ amount = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bQg" = ( /obj/structure/closet/crate, @@ -32655,19 +24157,13 @@ /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bQh" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/light_bulb/tube/large, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bQi" = ( /obj/structure/surface/rack, @@ -32677,65 +24173,43 @@ /obj/item/device/assembly/timer, /obj/item/device/assembly/prox_sensor, /obj/item/device/assembly/prox_sensor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bQj" = ( /obj/structure/surface/rack, /obj/item/cell, /obj/item/cell, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "bQk" = ( /obj/structure/surface/table/reinforced, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/omega/control) "bQl" = ( /obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "bQm" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering/lobby) "bQn" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/lobby) "bQo" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/north) "bQp" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel{ amount = 10 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "bQq" = ( /obj/structure/closet/crate, @@ -32744,24 +24218,17 @@ pixel_x = 2; pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "bQr" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "bQs" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering) "bQt" = ( /obj/structure/machinery/portable_atmospherics/canister/air, @@ -32784,18 +24251,13 @@ /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/storage/box/lights, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/southeast/datamaint) "bQx" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bQy" = ( /turf/open/floor/corsat, @@ -32805,46 +24267,33 @@ /obj/structure/surface/rack, /obj/item/storage/belt/utility/full, /obj/item/device/multitool, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/southeast/datamaint) "bQB" = ( /obj/structure/machinery/meter, /obj/structure/pipes/standard/simple/visible{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bQC" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/southeast/datamaint) "bQE" = ( /obj/structure/pipes/binary/pump/on{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "bQF" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/southeast) "bQG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "bQH" = ( /obj/structure/machinery/portable_atmospherics/canister/nitrogen, @@ -32855,36 +24304,26 @@ dir = 4 }, /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "bQK" = ( /obj/item/tool/wet_sign, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/southeast/datamaint) "bQL" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "bQM" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "bQN" = ( /obj/structure/window/framed/corsat, @@ -32894,48 +24333,32 @@ /obj/structure/surface/rack, /obj/item/cell/high, /obj/item/cell/high, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/southeast/datamaint) "bQP" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/atmos) "bQQ" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering/atmos) "bQR" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bQS" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/omega/control) "bQT" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/glasses/science, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bQU" = ( /obj/structure/machinery/light{ @@ -32943,66 +24366,46 @@ }, /obj/structure/surface/table/almayer, /obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "bQV" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/corsat, /area/corsat/inaccessible) "bQW" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "bQX" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "bQY" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, /obj/item/clothing/glasses/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "bQZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "bRa" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "bRc" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "bRd" = ( /obj/item/device/analyzer/plant_analyzer, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "bRe" = ( /obj/item/reagent_container/glass/bucket, @@ -33011,16 +24414,11 @@ /obj/item/tool/minihoe, /obj/item/tool/hatchet, /obj/item/tool/shovel/spade, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) "bRf" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/security) "bRg" = ( /obj/structure/window/framed/corsat/security, @@ -33041,35 +24439,24 @@ name = "Privacy Shutters" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "bRj" = ( /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "bRk" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/checkpoint) "bRn" = ( /obj/structure/surface/rack, /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/checkpoint) "bRo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -33077,9 +24464,7 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/complex) "bRp" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -33088,17 +24473,12 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "bRq" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "bRr" = ( /obj/structure/closet/secure_closet{ @@ -33108,33 +24488,24 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "bRv" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bRw" = ( /obj/item/clothing/gloves/latex, /obj/structure/surface/table/reinforced, /obj/item/clothing/gloves/latex, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bRx" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "bRy" = ( /obj/structure/bed/chair, @@ -33142,10 +24513,7 @@ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) "bRz" = ( /obj/structure/closet/secure_closet/security_empty{ @@ -33153,10 +24521,7 @@ }, /obj/item/clothing/head/beret/sec/warden, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south/security) "bRE" = ( /obj/structure/bed/chair/office/light{ @@ -33166,31 +24531,22 @@ dir = 4; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bRH" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ name = "Forensics" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bRI" = ( /obj/structure/machinery/computer/rdconsole, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "bRJ" = ( /obj/structure/surface/table/reinforced, /obj/item/evidencebag, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bRK" = ( /obj/structure/surface/table/reinforced, @@ -33199,16 +24555,11 @@ dir = 4; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/security) "bRQ" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/security) "bRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33220,40 +24571,29 @@ /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "bRW" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south/security) "bRX" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "bRY" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "bRZ" = ( /obj/structure/surface/rack, /obj/item/evidencebag, /obj/item/evidencebag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "bSa" = ( /obj/structure/surface/table/almayer, @@ -33262,34 +24602,25 @@ pixel_y = 7 }, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "bSb" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/restraint/handcuffs/zip, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "bSe" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/glass, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "bSf" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/checkpoint) "bSg" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -33298,10 +24629,7 @@ }, /obj/item/weapon/shield/riot, /obj/item/weapon/shield/riot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/checkpoint) "bSh" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -33310,16 +24638,11 @@ }, /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "bSi" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/checkpoint) "bSk" = ( /obj/structure/window/framed/corsat/cell/security, @@ -33329,23 +24652,15 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "bSm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) "bSn" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/security) "bSo" = ( /obj/structure/machinery/door_control{ @@ -33358,20 +24673,14 @@ name = "secure evidence locker"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/checkpoint) "bSp" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/checkpoint) "bSr" = ( /obj/structure/machinery/power/apc/high{ @@ -33379,24 +24688,16 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "bSx" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/engineering_construction, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "bSE" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "bSG" = ( /obj/structure/surface/table/reinforced, @@ -33406,43 +24707,29 @@ pixel_x = 7; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "bSK" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar/checkpoint) "bSM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/hangar/checkpoint) "bSO" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "bSW" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/arrivals) "bSX" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar) "bSZ" = ( /obj/structure/bed/chair, @@ -33450,9 +24737,7 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "bTb" = ( /obj/structure/bed/chair{ @@ -33462,22 +24747,15 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "bTh" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar) "bTj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/checkpoint) "bTk" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -33494,27 +24772,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "bTo" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "bTp" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "bTq" = ( /obj/structure/surface/rack, @@ -33526,9 +24796,7 @@ }, /obj/item/weapon/gun/revolver/m44, /obj/item/weapon/gun/revolver/m44, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bTr" = ( /obj/structure/surface/rack, @@ -33539,9 +24807,7 @@ name = "Weapon Rack" }, /obj/item/weapon/gun/smg/m39, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bTs" = ( /obj/structure/target, @@ -33554,26 +24820,18 @@ desc = "A rectangular steel crate containing firing targets."; name = "target crate" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "bTt" = ( /obj/structure/closet/bombcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bTu" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "SigmaGrounds"; name = "Testing Grounds" }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/biodome/testgrounds) "bTv" = ( /obj/structure/machinery/door_control{ @@ -33581,10 +24839,7 @@ name = "Testing Grounds"; pixel_x = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bTw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -33592,10 +24847,7 @@ req_access_txt = "106"; use_power = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bTx" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -33603,10 +24855,7 @@ id = "SigmaGrounds"; name = "Testing Grounds" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/biodome/testgrounds) "bTy" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -33614,10 +24863,7 @@ id = "SigmaGrounds"; name = "Testing Grounds" }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/biodome/testgrounds) "bTz" = ( /obj/item/explosive/plastic, @@ -33628,10 +24874,7 @@ name = "explosives cabinet"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bTA" = ( /obj/item/explosive/mine/pmc, @@ -33642,10 +24885,7 @@ name = "explosives cabinet"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bTB" = ( /obj/item/explosive/grenade/high_explosive/frag, @@ -33656,39 +24896,27 @@ name = "explosives cabinet"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bTC" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "SigmaGrounds"; name = "Testing Grounds" }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/sigma/biodome/testgrounds) "bTH" = ( /obj/item/paper/crumpled, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bTM" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/suit_cooling_unit, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bTN" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bTO" = ( /obj/structure/machinery/power/apc/high{ @@ -33697,55 +24925,38 @@ start_charge = 0 }, /obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "bTQ" = ( /obj/structure/surface/table/reinforced, /obj/item/device/gripper, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bTU" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "bTV" = ( /obj/structure/surface/table/reinforced, /obj/item/cell/hyper/empty, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bTW" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/head/helmet/augment, /obj/item/tool/pen/paralysis, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bTX" = ( /obj/item/paper/crumpled, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/sigma/south/complex) "bTZ" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "bUa" = ( /obj/structure/surface/rack, @@ -33754,9 +24965,7 @@ name = "Prototype Racks"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "bUc" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -33765,17 +24974,13 @@ req_one_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bUg" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, /area/corsat/sigma/south/complex) "bUh" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -33785,25 +24990,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bUi" = ( /obj/structure/machinery/blackbox_recorder, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "bUl" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/drinkingglass, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "bUm" = ( /obj/structure/machinery/power/smes, @@ -33819,61 +25017,44 @@ name = "specimen control cabinet"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "bUr" = ( /obj/structure/surface/table/reinforced, /obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "bUs" = ( /obj/structure/surface/table/reinforced, /obj/item/device/assembly/infra, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "bUt" = ( /obj/structure/surface/table/reinforced, /obj/item/explosive/grenade/empgrenade, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "bUv" = ( /obj/structure/surface/table/reinforced, /obj/item/explosive/grenade/custom/large, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "bUx" = ( /obj/structure/surface/table/reinforced, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bUz" = ( /obj/structure/safe{ spawnkey = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "bUA" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "bUC" = ( /obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -33884,10 +25065,7 @@ dir = 4 }, /obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "bUF" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/phoron, @@ -33895,10 +25073,7 @@ dir = 8; id_tag = "mix_sigma_out" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/toxins) "bUI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -33906,9 +25081,7 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bUJ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -33921,9 +25094,7 @@ /area/corsat/theta/biodome) "bUL" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bUM" = ( /obj/structure/machinery/light{ @@ -33933,16 +25104,11 @@ /obj/effect/landmark/nightmare{ insert_tag = "lockdown-theta-control" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "bUN" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bUO" = ( /obj/structure/machinery/door_control{ @@ -33950,57 +25116,38 @@ name = "Access Shutters"; pixel_y = 24 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bUP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) "bUQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) "bUS" = ( /obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bUT" = ( /obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/theta/airlock/control) "bUU" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "CO2 Control" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/theta/airlock/control) "bUV" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/theta/airlock/control) "bUW" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -34011,28 +25158,19 @@ /area/corsat/inaccessible) "bUY" = ( /obj/structure/pipes/trinary/mixer, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/theta/airlock/control) "bUZ" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/theta/airlock/control) "bVb" = ( /obj/structure/pipes/binary/pump/on{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/airlock/control) "bVc" = ( /obj/structure/surface/rack, @@ -34040,33 +25178,23 @@ /obj/item/tank/air, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "bVg" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Mixed Air Control" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "bVh" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "bVm" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bVn" = ( /obj/item/device/binoculars, @@ -34077,10 +25205,7 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/airlock/control) "bVs" = ( /obj/structure/machinery/power/apc/high{ @@ -34089,18 +25214,12 @@ start_charge = 0 }, /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) "bVv" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "bVw" = ( /obj/structure/machinery/power/apc/high{ @@ -34109,18 +25228,13 @@ start_charge = 0 }, /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) "bVx" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bVC" = ( /obj/item/device/binoculars, @@ -34131,19 +25245,13 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "bVD" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "bVE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -34157,9 +25265,7 @@ name = "Access Shutters"; pixel_y = -24 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bVH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34169,35 +25275,26 @@ /area/corsat/theta/biodome) "bVI" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bVJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bVL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/theta/airlock/control) "bVM" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/theta/airlock/control) "bVN" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -34212,19 +25309,13 @@ /area/corsat/inaccessible) "bVQ" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/theta/airlock/control) "bVS" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Mixed Air Control" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) "bVT" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -34236,26 +25327,17 @@ "bVU" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/theta/airlock/control) "bVV" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/theta/airlock/control) "bVW" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/theta/airlock/control) "bVX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -34264,9 +25346,7 @@ /area/corsat/theta/biodome) "bWb" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/control) "bWc" = ( /obj/structure/machinery/light{ @@ -34276,25 +25356,16 @@ network = list("theta") }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "bWd" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/theta/airlock/control) "bWe" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "bWf" = ( /obj/structure/bed/chair/office/light{ @@ -34303,9 +25374,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bWg" = ( /obj/structure/machinery/light{ @@ -34315,160 +25384,112 @@ /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/theta/airlock/control) "bWh" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bWi" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/control) "bWj" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bWk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bWl" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bWm" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/theta/airlock/control) "bWn" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/theta/airlock/control) "bWo" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/theta/airlock/control) "bWp" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/theta/airlock/control) "bWq" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/theta/airlock/control) "bWr" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/theta/airlock/control) "bWs" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/control) "bWt" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/control) "bWu" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bWv" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bWw" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/control) "bWx" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "bWy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "bWz" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bWA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bWB" = ( /obj/structure/machinery/light{ @@ -34477,162 +25498,111 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "bWC" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "bWD" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "bWE" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/airlock/control) "bWG" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/airlock/control) "bWH" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/airlock/control) "bWI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bWJ" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "bWK" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/airlock/control) "bWL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bWM" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "bWN" = ( /obj/structure/pipes/trinary/mixer{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/airlock/control) "bWO" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "bWQ" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "CO2 Control" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/airlock/control) "bWR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bWS" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/airlock/control) "bWT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "bWU" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Waste Tank Control" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/theta/airlock/control) "bWV" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bWW" = ( /obj/structure/surface/table/almayer, @@ -34642,132 +25612,91 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bWX" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bWZ" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "bXa" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bXb" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "bXc" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bXd" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bXe" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bXh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "bXl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bXn" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bXo" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "bXp" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/airlock/control) "bXq" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "bXr" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "bXs" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "bXu" = ( /obj/item/folder/black_random, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "bXv" = ( /obj/structure/machinery/light{ @@ -34776,17 +25705,11 @@ /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "bXw" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "bXx" = ( /obj/structure/surface/table/almayer, @@ -34794,40 +25717,26 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "bXz" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "bXA" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "bXB" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "bXC" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "bXD" = ( /obj/structure/machinery/light, @@ -34835,85 +25744,60 @@ /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/control) "bXE" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/airlock/control) "bXG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "bXH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bXI" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) "bXK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "bXN" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "bXO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bXQ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bXW" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bXY" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/airlock/control) "bXZ" = ( /obj/structure/machinery/light{ @@ -34923,10 +25807,7 @@ /obj/effect/landmark/nightmare{ insert_tag = "lockdown-gamma-control" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) "bYa" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -34936,16 +25817,12 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bYb" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "bYd" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -34957,26 +25834,17 @@ /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Mixed Air Control" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) "bYh" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/airlock/control) "bYl" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Nitrogen Control Console" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) "bYm" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -34989,54 +25857,37 @@ /obj/structure/pipes/trinary/mixer{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/gamma/airlock/control) "bYp" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/airlock/control) "bYq" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bYr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/hallways) "bYs" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/airlock/control) "bYt" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/airlock/control) "bYu" = ( /obj/structure/surface/rack, @@ -35044,18 +25895,12 @@ /obj/item/tank/air, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/airlock/control) "bYv" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) "bYw" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -35068,56 +25913,41 @@ /obj/structure/pipes/binary/pump/high_power/on{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/airlock/control) "bYy" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/airlock/control) "bYz" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/airlock/control) "bYA" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/airlock/control) "bYC" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bYD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) "bYE" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -35130,19 +25960,14 @@ name = "Access Shutter" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bYF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) "bYI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -35163,35 +25988,26 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "bYK" = ( /obj/structure/pipes/binary/pump/on{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/airlock/control) "bYL" = ( /obj/structure/pipes/standard/simple/visible{ dir = 10 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/airlock/control) "bYM" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ name = "Waste Tank Control" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/airlock/control) "bYN" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -35218,10 +26034,7 @@ /obj/item/tank/air, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/theta/airlock/control) "bYS" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -35239,84 +26052,60 @@ /area/corsat/inaccessible) "bYU" = ( /obj/structure/closet/l3closet/general, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/control) "bYW" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/control) "bYX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/omega/control) "bYY" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/omega/control) "bYZ" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "bZa" = ( /obj/structure/surface/table/reinforced, /obj/item/device/binoculars, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/omega/control) "bZb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/control) "bZc" = ( /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/omega/control) "bZd" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/control) "bZe" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/omega/control) "bZf" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -35325,63 +26114,43 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/omega/control) "bZg" = ( /obj/structure/machinery/light, /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/omega/control) "bZh" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/omega/control) "bZi" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/omega/control) "bZj" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/control) "bZk" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/control) "bZl" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/omega/control) "bZm" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/control) "bZp" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -35390,9 +26159,7 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "bZq" = ( /obj/structure/machinery/light{ @@ -35400,17 +26167,11 @@ }, /obj/structure/surface/table/reinforced, /obj/item/xeno_restraints, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/control) "bZr" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/control) "bZt" = ( /obj/structure/bed, @@ -35422,28 +26183,20 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/sigma/dorms) "bZv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/sigma/dorms) "bZy" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "bZz" = ( /obj/structure/machinery/light, @@ -35451,33 +26204,25 @@ /obj/structure/machinery/computer/guestpass{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar/cargo) "bZD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "bZE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/biodome/complex) "bZF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/biodome/complex) "bZI" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -35491,9 +26236,7 @@ name = "Toxins Lockdown" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "bZK" = ( /obj/structure/machinery/power/apc/high{ @@ -35502,54 +26245,38 @@ start_charge = 0 }, /obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "bZN" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/sigma/south/complex) "bZP" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/south) "bZW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/east) "bZX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "cab" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/west) "caf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "cah" = ( /obj/structure/machinery/power/apc/high{ @@ -35557,10 +26284,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/hydrowest) "cai" = ( /obj/structure/machinery/power/apc/high{ @@ -35568,18 +26292,13 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/hydroeast) "cak" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydrowest) "cal" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -35589,32 +26308,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "cam" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "cao" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "cap" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "caq" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -35624,17 +26335,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "car" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydroeast) "cau" = ( /obj/structure/machinery/power/apc/high{ @@ -35642,10 +26349,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/theta/biodome/complex) "caw" = ( /obj/structure/machinery/power/apc/high{ @@ -35653,51 +26357,38 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "caA" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/corsat/gamma/hallwaysouth) "caG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "caH" = ( /obj/structure/machinery/light, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "caI" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "caM" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "SigmaWestE"; name = "Sigma West Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "caQ" = ( /obj/item/weapon/gun/flamer, @@ -35706,10 +26397,7 @@ name = "specimen control cabinet"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/control) "caS" = ( /obj/structure/machinery/floodlight{ @@ -35723,10 +26411,7 @@ /obj/structure/machinery/colony_floodlight_switch{ desc = "This switch controls the floodlights around the biodome. It only functions when there is power." }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/theta/airlock/control) "caU" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -35735,9 +26420,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "caV" = ( /obj/structure/machinery/door_control{ @@ -35745,9 +26428,7 @@ name = "Access Shutters"; pixel_x = 24 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "caW" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -35757,9 +26438,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "caX" = ( /obj/item/device/binoculars, @@ -35770,10 +26449,7 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/theta/airlock/control) "caZ" = ( /obj/structure/surface/table/reinforced, @@ -35789,10 +26465,7 @@ req_one_access_txt = "106;103"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/omega/control) "cbc" = ( /obj/structure/surface/table/reinforced, @@ -35801,27 +26474,19 @@ name = "Dome Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/control) "cbo" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay) "cbS" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/rnr) "cbV" = ( /obj/structure/bookcase{ @@ -35830,10 +26495,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "cbW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -35841,27 +26503,18 @@ /area/corsat/theta/biodome) "cce" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "ccq" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) "cec" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/theta/airlock/control) "cem" = ( /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "ces" = ( /obj/structure/surface/table/almayer, @@ -35872,25 +26525,18 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) "ceB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/east) "ceE" = ( /obj/structure/surface/table/reinforced, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/sigmaremote) "ceR" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -35909,89 +26555,56 @@ /obj/item/device/flashlight/slime{ pixel_x = 10 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "cfA" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/south/offices) "cfO" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/foyer) "cfZ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hallwaysouth) "cgh" = ( /obj/structure/surface/rack, /obj/item/storage/wallet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "cgs" = ( /obj/structure/surface/table, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "cgt" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "chg" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "chJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "chL" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/cargo) "cia" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydroeast) "cii" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/checkpoint) "ciW" = ( /obj/structure/machinery/shower{ @@ -36002,10 +26615,7 @@ dir = 4; layer = 2.8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "cjg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -36013,76 +26623,50 @@ name = "\improper Dressing room" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "cjs" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hallwaysouth) "cjy" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/containment) "ckt" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "cku" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "ckz" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/hangar/checkpoint) "ckY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "clg" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/hangar/security) "clp" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/omega/offices) "clI" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/southwest, /area/corsat/gamma/rnr) "clN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/south) "cmk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "cms" = ( /obj/structure/pipes/vents/pump{ @@ -36092,23 +26676,17 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "cmy" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "cnj" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "cnA" = ( /obj/structure/surface/rack, @@ -36121,85 +26699,55 @@ name = "Secure Racks"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/omega/complex) "cnC" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "cog" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "cok" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/office) "coy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "coS" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/sigma/hangar/monorail) "cpS" = ( /obj/item/bodybag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar) "cpU" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "cqv" = ( /obj/structure/computerframe, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "cqy" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "cqT" = ( /obj/effect/landmark/corpsespawner/wysec, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "cru" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/corsat/omega/hangar) "crC" = ( /obj/structure/barricade/handrail{ @@ -36208,26 +26756,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "crG" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "crH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "csk" = ( /obj/structure/surface/table/almayer, @@ -36235,9 +26776,7 @@ dir = 8; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "cst" = ( /obj/structure/toilet, @@ -36245,46 +26784,32 @@ dir = 8 }, /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "csE" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "csI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "csM" = ( /obj/structure/surface/table/almayer, /obj/item/phone, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/southeast/datalab) "cth" = ( /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "ctA" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "cuo" = ( /obj/structure/pipes/vents/pump{ @@ -36293,24 +26818,17 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "cut" = ( /obj/structure/sign/safety/biolab, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/hallwaysouth) "cuO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "cvi" = ( /obj/structure/closet/crate/science, @@ -36318,19 +26836,13 @@ /area/corsat/gamma/sigmaremote) "cvm" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "cvr" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential/researcher) "cvO" = ( /obj/structure/flora/jungle/plantbot1, @@ -36341,21 +26853,15 @@ /area/corsat/theta/biodome) "cvW" = ( /obj/structure/machinery/door/window/westleft, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) "cwp" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "cwr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/maint) "cwF" = ( /obj/structure/pipes/vents/pump{ @@ -36376,97 +26882,63 @@ id = "SigmaHangarC-N"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/security) "cxE" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/foyer) "cxO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "cyK" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/southeast/datalab) "cyX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "czg" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/omega/control) "czh" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "cAg" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar) "cAV" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/sigmaremote) "cAW" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "cAX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "cCK" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hallways) "cCP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/sigma/hangar) "cEC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36474,75 +26946,50 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "cEI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay/lobby) "cEQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/corsat/sigma/biodome) "cFe" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "cGb" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "cGi" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/medbay/morgue) "cGF" = ( /obj/structure/sign/safety/airlock, /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/arrivals) "cGO" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/gamma/hangar/arrivals) "cIs" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/theta/airlock/west/id) "cIB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "cJS" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "cJU" = ( /obj/structure/platform{ @@ -36550,19 +26997,14 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/sigma/south) "cJW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "cKa" = ( /obj/structure/flora/pottedplant{ @@ -36571,9 +27013,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "cKi" = ( /obj/structure/flora/pottedplant{ @@ -36591,27 +27031,18 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "cLh" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "cLF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/biodome/toxins) "cLZ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "cMa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -36626,24 +27057,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/checkpoint) "cMw" = ( /obj/structure/machinery/computer/telecomms/traffic{ req_one_access_txt = "19;106;102" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "cMy" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/control) "cNG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -36652,34 +27076,21 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/control) "cNI" = ( /obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "cOf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) "cOv" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "cOU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/hangar) "cPi" = ( /obj/structure/monorail{ @@ -36688,58 +27099,39 @@ /turf/open/space/transit/east/shuttlespace_ew10, /area/space) "cPC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/hangar/checkpoint) "cPR" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "cPT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/omega/hallways) "cQs" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "cQv" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "cQR" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) "cRn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "cRx" = ( /obj/item/cell/crap, @@ -36747,31 +27139,22 @@ /area/corsat/gamma/cargo/disposal) "cSi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/corsat/sigma/biodome) "cSI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/corsat/gamma/hallwaysouth) "cTc" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "cTs" = ( /obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "cUc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36780,18 +27163,12 @@ /turf/open/mars, /area/corsat/sigma/biodome) "cUp" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/omega/offices) "cUT" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/effect/landmark/corpsespawner/wysec, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/security) "cVq" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36799,15 +27176,10 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) -"cVK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" - }, +"cVK" = ( +/turf/open/floor/corsat/greencorner/east, /area/corsat/gamma/hallwaysouth) "cVR" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36815,40 +27187,25 @@ /area/corsat/gamma/rnr/library) "cWa" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "cWf" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/gamma/hallwaysouth) "cWu" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/residential) "cWI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/rnr) "cWX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/sigma/south) "cXm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "cXt" = ( /obj/structure/machinery/power/apc/high{ @@ -36859,10 +27216,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "cXH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36870,9 +27224,7 @@ /area/corsat/sigma/cafe) "cYj" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "cYL" = ( /obj/structure/machinery/light{ @@ -36882,17 +27234,11 @@ /obj/structure/machinery/computer/secure_data{ req_access_txt = "201" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/control) "cYU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential) "cZu" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36903,38 +27249,26 @@ dir = 1; network = list("theta") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "cZO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south/id) "daL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "daO" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/toxins) "daR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/southeast/datalab) "dbn" = ( /obj/structure/surface/table, @@ -36944,38 +27278,26 @@ }, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "dbr" = ( /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/containment) "dbV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "dbY" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "dcr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "dct" = ( /turf/open/floor/corsat, @@ -36985,18 +27307,13 @@ dir = 9 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/airlock/south/id) "dcK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/researcher) "dcU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -37006,19 +27323,13 @@ /area/corsat/theta/biodome) "ddo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) "ddS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/residential/east) "dem" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -37029,30 +27340,20 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "deD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "deG" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "deR" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/hallwaysouth) "dfg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37065,37 +27366,24 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "dfT" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "dfV" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "dgp" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/west) "dgq" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/omega/offices) "dgx" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -37103,10 +27391,7 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "dgJ" = ( /obj/structure/machinery/door_control{ @@ -37116,38 +27401,26 @@ use_power = 0 }, /obj/structure/closet/crate/science, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "dhG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "dhN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "dio" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail/control) "diw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, +/turf/open/mars_cave/mars_cave_9, /area/corsat/sigma/biodome) "diD" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -37158,91 +27431,61 @@ /area/corsat/theta/biodome) "diI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "diP" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/researcher) "djC" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "djF" = ( /turf/open/floor/corsat, /area/corsat/gamma/residential/researcher) "djM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "djR" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "dky" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "dkK" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "dlz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagent_analyzer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "dlO" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "dlP" = ( /obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/corsat/gamma/medbay/morgue) "dlU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "dml" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar/checkpoint) "dmD" = ( /obj/structure/machinery/door_control{ @@ -37251,62 +27494,44 @@ pixel_y = 24; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "dmE" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "dmK" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "dmP" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydroeast) "dmR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/theta/biodome/complex) "dnZ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/omega/hallways) "dos" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "dqi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "dqt" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -37316,33 +27541,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "dqu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/sigma/dorms) "dqQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "dqR" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "drp" = ( /obj/docking_port/stationary/marine_dropship/lz1{ @@ -37352,18 +27567,13 @@ /area/corsat/gamma/hangar) "drv" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, +/turf/open/gm/river/desert/shallow/pool, /area/corsat/gamma/residential/showers) "drC" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/sigma/dorms) "drE" = ( /obj/structure/machinery/power/reactor/colony{ @@ -37374,15 +27584,10 @@ d2 = 4; icon_state = "0-4" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering/core) "drW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/southeast/datamaint) "dso" = ( /obj/structure/surface/table/almayer, @@ -37392,18 +27597,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "dsw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "dsF" = ( /obj/structure/toilet{ @@ -37413,64 +27613,42 @@ dir = 8 }, /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "dta" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "dtd" = ( /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "dte" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/south/engineering) "dtl" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/hangar/flightcontrol) "dtU" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "dug" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "dui" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/theta/airlock/control) "duk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "duC" = ( /obj/structure/platform{ @@ -37481,31 +27659,21 @@ dir = 8; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/sigma/south) "duW" = ( /obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "duY" = ( /obj/structure/platform{ dir = 8; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) "dvn" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/hallwaysouth) "dvp" = ( /obj/structure/pipes/vents/pump{ @@ -37513,23 +27681,16 @@ }, /obj/structure/window/reinforced, /obj/structure/platform, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "dvx" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "dvE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/west, /area/corsat/gamma/residential) "dvI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37537,9 +27698,7 @@ }, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "dwa" = ( /obj/structure/bed/chair{ @@ -37547,28 +27706,17 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/theta/biodome/complex) "dwl" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/hangar) "dwr" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/dorms) "dwH" = ( /obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "dwM" = ( /obj/structure/prop/almayer/cannon_cables{ @@ -37579,17 +27727,13 @@ desc = "A bewildering tangle of machinery and pipes."; name = "\improper coolant feed" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) "dwS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "dwW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -37600,20 +27744,14 @@ "dxx" = ( /obj/structure/surface/table/reinforced, /obj/item/device/assembly/signaller, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "dxy" = ( -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, +/turf/open/gm/river/desert/shallow/pool, /area/corsat/gamma/residential/showers) "dxB" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "dxS" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -37622,50 +27760,36 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/cargo) "dyd" = ( /obj/structure/machinery/light, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "dyK" = ( /obj/structure/pipes/vents/pump, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) "dyU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/hangar/monorail) "dyY" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/west) "dzB" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "dzT" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/security) "dzV" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -37675,97 +27799,67 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "dzX" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/gamma/foyer) "dzZ" = ( /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/control) "dAk" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/south) "dAW" = ( /obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "dBi" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/security) "dBx" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "dBy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/corsat/sigma/biodome) "dBW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/sigmaremote) "dCv" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "dCP" = ( /obj/structure/stairs{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/sigma/south) "dDj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "dDl" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth/id) "dDt" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/foyer) "dEe" = ( /obj/structure/machinery/power/apc/hyper{ @@ -37779,9 +27873,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "dFb" = ( /obj/structure/machinery/floodlight{ @@ -37793,9 +27885,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "dFL" = ( /obj/structure/bed/chair/comfy/black{ @@ -37804,63 +27894,40 @@ /turf/open/floor/wood, /area/corsat/theta/biodome/complex) "dFP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/southeast/generator) "dGb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "dHa" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "dHG" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "dIa" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "dIo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/complex) "dII" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "dJR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/bronze, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) "dJV" = ( /turf/closed/shuttle/ert{ @@ -37871,10 +27938,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/hangar/security) "dKn" = ( /obj/effect/landmark/hunter_primary, @@ -37885,96 +27949,66 @@ dir = 4; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "dKE" = ( /obj/structure/grille, /turf/open/floor/plating, /area/corsat/gamma/hangar/monorail) "dLL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "dLX" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/sigmaremote) "dMo" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "dMH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "dMR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "dNa" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "dNb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "dNd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "dNs" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, /obj/item/tool/weldingtool, /obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/omega/maint) "dNC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/north) "dNS" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "dOo" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -37986,76 +28020,50 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/residential/west) "dOu" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "dOw" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/security) "dOB" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/canteen) "dOF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "dPH" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "dPK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/core) "dPV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/omega/control) "dQc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "dQp" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/airlocknorth/id) "dQJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38063,17 +28071,13 @@ }, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "dQL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "dQQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38085,20 +28089,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "dRz" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south) "dRI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/gamma/hangar/flightcontrol) "dSc" = ( /obj/structure/machinery/light{ @@ -38106,43 +28103,29 @@ }, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) "dSi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "dSM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/foyer) "dTb" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "dTy" = ( /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "dUj" = ( /obj/docking_port/stationary/marine_dropship/lz2{ @@ -38154,10 +28137,7 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/canteen) "dVM" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -38167,24 +28147,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "dVN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "dVQ" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "dWc" = ( /obj/structure/machinery/light{ @@ -38192,88 +28165,59 @@ }, /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "dWk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential) "dWJ" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "dWY" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/engineering) "dXm" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "dXp" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "dXq" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/biodome/virology) "dXy" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering/core) "dXO" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "dXW" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "dYh" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/phone, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) "dYk" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "dYB" = ( /obj/structure/machinery/light{ @@ -38282,25 +28226,16 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "dYJ" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "dYM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hangar/arrivals) "dZe" = ( /obj/structure/surface/table/almayer, @@ -38308,25 +28243,17 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "dZu" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "dZH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "dZW" = ( /obj/structure/machinery/disposal, @@ -38336,9 +28263,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "eaN" = ( /obj/effect/landmark/hunter_primary, @@ -38346,37 +28271,26 @@ /area/corsat/sigma/dorms) "ebq" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "eby" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "ebE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "ebH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential/east) "ebK" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "ect" = ( /obj/structure/bed/chair/office/light{ @@ -38385,17 +28299,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "ecA" = ( /obj/structure/machinery/light, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/biodome/toxins) "ecX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38410,63 +28319,43 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "edN" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/omega/offices) "edO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/hangar) "edP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "eeG" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "eeL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/gamma/cargo) "eeN" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "efN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/west) "egd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -38479,32 +28368,22 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "egJ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/airlock/control) "egM" = ( /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "egZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/corsat/sigma/south/complex) "ehg" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -38513,36 +28392,24 @@ /area/corsat/theta/biodome) "ehj" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/omega/offices) "ehy" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/gamma/hangar/flightcontrol) "ehC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "ehN" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "ehS" = ( -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential/researcher) "ehU" = ( /obj/structure/surface/table, @@ -38552,10 +28419,7 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "eii" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38575,37 +28439,23 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "eiR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hallways) "ejb" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/security) "eji" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/airlocknorth/id) "ejk" = ( /obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "ejl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -38619,56 +28469,39 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "ejL" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/frag, /obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "ekd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "ekK" = ( /obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydrowest) "ekM" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/south/security) "elt" = ( /obj/structure/machinery/camera/autoname{ network = list("omega") }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/south/id) "elG" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "elR" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -38682,105 +28515,68 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "ema" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "emb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south) "eme" = ( /obj/structure/janitorialcart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydroeast) "emC" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "enf" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/omega/complex) "enu" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay/morgue) "enU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "eon" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "eoE" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/checkpoint) "eoF" = ( /obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "eoZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "epc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/omega/hallways) "epg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/sigma/dorms) "epm" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "epq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38796,26 +28592,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/security) "eqa" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "eqg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "eql" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -38826,16 +28615,10 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "equ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/airlock/control) "eqz" = ( /turf/closed/wall/r_wall/biodome, @@ -38844,25 +28627,17 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential) "eqK" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/foyer) "eqM" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "erb" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/omega/cargo) "erc" = ( /obj/structure/bed/chair/office/dark, @@ -38875,17 +28650,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/theta/airlock/control) "ero" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "erP" = ( /obj/structure/platform{ @@ -38897,90 +28666,61 @@ layer = 2.7 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential/east) "ese" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "esg" = ( /obj/structure/surface/table/reinforced, /obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "esA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/south/offices) "esF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "esV" = ( /obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/corsat/gamma/medbay/morgue) "etb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "etp" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/west) "etD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/corsat/sigma/biodome) "euc" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/southeast/generator) "eun" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "euV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome) "evq" = ( /obj/item/stack/sheet/wood, @@ -38990,10 +28730,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/robotics) "ewM" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -39001,31 +28738,22 @@ name = "CORSAT Academy"; req_one_access = null }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "ewN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "ewP" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/checkpoint) "ewT" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/corsat/gamma/sigmaremote) "ewW" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -39041,9 +28769,7 @@ /area/corsat/gamma/residential/researcher) "exf" = ( /obj/structure/machinery/computer3/server/rack, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) "exz" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -39052,34 +28778,22 @@ req_access_txt = "103"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "exC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/theta/airlock/west/id) "exY" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "eym" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast) "eyz" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/corsat/omega/hangar) "eyA" = ( /obj/structure/bed{ @@ -39096,30 +28810,21 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "ezx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydrowest) "ezJ" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "ezQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "ezR" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -39135,62 +28840,43 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "eBx" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "eCr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "eDd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "eDe" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "eDq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) "eDz" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/sigma/hangar) "eDK" = ( /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "eDM" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -39199,59 +28885,36 @@ /area/corsat/theta/biodome) "eDP" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "eDZ" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/gamma/hallwaysouth) "eEJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/theta/airlock/control) "eEW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/southeast/generator) "eGx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hangar/security) "eGM" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "eGQ" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "eHn" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "eIq" = ( /obj/structure/machinery/light/small{ @@ -39264,52 +28927,36 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) "eJg" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northeast, /area/corsat/gamma/hallwaysouth) "eJz" = ( /obj/effect/landmark/corpsespawner/wysec, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "eKm" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "eKJ" = ( /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "eKL" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/administration) "eKV" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/sigma/south/complex) "eLc" = ( /obj/structure/bed/chair/office/light{ @@ -39318,31 +28965,21 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "eLP" = ( /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "eLR" = ( /obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "eMu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr/bar) "eMB" = ( /obj/structure/flora/jungle/planttop1, @@ -39361,33 +28998,24 @@ "eMM" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "eNm" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/sigmaremote) "eNn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/corner/north, /area/corsat/sigma/south/complex) "eNI" = ( /obj/structure/platform{ density = 0; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/sigma/south) "eNM" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -39401,19 +29029,13 @@ /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) "eOI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "eOS" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southwest, /area/corsat/gamma/medbay) "eOZ" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -39421,32 +29043,23 @@ /area/corsat/theta/biodome) "ePL" = ( /obj/structure/closet/l3closet/general, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "eQR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "eRg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "eRi" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "eRE" = ( /obj/structure/filingcabinet/filingcabinet, @@ -39454,24 +29067,17 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/theta/airlock/west/id) "eRX" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "eSg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "eSC" = ( /obj/structure/machinery/light, @@ -39479,31 +29085,22 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "eSY" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "eTf" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "eTg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/theta/airlock/control) "eTj" = ( /obj/structure/filingcabinet/filingcabinet, @@ -39513,128 +29110,80 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) "eTR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "eUe" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "eUf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/north, /area/corsat/sigma/south) "eUn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/omega/containment) "eUB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/corsat/gamma/hallwaysouth) "eUE" = ( /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "eUK" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/hydrowest) "eUR" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south) "eVe" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/omega/hallways) "eVr" = ( /obj/structure/coatrack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "eVI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/complex) "eVQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/sigma/south/complex) "eWX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "eXi" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hangar/arrivals) "eXO" = ( /obj/structure/surface/table/reinforced, /obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "eXS" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/sigma/dorms) "eXX" = ( /obj/structure/surface/table/reinforced, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "eYe" = ( /obj/structure/bedsheetbin, @@ -39642,52 +29191,33 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "eYr" = ( /obj/structure/surface/rack, /obj/item/storage/briefcase, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/hangar/security) "eYv" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "eYG" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "eYT" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) "eZq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/residential/west) "eZv" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydroeast) "eZQ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -39699,65 +29229,44 @@ dir = 4 }, /obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "faF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/complex) "faT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/gamma/cargo) "fbe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "fbs" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "fcd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "fcq" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) "fdc" = ( /obj/structure/machinery/light/small, /turf/open/floor/corsat, /area/corsat/gamma/residential/researcher) "fdf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/omega/hallways) "fdh" = ( /obj/structure/pipes/vents/pump{ @@ -39768,9 +29277,7 @@ "feg" = ( /obj/structure/closet/crate/science, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "fey" = ( /obj/structure/flora/pottedplant{ @@ -39780,10 +29287,7 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/sigma/cargo) "feC" = ( /obj/structure/surface/table/woodentable, @@ -39792,64 +29296,42 @@ /area/corsat/sigma/dorms) "feD" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "feQ" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "feZ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/robotics) "ffa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/hallwaysouth) "ffc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/security) "ffl" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "ffp" = ( /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential/east) "ffC" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/sigma/hangar/office) "ffF" = ( /obj/structure/surface/table/woodentable, @@ -39858,18 +29340,13 @@ /turf/open/floor/wood, /area/corsat/gamma/rnr/library) "ffQ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south) "fgs" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/corsat/sigma/south/complex) "fgu" = ( /obj/structure/pipes/vents/pump{ @@ -39878,10 +29355,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "fgN" = ( /obj/structure/machinery/power/apc/high{ @@ -39889,46 +29363,29 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "fha" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/north) "fhb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "fhG" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black_random, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) "fid" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/toxins) "fie" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "fip" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39940,10 +29397,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/south/offices) "fkG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39953,39 +29407,29 @@ name = "Hangar Security"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "fkV" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "fkX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "flh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/omega/cargo) "fll" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south) "flo" = ( /obj/structure/window/reinforced{ @@ -40001,9 +29445,7 @@ "flt" = ( /obj/vehicle/train/cargo/trolley, /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "flB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -40015,10 +29457,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "fmd" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -40028,19 +29467,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "fmk" = ( /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "fmq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40052,23 +29485,16 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "fmC" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/reinforced, /obj/item/device/assembly/voice, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "fmF" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar) "fmM" = ( /obj/structure/pipes/vents/pump{ @@ -40078,49 +29504,35 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "fmR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "fmZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/north) "fnd" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/omega/hallways) "fnz" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "fog" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "foQ" = ( /obj/structure/tunnel{ @@ -40132,9 +29544,7 @@ /obj/structure/machinery/atm{ pixel_y = -30 }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) "fpI" = ( /obj/structure/flora/jungle/vines/light_1, @@ -40147,25 +29557,18 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "fqj" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "fqk" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("theta") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydrowest) "fqp" = ( /obj/structure/bed/chair/office/dark{ @@ -40180,43 +29583,29 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/corsat/sigma/biodome) "fsd" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/red, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "fsn" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "fsr" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "fst" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "fsu" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hallways) "fsx" = ( /turf/open/auto_turf/snow/layer4, @@ -40231,43 +29620,30 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "fsS" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "ftj" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "ftx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "ftX" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar) "fue" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40277,28 +29653,20 @@ /area/corsat/theta/biodome) "fum" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south) "fuG" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "fuK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/airlocknorth/id) "fwq" = ( /obj/structure/flora/jungle/vines/light_1, @@ -40306,9 +29674,7 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "fwQ" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) "fxf" = ( /obj/structure/window/framed/corsat, @@ -40318,50 +29684,32 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "fxM" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/airlock/control) "fxW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/airlocknorth/id) "fyq" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "fyy" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/engineering/atmos) "fyC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/gamma/hangar/office) "fyM" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/datalab) "fyO" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "fzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40372,26 +29720,18 @@ "fzm" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "fzo" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/security) "fzy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "fzV" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -40401,18 +29741,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "fBG" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hallways) "fCi" = ( /obj/structure/surface/table, @@ -40420,19 +29755,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "fCx" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/gamma/administration) "fCK" = ( /obj/structure/barricade/handrail{ @@ -40447,47 +29776,32 @@ /obj/item/storage/box/masks, /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "fDx" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "fDY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/east) "fEl" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "fEC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "fEI" = ( -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "fEP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "fFa" = ( /obj/effect/landmark/corpsespawner/scientist, @@ -40495,17 +29809,13 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "fFh" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/maint) "fFI" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "fGJ" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -40513,18 +29823,12 @@ name = "Teleportation Chamber"; req_one_access_txt = "103" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "fGM" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "fGO" = ( /obj/structure/machinery/light{ @@ -40533,87 +29837,57 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/sigmaremote) "fGP" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "fGS" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/hallwaysouth) "fGU" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/sigma/south/complex) "fGV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "fHO" = ( /obj/structure/largecrate/random, /turf/open/floor/corsat, /area/corsat/sigma/hangar) "fHP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/dorms) "fHX" = ( /obj/structure/closet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay/morgue) "fIr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/complex) "fIY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/hallways) "fIZ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/north) "fJf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/southeast) "fJm" = ( /obj/structure/closet/crate/trashcart, @@ -40622,32 +29896,22 @@ "fJx" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/beakers, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "fJZ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "fKw" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) "fLm" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/biodome/complex) "fLz" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "fMi" = ( /obj/structure/machinery/light{ @@ -40656,36 +29920,23 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "fMn" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "fMv" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "fMN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/canteen) "fNy" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/canteen) "fOd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40696,9 +29947,7 @@ "fOh" = ( /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/security) "fPp" = ( /obj/structure/surface/table/almayer, @@ -40708,34 +29957,23 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) "fPK" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/airlock/control) "fQl" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/airlock/control) "fQm" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "fQC" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -40744,21 +29982,14 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/cargo) "fRD" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/arrivals) "fRR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "fSo" = ( /obj/structure/bed/stool, @@ -40772,25 +30003,17 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hallwaysouth) "fSA" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) "fSB" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/sigma/hangar/arrivals) "fSU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/hangar/security) "fSX" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -40800,52 +30023,36 @@ /area/prison/hangar_storage/research/shuttle) "fTw" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/datamaint) "fTx" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering) "fTK" = ( /obj/structure/prop/mech/parts/durand_left_leg, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/sigma/south/robotics) "fTT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "fUj" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "fUp" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "fUA" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/security) "fVl" = ( /obj/structure/pipes/vents/pump{ @@ -40859,25 +30066,18 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/robotics) "fVo" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "fWe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "fWx" = ( /obj/structure/pipes/vents/pump{ @@ -40889,9 +30089,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "fWM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -40900,23 +30098,16 @@ /turf/open/ice, /area/corsat/gamma/biodome) "fWN" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "fXx" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "fXA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/airlock/control) "fXE" = ( /obj/structure/machinery/power/apc/high{ @@ -40925,20 +30116,14 @@ start_charge = 0 }, /obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "fXJ" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "fXP" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar/security) "fYL" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -40948,179 +30133,121 @@ /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/security) "fZQ" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/hangar/flightcontrol) "fZW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "gab" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "gak" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/east) "gaF" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/security) "gaO" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south) "gaP" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/virology) "gbd" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "gbm" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "gbw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/gamma/cargo) "gbQ" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/omega/offices) "gcs" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/hydroeast) "gcy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/hangar) "gcE" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hallwaysouth) "gcM" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/corsat/omega/hangar) "gcW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/theta/airlock/control) "gdy" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "gdD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/corsat/sigma/biodome) "gdM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/id) "gdO" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "ged" = ( /obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth) "gei" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "gew" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south) "geN" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -41129,27 +30256,19 @@ "geV" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "gft" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "gfC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "gfL" = ( /obj/structure/machinery/camera/autoname{ @@ -41160,104 +30279,69 @@ /area/corsat/theta/biodome) "gfM" = ( /obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydroeast) "ggc" = ( /obj/structure/closet/crate/science, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "ggh" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/monorail/control) "ggq" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "ggO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security/cells) "ggU" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "ghu" = ( /obj/effect/landmark/corpsespawner/wysec, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security) "ghx" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/maint) "ghB" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "ghJ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "gio" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/airlock/control) "giX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/west, /area/corsat/sigma/south) "gjb" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome/scrapyard) "gjh" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/security) "gjj" = ( /obj/structure/bed/chair/office/light{ @@ -41267,9 +30351,7 @@ dir = 4; health = 80 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "gjt" = ( /obj/structure/machinery/door/airlock/almayer/generic, @@ -41279,28 +30361,20 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "gjX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/checkpoint) "gke" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/sigma/cargo) "gki" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "gkx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -41312,24 +30386,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "gkC" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) "gkH" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/sigmaremote) "gkU" = ( /obj/structure/window/framed/corsat/security, @@ -41345,32 +30412,20 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) "gne" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/omega/hallways) "gnm" = ( /obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "gnC" = ( /obj/structure/bed, /obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay) "gnF" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/southeast/datalab) "gnO" = ( /obj/structure/bed/chair{ @@ -41379,9 +30434,7 @@ /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "gnR" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -41392,9 +30445,7 @@ /area/corsat/theta/biodome) "goe" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/airlocknorth) "gok" = ( /obj/structure/surface/table/almayer, @@ -41402,33 +30453,25 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "goV" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "gpn" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/robotics) "gpu" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Engineering Storage"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "gpP" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -41437,19 +30480,14 @@ "gqd" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "gqi" = ( /obj/structure/bed/chair/office/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "gqo" = ( /obj/structure/closet/toolcloset, @@ -41457,33 +30495,23 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "gqE" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "gqH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "gqK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "gqT" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -41495,19 +30523,13 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "gra" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "grc" = ( /obj/structure/closet/secure_closet/engineering_personal{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/engineering) "gre" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -41517,9 +30539,7 @@ /area/corsat/theta/biodome) "grf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "grg" = ( /obj/structure/surface/table, @@ -41527,10 +30547,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "grD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -41538,10 +30555,7 @@ /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) "grK" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/residential/west) "gsg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -41551,10 +30565,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "gtc" = ( /obj/structure/barricade/handrail{ @@ -41568,43 +30579,30 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "gtp" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "gtr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "gtI" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "gtP" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential) "gtX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -41613,10 +30611,7 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "gud" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/hallways) "gui" = ( /obj/structure/machinery/vending/coffee, @@ -41629,58 +30624,42 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "guA" = ( /obj/structure/curtain/open/medical, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "guG" = ( /obj/structure/bed/chair, /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "guS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/foyer) "gvh" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "gvi" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "gvl" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "gvs" = ( /obj/structure/bed/chair/comfy/black, @@ -41688,17 +30667,12 @@ /area/corsat/theta/biodome/complex) "gwV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/east/id) "gwW" = ( /obj/structure/surface/table/reinforced, /obj/item/phone, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/hangar/office) "gwY" = ( /obj/structure/machinery/disposal, @@ -41709,38 +30683,26 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "gxp" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/virology) "gxu" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "gyg" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/datalab) "gys" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) "gyx" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -41750,25 +30712,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "gyK" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "gze" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/hangar/monorail) "gzf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -41782,35 +30736,24 @@ dir = 8 }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) "gzB" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "gzL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/west) "gAh" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "gAt" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) "gAv" = ( /obj/structure/surface/table/reinforced, @@ -41818,9 +30761,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "gBh" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -41839,21 +30780,14 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) "gCN" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "gCO" = ( -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/corsat/gamma/hallwaysouth) "gEf" = ( /obj/structure/machinery/light{ @@ -41861,16 +30795,11 @@ }, /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "gEm" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "gEy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -41887,10 +30816,7 @@ /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) "gEV" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/gamma/airlock/control) "gFh" = ( /obj/structure/flora/jungle/alienplant1, @@ -41902,15 +30828,10 @@ "gGb" = ( /obj/structure/surface/table, /obj/item/book, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "gGF" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner, /area/corsat/gamma/medbay/morgue) "gGQ" = ( /obj/structure/surface/table/reinforced, @@ -41918,69 +30839,45 @@ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/omega/control) "gGR" = ( /obj/structure/surface/rack, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "gGT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "gGZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "gHg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "gHn" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "gIe" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/omega/hallways) "gIT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/omega/offices) "gJn" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/foyer) "gJr" = ( /obj/structure/surface/table/almayer, @@ -41988,9 +30885,7 @@ dir = 8 }, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "gJz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -42000,10 +30895,7 @@ /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) "gJS" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/checkpoint) "gJX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -42011,24 +30903,16 @@ /area/corsat/theta/airlock/west/id) "gKn" = ( /obj/structure/closet/wardrobe, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "gKu" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/gamma/hallwaysouth) "gKQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/gamma/sigmaremote) "gLs" = ( /turf/closed/wall/r_wall/biodome, @@ -42041,41 +30925,29 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "gLW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/hangar/arrivals) "gMC" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar) "gMY" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/hangar/security) "gNb" = ( -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/omega/complex) "gNt" = ( /obj/structure/platform{ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "gOk" = ( /obj/structure/flora/jungle/vines/light_1, @@ -42089,79 +30961,55 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/rnr) "gOO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/biodome/complex) "gOP" = ( /obj/structure/machinery/light, /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "gOU" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "gOZ" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "gPd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "gPk" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/foyer) "gPo" = ( /obj/structure/platform{ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) "gPC" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/arrivals) "gPN" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/security) "gPU" = ( /obj/structure/machinery/light{ @@ -42170,19 +31018,14 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "gPX" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "gQj" = ( /obj/structure/machinery/light/small{ @@ -42192,53 +31035,34 @@ /area/corsat/gamma/airlock/south/id) "gQL" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northeast, /area/corsat/gamma/medbay/lobby) "gRf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/sigma/south) "gRg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "gRm" = ( /obj/structure/bed/stool{ pixel_y = 15 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "gRB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/north) "gRE" = ( /obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "gRH" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "gRP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -42248,22 +31072,15 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/morgue) "gSm" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "gSu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/sigma/south/complex) "gSC" = ( /obj/structure/largecrate/random/barrel, @@ -42273,52 +31090,36 @@ /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) "gSI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/office) "gSQ" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Cable connector" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) "gTe" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "gUe" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "gUj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/dorms) "gUs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "gUw" = ( /obj/structure/closet/crate/science{ @@ -42327,18 +31128,13 @@ opened = 1 }, /obj/item/organ/kidneys, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "gUX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) "gVr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -42351,27 +31147,20 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/dorms) "gVM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/offices) "gVR" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "gWS" = ( /obj/structure/surface/table, @@ -42380,56 +31169,39 @@ layer = 2 }, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "gWU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome) "gXp" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "gXv" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "gXG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "gXL" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, /obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydroeast) "gXM" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/southwest, /area/corsat/sigma/south) "gXN" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -42443,68 +31215,47 @@ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/maint) "gYr" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "gYA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "gYL" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/gamma/sigmaremote) "gZc" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "gZj" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/southeast/dataoffice) "gZs" = ( /obj/structure/platform{ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/sigma/south) "gZw" = ( /obj/effect/landmark/corpsespawner/chef, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "gZB" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "gZF" = ( /obj/structure/bed, @@ -42515,36 +31266,27 @@ "gZH" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "hap" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "hat" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/sigma/dorms) "hay" = ( /obj/structure/closet/secure_closet/security_empty{ name = "Warden's Locker" }, /obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/office) "haG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -42552,57 +31294,37 @@ name = "\improper Showers" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "hbu" = ( /obj/structure/surface/rack, /obj/item/storage/box/beakers, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "hbB" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/south/robotics) "hbF" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/omega/control) "hbX" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/corsat/omega/offices) "hcg" = ( /obj/structure/pipes/vents/pump, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "hcH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/north) "hcU" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "hdB" = ( /obj/structure/flora/jungle/plantbot1, @@ -42611,21 +31333,15 @@ /area/corsat/theta/biodome) "hdG" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "hdR" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "heb" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "hed" = ( /obj/structure/sign/safety/storage, @@ -42636,32 +31352,22 @@ dir = 8 }, /obj/item/storage/toolbox/electrical, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "hel" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "heo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) "hep" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/security) "heL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -42678,60 +31384,43 @@ dir = 8; layer = 2.8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "hgB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/airlocknorth/id) "hhb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "hhj" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/west) "hho" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/corsat/gamma/sigmaremote) "hhA" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/hallwaysouth) "hhP" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "hhT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "hiw" = ( /obj/structure/bed/chair/comfy/black{ @@ -42746,9 +31435,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "hjU" = ( /obj/structure/machinery/light{ @@ -42757,9 +31444,7 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "hkn" = ( /obj/structure/pipes/vents/pump{ @@ -42775,23 +31460,16 @@ /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) "hkZ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/omega/cargo) "hle" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "hlf" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/corsat/gamma/sigmaremote) "hls" = ( /obj/structure/xenoautopsy/tank/hugger, @@ -42803,40 +31481,27 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/security) "hlM" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "SigmaWestW"; name = "Sigma West Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "hmO" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/theta/airlock/control) "hnr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/sigma/hangar/arrivals) "hnx" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "hnR" = ( /obj/structure/flora/jungle/plantbot1, @@ -42847,80 +31512,54 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "hok" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/south/offices) "hoC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/security) "hpB" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "hpC" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; req_access_txt = "104" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "hpM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "hqa" = ( /obj/structure/machinery/light, /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/arrivals) "hqd" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/airlock/control) "hqv" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "hqA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/gamma/cargo) "hqU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -42934,31 +31573,20 @@ "hrf" = ( /obj/structure/surface/table, /obj/item/folder/yellow, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "hsq" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "hsr" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "hsD" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/south) "hsJ" = ( /obj/structure/surface/table, @@ -42968,10 +31596,7 @@ layer = 2 }, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "hsM" = ( /obj/structure/surface/table/almayer, @@ -42982,64 +31607,42 @@ pixel_y = 2; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/hangar/office) "hta" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "hte" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) "htv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "htZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) "huc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "hun" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "huo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/maint) "hur" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "huu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -43052,24 +31655,18 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "huK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/airlock/control) "huL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/bodybags, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/morgue) "huQ" = ( /obj/structure/bed/chair/wood/wings{ @@ -43082,55 +31679,37 @@ /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) "hva" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/dorms) "hvj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southeast, /area/corsat/gamma/hallwaysouth) "hvl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "hvn" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "hvz" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "hvD" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south) "hvT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "hvZ" = ( /obj/structure/pipes/vents/pump, @@ -43138,25 +31717,19 @@ /area/corsat/sigma/dorms) "hwe" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "hws" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "hwI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/security) "hwV" = ( /obj/structure/platform{ @@ -43164,66 +31737,47 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "hwW" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/airlock/control) "hxc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/researcher) "hxl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "hxW" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "hyf" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) "hyG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/toxins) "hyY" = ( /obj/structure/surface/table/reinforced, /obj/item/device/binoculars, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "hze" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -43234,10 +31788,7 @@ dir = 1 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay/surgery) "hzm" = ( /obj/structure/barricade/handrail{ @@ -43253,56 +31804,39 @@ /area/corsat/gamma/residential/east) "hzM" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/southeast/datamaint) "hzU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/researcher) "hAB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "hBo" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/core) "hBp" = ( /obj/structure/machinery/medical_pod/sleeper{ flags_atom = 18 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "hBq" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "hBA" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "hBF" = ( /obj/structure/pipes/vents/pump{ @@ -43312,10 +31846,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/robotics) "hBM" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -43325,25 +31856,17 @@ /area/corsat/gamma/hangar) "hCm" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "hCt" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/residential/east) "hCG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "hCJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -43353,10 +31876,7 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "hCY" = ( /obj/structure/safe, @@ -43370,15 +31890,10 @@ /area/corsat/gamma/administration) "hDl" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "hDE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/west, /area/corsat/gamma/medbay/morgue) "hDF" = ( /turf/open/floor/corsat, @@ -43391,10 +31906,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) "hDX" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/omega/cargo) "hEb" = ( /obj/structure/closet/cabinet, @@ -43403,31 +31915,21 @@ /area/corsat/gamma/residential/east) "hEi" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) "hEt" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/east) "hEH" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "hFc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "hFh" = ( /obj/structure/window/framed/corsat/security, @@ -43444,21 +31946,13 @@ /area/corsat/gamma/rnr/bar) "hFo" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "hFR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/hangar/monorail/control) "hFW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/hangar) "hGd" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -43467,9 +31961,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "hGf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -43478,33 +31970,24 @@ "hGg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "hHg" = ( /obj/item/reagent_container/spray/cleaner, /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "hHn" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Airlock Control"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/control) "hHx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hangar) "hHy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -43516,31 +31999,23 @@ /area/corsat/gamma/biodome) "hHA" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/corsat/inaccessible) "hHL" = ( /obj/item/alien_embryo{ color = "#00ff80"; name = "corrupted alien embryo" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/corsat/inaccessible) "hHM" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "hId" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential) "hIh" = ( /obj/structure/closet/secure_closet/security_empty, @@ -43551,16 +32026,11 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) "hIo" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/gamma/hangar/flightcontrol) "hJw" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -43568,31 +32038,21 @@ /area/corsat/theta/biodome) "hJG" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/hangar/arrivals) "hJI" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) "hKc" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "hKi" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southeast, /area/corsat/gamma/residential/east) "hKt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -43610,9 +32070,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "hKH" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -43621,32 +32079,22 @@ /area/corsat/theta/biodome) "hKZ" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "hLh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "hLL" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) "hMo" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "hMx" = ( /obj/structure/toilet{ @@ -43657,30 +32105,20 @@ }, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "hMR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "hNh" = ( /obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "hNA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/theta/biodome/hydrowest) "hNI" = ( /obj/structure/flora/jungle/vines/heavy, @@ -43700,9 +32138,7 @@ icon_state = "0-8"; layer = 2.1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering/core) "hOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -43712,9 +32148,7 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/office) "hOU" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -43722,165 +32156,116 @@ name = "Maintenance Closet"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/sigmaremote) "hOV" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "hPg" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "hPi" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "hPr" = ( /obj/item/storage/box/gloves, /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "hPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "hPF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) "hPL" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "hQb" = ( /obj/effect/decal/cleanable/cobweb{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "hQf" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/checkpoint) "hQS" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/omega/hallways) "hRb" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/control) "hRI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "hRK" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering) "hRQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "hSo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/checkpoint) "hSr" = ( /obj/structure/bed/chair, /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "hSv" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ dir = 2; name = "Research Desk" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "hSQ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/airlock/south) "hST" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "hTd" = ( /obj/structure/showcase, @@ -43896,17 +32281,12 @@ dir = 1; layer = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "hTe" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "hTr" = ( /obj/structure/platform{ @@ -43917,10 +32297,7 @@ dir = 4; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/gamma/hallwaysouth) "hTI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -43929,66 +32306,43 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "hUR" = ( /obj/structure/machinery/door/window/southleft, /obj/structure/machinery/door/window/northleft, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "hUS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "hUY" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/hallways) "hVq" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/omega/complex) "hVx" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/omega/maint) "hVF" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "ThetaWestW"; name = "Theta West Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/west) "hVR" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/containment) "hWg" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/southeast) "hWx" = ( /obj/structure/machinery/camera/autoname{ @@ -43999,60 +32353,40 @@ "hWW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "hXH" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/south/offices) "hYo" = ( /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "hYs" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/security) "hYI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/southeast/datamaint) "hYU" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "hYZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "hZu" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/security) "hZO" = ( /obj/structure/surface/rack, @@ -44061,9 +32395,7 @@ /obj/item/reagent_container/glass/beaker/vial, /obj/item/reagent_container/glass/beaker/vial, /obj/item/reagent_container/glass/beaker/vial, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "hZU" = ( /obj/structure/machinery/botany{ @@ -44073,24 +32405,17 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "iav" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/south/security) "ibe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "ibz" = ( /obj/structure/bed/chair/wood/normal{ @@ -44103,37 +32428,27 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "ick" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/north, /area/corsat/omega/hallways) "ict" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/monorail/control) "icZ" = ( /obj/structure/machinery/light, /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "idf" = ( /obj/structure/machinery/light, /obj/structure/surface/table/reinforced, /obj/item/tank/air, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "idU" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -44143,9 +32458,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "iem" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -44157,46 +32470,33 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "ieZ" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "ifh" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/researcher) "ifj" = ( /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "ifx" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) "ifS" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/east) "ifX" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -44205,23 +32505,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "iho" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/sigma/dorms) "ihD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "ihL" = ( /obj/structure/window/reinforced{ @@ -44229,24 +32522,17 @@ health = 80 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) "ihN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/complex) "iik" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "iiI" = ( /obj/structure/flora/jungle/plantbot1, @@ -44260,21 +32546,14 @@ start_charge = 0 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/airlock/south) "iiX" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/east/id) "iiY" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "ijA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44290,25 +32569,17 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "ikv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/southeast/datalab) "ikC" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Holding Cell"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "ikQ" = ( /obj/structure/machinery/light/small{ @@ -44323,46 +32594,31 @@ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/researcher) "ilm" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/theta/airlock/west/id) "ilo" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "ilr" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "ilF" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "ilI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/west/id) "ilZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44371,10 +32627,7 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "ims" = ( /obj/structure/bed/nest, @@ -44388,114 +32641,80 @@ "imK" = ( /obj/structure/surface/table/reinforced, /obj/item/device/assembly/timer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "ing" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "inT" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner, /area/corsat/gamma/medbay) "inY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/corsat/sigma/biodome) "inZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/omega/cargo) "ioh" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/gamma/residential/lounge) "ipE" = ( /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "iqp" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "iqx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "iqE" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "iqY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/north) "irp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, +/turf/open/floor/corsat/arrow_south, /area/corsat/sigma/hangar) "irP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "ish" = ( /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hallways) "isS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -44503,136 +32722,92 @@ req_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "isY" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/sigma/dorms) "itb" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/virology) "ito" = ( /obj/structure/janitorialcart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "its" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "itD" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/airlocknorth) "iul" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/hangar) "iuz" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/hangar) "iuD" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "ivy" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "ivW" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/north/id) "iwx" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail) "iwB" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/residential/west) "iwU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "ixd" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/southeast/datalab) "ixm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "ixZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "iyp" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44644,24 +32819,17 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/security) "iys" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "iyA" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "izl" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -44670,57 +32838,38 @@ }, /obj/item/xeno_restraints, /obj/item/xeno_restraints, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/security) "izn" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/sigmaremote) "izt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/airlock/control) "iAy" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/southeast/datalab) "iAD" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "iAI" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "iAO" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/toxins) "iBg" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -44734,9 +32883,7 @@ dir = 1 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "iBs" = ( /obj/structure/surface/table/woodentable, @@ -44750,26 +32897,19 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "iCm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "iCo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/rnr) "iCA" = ( /obj/structure/machinery/botany{ @@ -44778,44 +32918,30 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "iCN" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/machine/clonepod, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) "iCP" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/south/id) "iDB" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/dorms) "iDD" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/corsat/omega/hangar) "iDH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "iDV" = ( /obj/structure/bed/chair{ @@ -44824,25 +32950,18 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "iEg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/hangar/security) "iEF" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "iEH" = ( /obj/structure/flora/jungle/vines/heavy, @@ -44856,46 +32975,30 @@ /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "iEY" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/gamma/cargo) "iFy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "iFL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/hallways) "iGT" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/sigma/south/complex) "iHc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/medbay/morgue) "iHo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44904,10 +33007,7 @@ /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) "iHY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/omega/hallways) "iIf" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -44917,104 +33017,70 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "iIu" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/west) "iIK" = ( /obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "iIU" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "iJv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "iJz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/cargo) "iJB" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "iKn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southwest, /area/corsat/sigma/dorms) "iLj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "iLv" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "iLw" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/hangar/cargo) "iLN" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "iLZ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "iMM" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/gamma/administration) "iNk" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -45029,29 +33095,18 @@ dir = 1 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/south/id) "iNZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/corsat/omega/offices) "iOe" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/omega/hallways) "iOi" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydrowest) "iOL" = ( /obj/structure/disposaloutlet{ @@ -45060,38 +33115,24 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "iOP" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "iOR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/hangar/checkpoint) "iOW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "iPn" = ( /obj/structure/platform{ density = 0; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "iPo" = ( /obj/structure/machinery/constructable_frame{ @@ -45106,27 +33147,20 @@ /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) "iQi" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/corsat/gamma/medbay/morgue) "iQs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "iQE" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) "iQH" = ( /obj/structure/flora/jungle/vines/light_1, @@ -45135,35 +33169,24 @@ /area/corsat/theta/biodome) "iQL" = ( /obj/structure/closet/wardrobe/robotics_black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "iQQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "iQY" = ( /obj/structure/barricade/handrail{ dir = 8 }, /obj/structure/barricade/handrail, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "iRw" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/hangar) "iSB" = ( /obj/structure/window/framed/corsat, @@ -45175,16 +33198,10 @@ dir = 1; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/hallwaysouth) "iTL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/sigma/south/complex) "iTT" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -45192,9 +33209,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/north/id) "iTW" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -45204,30 +33219,20 @@ /obj/structure/machinery/light, /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "iVA" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "iWo" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "iWx" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/residential/west) "iWA" = ( /obj/structure/surface/table/woodentable, @@ -45238,51 +33243,33 @@ /area/corsat/gamma/residential/researcher) "iWH" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering) "iWK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "iWO" = ( /obj/structure/surface/table, /obj/item/folder/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "iXU" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/sigma/dorms) "iYj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "iYG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/theta/biodome/complex) "iYR" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/engineering/core) "iZu" = ( /obj/structure/platform{ @@ -45290,16 +33277,11 @@ layer = 2.7 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/hallwaysouth) "iZv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "iZz" = ( /obj/structure/closet/cabinet, @@ -45317,28 +33299,21 @@ "iZZ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/sigma/dorms) "jai" = ( /obj/structure/platform{ density = 0; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/hallwaysouth) "jaJ" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "jba" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -45346,10 +33321,7 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "jbj" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) "jbN" = ( /obj/structure/window/framed/corsat, @@ -45357,16 +33329,12 @@ /area/corsat/gamma/hangar/checkpoint) "jcl" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "jcA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "jdj" = ( /obj/structure/surface/table/almayer, @@ -45381,9 +33349,7 @@ pixel_x = 8; pixel_y = 3 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "jdk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45400,9 +33366,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "jee" = ( /obj/structure/machinery/power/apc/high{ @@ -45410,15 +33374,10 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/west/id) "jeE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/theta/airlock/control) "jfP" = ( /turf/closed/wall/biodome, @@ -45428,26 +33387,19 @@ /obj/item/circuitboard/exosuit/main/max, /obj/item/circuitboard/exosuit/peripherals/max/targeting, /obj/item/circuitboard/exosuit/peripherals/max, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "jgb" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/retractor, /obj/item/tool/surgery/bonesetter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/surgery) "jgG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) "jgI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45457,105 +33409,70 @@ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "jgM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/airlock/control) "jho" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/complex) "jhz" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "jhL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "jhN" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/theta/airlock/control) "jhO" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/administration) "jhR" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/prison/hangar_storage/research/shuttle) "jja" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/gamma/hallwaysouth) "jjb" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "jjz" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "jjC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "jjN" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "jkb" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "jlp" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) "jlL" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -45569,37 +33486,25 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "jme" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "jmg" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/checkpoint) "jmL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/complex) "jmO" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) "jmQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner/east, /area/corsat/sigma/south/complex) "jmU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -45612,22 +33517,14 @@ dir = 1 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "jno" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/sigma/hangar/monorail) "jns" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "jnt" = ( /obj/structure/surface/table/reinforced, @@ -45639,10 +33536,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/east/id) "jnA" = ( /obj/structure/surface/table/woodentable, @@ -45658,33 +33552,22 @@ dir = 8 }, /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "jok" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/skills{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/biodome/complex) "jpn" = ( /obj/structure/surface/rack, /obj/item/toy/plush/farwa, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/hangar/security) "jpB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/hangar/arrivals) "jqo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -45701,10 +33584,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "jsp" = ( /obj/structure/machinery/camera/autoname{ @@ -45718,26 +33598,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "jsK" = ( /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/gamma/cargo) "jtY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "juf" = ( /obj/structure/closet/cabinet, @@ -45749,81 +33621,53 @@ /area/corsat/gamma/residential/researcher) "juh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "juk" = ( /obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/security) "juq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "juA" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/security) "juI" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/sigmaremote) "jvk" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "jvC" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "jvG" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "jwv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/corsat/sigma/biodome) "jwx" = ( /obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "jwE" = ( /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "jxA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45831,15 +33675,11 @@ }, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "jxN" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "jxR" = ( /obj/structure/pipes/vents/pump{ @@ -45851,28 +33691,19 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "jyk" = ( /obj/structure/surface/rack, /obj/item/device/binoculars, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "jyK" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/corsat/gamma/hangar/monorail/railcart) "jyM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/omega/hallways) "jyR" = ( /obj/structure/machinery/light{ @@ -45881,53 +33712,38 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "jyX" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "jyZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "jzn" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "jzM" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "jAd" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "jAq" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/security) "jAz" = ( /obj/structure/surface/table/almayer, @@ -45936,16 +33752,11 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "jAE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "jAO" = ( /obj/structure/machinery/light/small{ @@ -45955,9 +33766,7 @@ /area/corsat/sigma/hangar) "jBx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/corsat/sigma/biodome) "jBC" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -45981,31 +33790,21 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "jDO" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "jEI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/southeast) "jEK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/west) "jFF" = ( /obj/structure/machinery/power/apc/high{ @@ -46013,15 +33812,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) "jFJ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/sigma/hangar/arrivals) "jFP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46036,10 +33830,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/sigma/dorms) "jGd" = ( /obj/structure/platform{ @@ -46047,53 +33838,33 @@ dir = 1; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) "jGk" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/gamma/sigmaremote) "jGH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/airlock/east) "jGZ" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/hangar) "jHa" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "jHF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/gamma/hallwaysouth) "jHV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/sigma/hangar/monorail) "jIm" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -46103,35 +33874,24 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/omega/hallways) "jJm" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/corsat/sigma/biodome/testgrounds) "jJp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "jJt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Arrivals" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "jJv" = ( /obj/structure/machinery/light{ @@ -46140,46 +33900,29 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "jJD" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "jJM" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay) "jJN" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/hangar/monorail) "jJQ" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "jKy" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/omega/complex) "jLa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46193,9 +33936,7 @@ dir = 8; layer = 2.8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "jLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46207,10 +33948,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "jOh" = ( /turf/closed/wall/r_wall/biodome, @@ -46219,10 +33957,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/residential/west) "jOw" = ( /obj/structure/machinery/light{ @@ -46231,33 +33966,22 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential) "jOE" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) "jPe" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "jPL" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/sparker, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "jQL" = ( /obj/structure/closet/wardrobe, @@ -46265,16 +33989,11 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "jQT" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "jRl" = ( /obj/structure/pipes/vents/pump, @@ -46288,10 +34007,7 @@ /turf/closed/wall/r_wall/biodome, /area/corsat/omega/hallways) "jSm" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/residential) "jTg" = ( /obj/structure/machinery/door_control{ @@ -46300,145 +34016,95 @@ pixel_x = 24; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/omega/cargo) "jTS" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "jUa" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/rnr) "jUn" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "jUx" = ( /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "jUJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "jVn" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/sigma/dorms) "jVW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/gamma/hallwaysouth) "jWb" = ( /obj/structure/pipes/standard/cap/hidden{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/corsat/theta/biodome/complex) "jWw" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "jWy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/researcher) "jWB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "jWE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/sigma/north) "jXg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/sigma/cargo) "jXo" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/id) "jYc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "jYs" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "jYC" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) "jYD" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/south/security) "jYY" = ( /obj/structure/surface/table/almayer, @@ -46446,10 +34112,7 @@ pixel_y = 5 }, /obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "jZk" = ( /obj/structure/fence, @@ -46457,66 +34120,42 @@ /turf/open/auto_turf/snow/layer1, /area/corsat/gamma/biodome) "jZA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential/researcher) "jZU" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "kad" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/robotics) "kaf" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "kap" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/airlocknorth) "kar" = ( /obj/structure/bed/chair/office/light, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "kat" = ( /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "kbm" = ( /obj/structure/surface/table, /obj/item/device/megaphone, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "kbS" = ( /obj/structure/platform{ @@ -46525,58 +34164,42 @@ /obj/structure/machinery/mech_bay_recharge_port{ pixel_x = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "kcb" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "kdl" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/gamma/airlock/north) "kdn" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "kdA" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "kdH" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "ker" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "keE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -46586,247 +34209,160 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/complex) "kfJ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/residential/west) "kfZ" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "kgn" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "kgD" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/gamma/cargo) "kgO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "kha" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/security/cells) "khv" = ( /obj/structure/machinery/lapvend, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "khD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/south) "kiO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/control) "kje" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/administration) "kjm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/west) "kjC" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential) "kjH" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "kjU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/gamma/airlock/control) "kjZ" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "kky" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "kkI" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "kkK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "kkR" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/south/security) "kkV" = ( /obj/structure/closet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/morgue) "klD" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/security/cells) "klS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "kmf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "kmj" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/sigma/dorms) "kmC" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "kmI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/scrapyard) "kmV" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "knx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "knD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "knG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/hangar/security) "knS" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/gamma/cargo) "kof" = ( /obj/structure/machinery/computer/secure_data{ dir = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/airlock/east/id) "koh" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "kow" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46839,128 +34375,87 @@ dir = 8 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "koY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/hallwaysouth) "kps" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/corsat/sigma/biodome) "kpD" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "kpS" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/omega/cargo) "kqm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "kqp" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "kqs" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) "kqA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth/id) "kqE" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "kqZ" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) "krn" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/corsat/theta/biodome/complex) "krK" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "krR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "ksk" = ( /obj/structure/machinery/processor, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "ksn" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/sigma/cargo) "ksF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "ksH" = ( /obj/effect/landmark/nightmare{ @@ -46972,28 +34467,20 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "ksX" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/sigma/dorms) "kuq" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "kuC" = ( /obj/structure/flora/jungle/vines/heavy, @@ -47005,51 +34492,38 @@ "kuO" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south/id) "kuU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "kuW" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/bed/nest, -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/entrance/west, /area/corsat/inaccessible) "kvm" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/foyer) "kvN" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/rnr) "kwK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "kxc" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -47058,40 +34532,28 @@ name = "Hangar Office"; req_access_txt = "106" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/office) "kxs" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/gamma/cargo) "kyb" = ( /obj/structure/surface/rack, /obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "kyQ" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/maint) "kzd" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "kzm" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/sigmaremote) "kzA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47104,69 +34566,47 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "kAq" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "kAM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/north, /area/corsat/gamma/biodome/complex) "kBA" = ( /obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "kBE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "kBN" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "kBW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/sigmaremote) "kCb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/corsat/sigma/biodome) "kCk" = ( /obj/structure/pipes/vents/pump, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome) "kCm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47175,16 +34615,11 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "kCq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/airlocknorth) "kCH" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "kDt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47201,23 +34636,16 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "kEq" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/southeast/generator) "kEJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "kFo" = ( /obj/structure/surface/table/woodentable, @@ -47229,17 +34657,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/corsat/gamma/sigmaremote) "kFE" = ( /obj/structure/surface/rack, /obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "kFZ" = ( /obj/structure/flora/jungle/plantbot1, @@ -47252,38 +34675,24 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "kGJ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/corsat/gamma/hallwaysouth) "kGK" = ( /obj/structure/surface/table, /obj/item/book, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "kGP" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) "kGV" = ( /obj/structure/surface/table, /obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "kHe" = ( /obj/effect/landmark/corpsespawner/scientist, @@ -47292,28 +34701,21 @@ /area/corsat/gamma/residential/lounge) "kHk" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "kHP" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) "kIz" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/north, /area/corsat/gamma/hallwaysouth) "kID" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("theta") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydroeast) "kIW" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -47333,16 +34735,11 @@ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydroeast) "kJT" = ( /obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/virology) "kKs" = ( /obj/structure/machinery/power/apc/high{ @@ -47350,49 +34747,35 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "kKw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "kKB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/hangar/security) "kKK" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "kLC" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/sigmaremote) "kMu" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "kMZ" = ( /obj/structure/platform{ @@ -47400,114 +34783,80 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential/east) "kNB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/chemistry) "kNQ" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/corsat/sigma/biodome) "kOc" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) "kOd" = ( -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/hallwaysouth) "kOi" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/airlock/south) "kOv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "kOA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/residential/east) "kOL" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "kPl" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "kPp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/security) "kPC" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "kPH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "kPP" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "kPS" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "kQb" = ( /obj/structure/fence, @@ -47520,57 +34869,40 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "kQe" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/omega/offices) "kQS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) "kRa" = ( /obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ index = "9" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, /area/corsat/gamma/sigmaremote/teleporter) "kRc" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "kRB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "kRO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "kSa" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner, /area/corsat/gamma/medbay) "kSt" = ( /obj/structure/flora/pottedplant{ @@ -47579,95 +34911,63 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "kSx" = ( /obj/structure/surface/table/reinforced, /obj/item/bananapeel{ name = "tactical banana peel" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "kSD" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "kSG" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "kSM" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/engineering) "kSY" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south/id) "kTg" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/residential) "kTx" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/west, /area/corsat/sigma/south) "kUp" = ( -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential/east) "kUt" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) "kUV" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/deck, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "kVn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/sigma/dorms) "kVy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47675,46 +34975,32 @@ }, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "kVT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "kVZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "kWe" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay/lobby) "kWL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "kWZ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "kXj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47724,43 +35010,30 @@ /area/corsat/gamma/biodome) "kXp" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "kXz" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/sigmaremote) "kYn" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "kYC" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/foyer) "kZy" = ( /obj/structure/machinery/power/apc/hyper{ dir = 1; pixel_y = 25 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/theta/airlock/west) "lac" = ( /turf/closed/wall/r_wall/biodome, @@ -47774,83 +35047,53 @@ "laV" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "lbC" = ( /obj/structure/surface/rack, /obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "lbY" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "lco" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "lcF" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/biodome/toxins) "lda" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/airlocknorth) "ldg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential/east) "ldy" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/sigmaremote) "ldE" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "ldN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "ldS" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydroeast) "leg" = ( /obj/structure/sign/safety/laser{ @@ -47861,88 +35104,62 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "leI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "leJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/sigma/hangar/arrivals) "leM" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "leP" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "leR" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/west/id) "leS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "leW" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("theta") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "lfF" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/morgue) "lfH" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/morgue) "lgo" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) "lgt" = ( /obj/structure/platform{ @@ -47950,28 +35167,19 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/hallwaysouth) "lgv" = ( /obj/structure/surface/table, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "lgx" = ( /obj/structure/stairs{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) "lhi" = ( /obj/structure/surface/rack, @@ -47979,39 +35187,26 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "lhl" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "lhI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/security/cells) "lhL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/security) "lhS" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth) "lib" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48020,31 +35215,21 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "lig" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) "liQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "ljw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential) "lkd" = ( /obj/structure/machinery/camera/autoname{ @@ -48055,14 +35240,10 @@ /area/corsat/gamma/biodome) "lki" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "lkk" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) "lkm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48081,31 +35262,21 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "lkv" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/gamma/sigmaremote) "lkF" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "lla" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "llr" = ( /obj/structure/pipes/vents/pump{ @@ -48117,42 +35288,29 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "lmx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "lmD" = ( /obj/structure/machinery/autodispenser{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "lmV" = ( /obj/structure/pipes/vents/pump, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "lnc" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "lnG" = ( /obj/structure/surface/table/reinforced, @@ -48161,16 +35319,10 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/airlock/south/id) "lnM" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar/security) "lnQ" = ( /obj/structure/window_frame/corsat, @@ -48179,96 +35331,65 @@ "lnW" = ( /obj/structure/surface/table/reinforced, /obj/item/phone, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "lom" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/south/id) "lop" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "loF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/researcher) "lps" = ( /obj/structure/bed/chair/comfy, /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/monorail) "lqm" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/omega/hallways) "lqK" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/south) "lqR" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck/uno, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "lqX" = ( /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "lrQ" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "GammaSouthS"; name = "Gamma South Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/south) "lsc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) "lsk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "lsu" = ( /obj/effect/landmark/lv624/xeno_tunnel, @@ -48291,31 +35412,20 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "ltl" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/theta/airlock/control) "ltX" = ( /obj/structure/closet/cabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "lue" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/dice/d20, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "lug" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -48327,36 +35437,23 @@ id = "OmegaOffice"; name = "Privacy Shutters" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "luj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/security) "luE" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/virology) "luQ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "lvg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/hallwaysouth) "lvE" = ( /obj/effect/landmark/yautja_teleport, @@ -48364,28 +35461,18 @@ /area/corsat/sigma/dorms) "lvR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "lvU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "lwk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/engineering) "lwl" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/corsat/gamma/sigmaremote) "lwu" = ( /turf/open/floor/corsat, @@ -48394,40 +35481,29 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "lwL" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/smg/mp5, /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "lxi" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "lxj" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "lxS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "lyd" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -48436,53 +35512,34 @@ req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "lyu" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/lobby) "lyK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/hangar/office) "lyW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/west, /area/corsat/gamma/biodome/complex) "lzc" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/cargo) "lzI" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/southeast) "lAd" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/west, /area/corsat/gamma/medbay) "lBj" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "lBx" = ( /obj/structure/machinery/vending/snack, @@ -48490,57 +35547,38 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/hallwaysouth) "lCa" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tech_supply, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "lCq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/sigma/dorms) "lCr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/sigma/hangar/arrivals) "lCv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "lDb" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security/cells) "lDh" = ( /obj/structure/surface/table/reinforced, /obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/sigmaremote) "lDJ" = ( /obj/structure/machinery/door_control{ @@ -48549,20 +35587,13 @@ pixel_y = 24; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "lDT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/dorms) "lEb" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/hallways) "lER" = ( /obj/structure/barricade/handrail{ @@ -48571,88 +35602,62 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "lFq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "lFP" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/monorail) "lFU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Hangar Security"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "lFX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "lFY" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "lGj" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/theta/biodome/complex) "lGo" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "lGp" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Hydroponics"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "lGq" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "lGD" = ( /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/security) "lGP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48662,97 +35667,65 @@ /area/corsat/gamma/biodome) "lHk" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "lHB" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "lHI" = ( /obj/structure/surface/table/reinforced, -/obj/item/ammo_rcd, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "lHK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "lHU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/security) "lId" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/south/security) "lIf" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "lIq" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "lIu" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "lIE" = ( /obj/structure/machinery/smartfridge/chemistry{ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "lIQ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/sigma/north) "lIW" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "lIX" = ( /obj/structure/surface/table/reinforced, /obj/item/phone, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "lIY" = ( /obj/structure/platform{ @@ -48761,39 +35734,27 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "lJj" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/residential/lounge) "lJq" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential/east) "lJz" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/gamma/hallwaysouth) "lJR" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar) "lKy" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -48803,90 +35764,62 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "lLc" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "lLe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "lLO" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/cargo) "lMf" = ( /obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydrowest) "lMU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/checkpoint) "lNS" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/hangar/security) "lOn" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "lOM" = ( /obj/structure/platform{ dir = 4; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "lON" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/hangar) "lOS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "lOV" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "lOW" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -48897,9 +35830,7 @@ name = "Containment Cell 5"; req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/inaccessible) "lPh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -48911,53 +35842,37 @@ dir = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential) "lPD" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/sigmaremote) "lPH" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "lPY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "lQk" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "lQr" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/sigma/dorms) "lQu" = ( /obj/structure/flora/pottedplant{ @@ -48969,100 +35884,67 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/datalab) "lRg" = ( /obj/structure/computer3frame/server{ icon_state = "4" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/sigmaremote) "lRQ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/id) "lRW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/researcher) "lRY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/complex) "lSS" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential/east) "lSU" = ( /obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/virology) "lTA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/corsat/gamma/sigmaremote) "lTC" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "lTU" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "lUc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/airlock/south) "lUI" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/sigma/south/complex) "lUM" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/airlocknorth/id) "lUY" = ( /obj/structure/machinery/floodlight{ @@ -49072,32 +35954,22 @@ /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) "lVb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/airlock/control) "lVo" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo) "lVw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/west) "lVx" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "lVF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -49105,18 +35977,13 @@ /area/corsat/theta/biodome) "lVW" = ( /obj/structure/platform, -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, +/turf/open/gm/river/desert/shallow/pool, /area/corsat/gamma/residential/showers) "lWf" = ( /obj/structure/machinery/chem_dispenser{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "lWD" = ( /obj/structure/bed/chair/office/light{ @@ -49125,39 +35992,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "lWG" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hangar/security) "lXA" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/security) "lXJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/hangar/id) "lXP" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "lXV" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -49167,9 +36020,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "lYc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -49178,16 +36029,10 @@ /area/corsat/theta/biodome) "lYd" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/hangar/security) "lYq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/omega/complex) "lYt" = ( /obj/structure/sign/safety/high_voltage, @@ -49197,30 +36042,20 @@ /obj/item/stack/sheet/metal{ pixel_x = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "lYv" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/security) "lYM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/airlock/control) "lYO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "lYX" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -49245,19 +36080,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hangar) "mab" = ( /obj/structure/sign/safety/high_rad{ pixel_x = 32 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "mag" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -49265,40 +36094,29 @@ /area/corsat/gamma/rnr/bar) "mbp" = ( /obj/structure/closet/bodybag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar) "mbz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "mbI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "mbO" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth/id) "mbZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "mcj" = ( /obj/structure/bed/chair{ @@ -49318,10 +36136,7 @@ /area/corsat/gamma/cargo/disposal) "mdV" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/hangar/security) "mea" = ( /obj/structure/bed/sofa/south/white/right, @@ -49331,69 +36146,47 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "meu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/complex) "mey" = ( /obj/structure/sign/safety/biohazard, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "meC" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hallwaysouth) "meD" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/toxins) "meJ" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "mfm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "mfw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/sigma/dorms) "mfH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/toxins) "mfN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -49404,9 +36197,7 @@ "mfS" = ( /obj/effect/landmark/corpsespawner/wysec, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "mfX" = ( /obj/structure/bed/chair/office/dark{ @@ -49419,16 +36210,12 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "mgt" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "mgw" = ( /obj/structure/stairs{ @@ -49437,33 +36224,22 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "mgO" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "mgW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "mhg" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/checkpoint) "mhq" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -49472,68 +36248,44 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/south) "mim" = ( /obj/effect/landmark/hunter_primary, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "miE" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/residential) "miJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "miU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/corsat/gamma/cargo) "miX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "mjc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/complex) "mjt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "mjv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "mkM" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -49542,17 +36294,13 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/cargo) "mlo" = ( /obj/structure/surface/rack, /obj/item/clothing/under/CM_uniform, /obj/item/clothing/suit/storage/CMB, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) "mlr" = ( /obj/structure/pipes/vents/pump, @@ -49563,66 +36311,44 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering) "mmj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydrowest) "mmp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "mmr" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "mmy" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/theta/airlock/control) "mop" = ( /obj/structure/surface/rack, /obj/item/tool/soap/deluxe, /obj/item/tool/soap/deluxe, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "moU" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast) "mpj" = ( /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/airlocknorth) "mpS" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "mqn" = ( /obj/structure/pipes/vents/pump{ @@ -49631,24 +36357,15 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "mqr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/containment) "mqK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "mqL" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/theta/biodome/complex) "mqU" = ( /obj/structure/barricade/handrail{ @@ -49674,24 +36391,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/cargo) "mrG" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hangar/arrivals) "mrO" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "mrQ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -49699,31 +36408,22 @@ /area/corsat/gamma/biodome/complex) "msj" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/gamma/hangar/flightcontrol) "msm" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin12" - }, +/turf/open/shuttle/dropship/dark_grey_bottom, /area/prison/hangar_storage/research/shuttle) "msp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "msu" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/gamma/cargo) "msB" = ( /obj/structure/largecrate/random/barrel, @@ -49734,10 +36434,7 @@ /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) "msY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/theta/airlock/control) "mti" = ( /obj/structure/pipes/vents/pump{ @@ -49752,18 +36449,13 @@ "muo" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/sandal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "muu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "mvL" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -49771,42 +36463,26 @@ /area/corsat/sigma/biodome) "mvM" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "mvS" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/sigma/dorms) "mwa" = ( /obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "mwk" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "mwo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/north) "mwy" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "mwC" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -49814,84 +36490,55 @@ /area/corsat/emergency_access) "mwH" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/sigmaremote) "mwK" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "mxa" = ( /obj/structure/platform{ density = 0; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "mxc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/researcher) "mxO" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/fancy/cigar, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "mxZ" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/FixOVein, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay/surgery) "myt" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/southeast) "mzi" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/airlock/south) "mzn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/corsat/sigma/south/complex) "mAc" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/hangar/checkpoint) "mAt" = ( /obj/structure/surface/table/almayer, /obj/item/cell, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) "mAx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -49901,137 +36548,89 @@ /area/corsat/gamma/biodome) "mAK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "mAV" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/airlocknorth/id) "mBp" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/checkpoint) "mBq" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/rnr) "mBs" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/hangar/arrivals) "mCe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/airlock/control) "mCj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/cargo) "mCD" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "mCE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "mCU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/omega/hallways) "mDe" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/gamma/hangar/cargo) "mEd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "mEt" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hallways) "mEy" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "mEG" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/hangar/cargo) "mFm" = ( -/turf/open/floor/corsat{ - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner, /area/corsat/gamma/hallwaysouth) "mFp" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/sigma/hangar/monorail) "mFE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/theta/airlock/control) "mFP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/hangar/security) "mFS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50040,9 +36639,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Interrogation" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "mFT" = ( /obj/structure/bed/chair{ @@ -50051,42 +36648,31 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "mGl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "mGn" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "mGL" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "mGN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "mGU" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ @@ -50098,22 +36684,16 @@ name = "Theta Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "mHd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "mHM" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/gamma/cargo) "mIa" = ( /obj/structure/surface/table, @@ -50123,32 +36703,21 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "mIn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/foyer) "mIs" = ( /obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "mIx" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) "mIY" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -50159,181 +36728,119 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/corsat/sigma/biodome) "mJm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/guestpass{ reason = "Visitor" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "mJq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "mJy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "mJC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/rnr) "mKc" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/gamma/airlock/control) "mKk" = ( /obj/structure/surface/rack, /obj/item/storage/box/masks, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/complex) "mKP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "mLq" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/southeast, /area/corsat/omega/complex) "mLu" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "mLL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/north) "mLR" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "mNe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "mNV" = ( /obj/item/tool/soap, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "mNW" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "mOr" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "mOw" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/omega/control) "mOV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "mPg" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/hangar/checkpoint) "mPS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/airlocknorth/id) "mQk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "mQu" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/residential/researcher) "mQF" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/robot_module/janitor, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/south/robotics) "mQG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "mQU" = ( /obj/structure/platform{ @@ -50341,33 +36848,22 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential/east) "mRl" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "mRp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "mRB" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/foyer) "mRC" = ( /obj/effect/alien/weeds/node, @@ -50377,18 +36873,13 @@ /area/corsat/omega/biodome) "mRI" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/virology) "mSi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "mSo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -50396,23 +36887,15 @@ /area/corsat/theta/biodome) "mSz" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "mSG" = ( /obj/effect/landmark/corpsespawner/pmc, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "mSR" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/administration) "mTa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50425,83 +36908,61 @@ /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "mTF" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "mTO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security/cells) "mUj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "mUo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "mUu" = ( /obj/structure/machinery/camera/autoname{ network = list("sigma") }, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "mUv" = ( /obj/structure/machinery/conveyor, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "mUA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "mUE" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/east/id) "mVk" = ( /obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "mVq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50514,50 +36975,33 @@ dir = 8 }, /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "mWj" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/virology) "mWo" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "mWG" = ( /obj/structure/machinery/chem_dispenser{ req_access_txt = "100" }, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "mXC" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "mYe" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "mYQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "mYS" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -50566,9 +37010,7 @@ name = "Gate Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/south/complex) "mZf" = ( /obj/structure/platform{ @@ -50580,16 +37022,11 @@ layer = 2.7 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential/east) "mZm" = ( /obj/structure/prop/mech/parts/durand_head, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, +/turf/open/floor/corsat/arrow_north, /area/corsat/sigma/south/robotics) "naG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -50597,9 +37034,7 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "nbl" = ( /turf/closed/shuttle/ert{ @@ -50608,9 +37043,7 @@ /area/prison/hangar_storage/research/shuttle) "nbn" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "nbN" = ( /obj/structure/closet/crate/trashcart, @@ -50620,9 +37053,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/airlock/south) "nbS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50644,38 +37075,26 @@ /area/corsat/theta/biodome) "ncR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "ncW" = ( /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "nde" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "ndr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security) "nds" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "ndF" = ( /obj/structure/machinery/power/apc/high{ @@ -50683,22 +37102,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/laundry) "nen" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "neB" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/sigma/south/complex) "neY" = ( /turf/closed/shuttle/ert{ @@ -50713,45 +37124,32 @@ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/omega/cargo) "ngx" = ( /obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "nhE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "nhG" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "nid" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "niv" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "njh" = ( /obj/structure/machinery/light{ @@ -50759,55 +37157,36 @@ }, /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "njv" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "njI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/checkpoint) "njL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) "njP" = ( /obj/structure/closet/wardrobe/virology_white, /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "nkz" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/sigma/southeast/datalab) "nkO" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "nlk" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -50816,10 +37195,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "nlm" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -50835,9 +37211,7 @@ /area/corsat/theta/biodome) "nls" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "nlU" = ( /obj/structure/surface/table/reinforced, @@ -50845,46 +37219,32 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "nmb" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/airlocknorth/id) "nmp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "nna" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/researcher) "nnm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "nnx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/north) "nny" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -50901,18 +37261,13 @@ /turf/open/ice, /area/corsat/gamma/biodome) "noy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "noK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "noW" = ( /obj/structure/prop/almayer/cannon_cable_connector{ @@ -50925,9 +37280,7 @@ name = "\improper genetic LINAC system"; pixel_x = -15 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/corsat/theta/biodome/complex) "noY" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -50935,16 +37288,11 @@ name = "Teleportation Chamber"; req_one_access_txt = "101;103" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "npl" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/west) "npm" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -50960,17 +37308,13 @@ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar) "npI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/gamma/biodome/complex) "npN" = ( /obj/effect/landmark/hunter_primary, @@ -50983,37 +37327,24 @@ req_one_access_txt = "106;104" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "nqE" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "nqF" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "nqI" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/hangar/office) "nrd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "nri" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51025,17 +37356,13 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "nrO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/corsat/sigma/biodome) "nrT" = ( /obj/structure/surface/table/reinforced, @@ -51050,29 +37377,20 @@ id = "GammaSouthID"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south/id) "nrU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/hangar/monorail) "nsg" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/corsat/omega/offices) "ntg" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) "ntn" = ( /turf/closed/shuttle/ert{ @@ -51081,10 +37399,7 @@ /area/prison/hangar_storage/research/shuttle) "ntp" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south) "ntt" = ( /obj/structure/surface/rack, @@ -51095,34 +37410,25 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "nui" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "nuj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/airlocknorth) "nuq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/hangar) "nuF" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -51132,16 +37438,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/theta/airlock/control) "nuI" = ( /obj/structure/closet/athletic_mixed, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "nuS" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -51149,10 +37450,7 @@ /area/corsat/theta/biodome) "nvx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/omega/control) "nvA" = ( /obj/structure/platform{ @@ -51160,46 +37458,29 @@ layer = 2.7 }, /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential/east) "nwj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) "nws" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/cargo) "nwu" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "nwL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/southeast) "nwT" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "nxh" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hangar/office) "nxv" = ( /obj/structure/barricade/handrail{ @@ -51209,44 +37490,30 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "nxI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/north) "nxN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "nxP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "nxZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "nzB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/gamma/airlock/control) "nzR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51256,42 +37523,30 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/sigma/dorms) "nzS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/complex) "nAa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/sigma/dorms) "nAl" = ( /turf/open/floor/corsat, /area/corsat/gamma/freezer) "nAm" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "nAu" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/complex) "nAE" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -51299,31 +37554,21 @@ name = "Engineering"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "nAO" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/hangar/office) "nAR" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "nBa" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "nBi" = ( /obj/structure/platform{ @@ -51334,104 +37579,73 @@ dir = 4; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/sigma/south) "nBk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/researcher) "nBw" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "nBy" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "nBD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "nBO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/corsat/sigma/biodome) "nCh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) "nCl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "nDc" = ( /obj/structure/machinery/processor, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/complex) "nDs" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "nDD" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) "nDN" = ( /obj/structure/safe, /obj/item/xeno_egg, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "nDX" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ id = "GammaEastE"; name = "Gamma East Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "nEQ" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/morgue) "nFc" = ( /obj/effect/landmark/monkey_spawn, @@ -51440,48 +37654,31 @@ "nFt" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/bodybags, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/complex) "nFy" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome) "nGq" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/hallways) "nGs" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/gamma/administration) "nGU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south) "nHs" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/virology) "nHu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -51493,10 +37690,7 @@ /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/airlock/control) "nHU" = ( /obj/structure/surface/rack, @@ -51511,83 +37705,54 @@ "nIF" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "nJb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/residential/east) "nJl" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/gamma/administration) "nJn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar/security) "nJt" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "nJx" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "nJC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "nJP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/hallways) "nJR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/corsat/sigma/biodome) "nKt" = ( /obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod{ - icon_state = "floor0" - }, +/turf/open/shuttle/escapepod/floor0, /area/corsat/theta/biodome/complex) "nKH" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential) "nLl" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/rnr) "nLK" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -51597,38 +37762,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "nLP" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/omega/maint) "nLW" = ( /obj/structure/surface/table/reinforced, /obj/item/tank/air, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "nLX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/datalab) "nMc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "nMk" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -51638,78 +37792,55 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/gamma/hangar) "nNo" = ( /obj/structure/machinery/chem_dispenser{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "nNq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "nNB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "nNW" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/engineering/atmos) "nOb" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/checkpoint) "nOj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "nOH" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "nOP" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "nQB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southeast, /area/corsat/sigma/dorms) "nQZ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "nSb" = ( /obj/structure/surface/rack, @@ -51718,10 +37849,7 @@ /obj/item/ammo_magazine/shotgun/incendiary, /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/south/security) "nSm" = ( /obj/structure/machinery/light{ @@ -51730,27 +37858,19 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "nSp" = ( /obj/structure/surface/rack, /obj/item/circuitboard/exosuit/peripherals/alice, /obj/item/circuitboard/exosuit/main/alice, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) "nSA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/hangar) "nSC" = ( /obj/structure/sink{ @@ -51759,24 +37879,16 @@ }, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) "nSL" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/glass, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "nSP" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "nSV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51784,22 +37896,15 @@ }, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "nTb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay/morgue) "nTg" = ( /obj/structure/surface/table/reinforced, /obj/item/device/analyzer, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "nTx" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -51807,33 +37912,23 @@ /area/corsat/theta/biodome/complex) "nTz" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "nTO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Arcade" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "nUa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "nUd" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "nUg" = ( /obj/structure/surface/table/reinforced, @@ -51841,41 +37936,29 @@ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/checkpoint) "nUi" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "nUs" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "nUz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "nUU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "nWh" = ( /obj/structure/surface/table/woodentable, @@ -51886,93 +37969,62 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/lavatory) "nWV" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "nXj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "nXo" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "nXu" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "nXv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/sigma/south/offices) "nXD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "nXY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/dorms) "nYn" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "nYO" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/sigmaremote) "nYP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/west) "nZB" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/sigma/cargo) "nZN" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/sigma/north) "nZR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51985,52 +38037,33 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "oay" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/airlocknorth) "oaE" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/omega/cargo) "oaF" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "oaV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hallways) "obd" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/complex) "obz" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "obW" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -52038,9 +38071,7 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo/disposal) "ocD" = ( /obj/structure/surface/table/reinforced, @@ -52055,9 +38086,7 @@ id = "SigmaHangarC-S"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/security) "ocT" = ( /obj/structure/bed/chair{ @@ -52067,52 +38096,35 @@ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) "odm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "odC" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/sigma/north) "odN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/sigma/south) "odW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "ofq" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar/checkpoint) "ofP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "oge" = ( /obj/structure/flora/jungle/vines/heavy, @@ -52120,33 +38132,22 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "ohe" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/sigma/southeast) "ohV" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "oia" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/biodome/complex) "ois" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "oiu" = ( /obj/structure/machinery/light/small{ @@ -52156,17 +38157,13 @@ /area/corsat/sigma/south/engineering) "oiE" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "oiI" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "oiQ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -52176,32 +38173,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "ojN" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "oks" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/checkpoint) "okE" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/south) "okT" = ( /obj/structure/machinery/camera/autoname{ @@ -52215,34 +38203,26 @@ dir = 1; network = list("theta") }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/theta/airlock/control) "olB" = ( /obj/structure/showcase{ icon_state = "processor"; name = "Processor Unit" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/sigmaremote) "olD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "olX" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/hallways) "olY" = ( /obj/effect/alien/weeds/node, @@ -52255,27 +38235,19 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "omw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/flightcontrol) "omL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential) "ong" = ( /obj/structure/pipes/vents/pump{ @@ -52285,21 +38257,15 @@ /area/corsat/gamma/residential/east) "onz" = ( /obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "onY" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "oob" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "ooX" = ( /obj/structure/flora/jungle/vines/light_1, @@ -52312,15 +38278,11 @@ /obj/structure/prop/almayer/computers/sensor_computer1{ name = "computer" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor12" - }, +/turf/open/shuttle/escapepod/floor12, /area/corsat/theta/biodome/complex) "opi" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "opl" = ( /obj/structure/surface/table/almayer, @@ -52332,15 +38294,11 @@ /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "opo" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "opH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -52348,10 +38306,7 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "opW" = ( /obj/effect/landmark/hunter_secondary, @@ -52364,38 +38319,26 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar) "oqz" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "oqB" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/canteen) "oqI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "orz" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "orI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -52405,9 +38348,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "osY" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -52415,29 +38356,20 @@ /area/corsat/theta/biodome) "otC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/hangar/security) "otY" = ( -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential) "ouk" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "ouv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "ouC" = ( /obj/structure/machinery/light{ @@ -52446,104 +38378,65 @@ /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "ouM" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/theta/airlock/control) "ovc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/sigma/dorms) "ovC" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "ovP" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar/cargo) "ovT" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/theta/airlock/west/id) -"owL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +"owL" = ( +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/biodome/complex) "owP" = ( /obj/structure/bed/nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/corsat/sigma/biodome) "oxk" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "oxr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "oxL" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) "oyu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr/bar) "oyA" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "oyJ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential/east) "ozo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/theta/airlock/control) "ozp" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ @@ -52551,14 +38444,10 @@ name = "Gamma South Airlock" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/south) "ozH" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/datalab) "ozR" = ( /turf/open/space/transit/east/shuttlespace_ew10, @@ -52567,21 +38456,14 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "oAa" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "oBe" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/southeast/datalab) "oBq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52591,85 +38473,57 @@ dir = 1; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "oBX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/residential/west) "oCa" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "oCp" = ( /obj/structure/surface/rack, /obj/item/device/radio, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "oCt" = ( /obj/structure/prop/mech/parts/durand_torso, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/south/robotics) "oCz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/theta/airlock/west) "oDt" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/residential) "oDD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/hangar) "oEa" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "oEu" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/checkpoint) "oEE" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Holding Cell 1"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/office) "oEK" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -52678,25 +38532,16 @@ "oEU" = ( /obj/structure/surface/table/reinforced, /obj/item/device/binoculars, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "oFe" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/gamma/biodome/complex) "oFq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/airlock/control) "oFU" = ( /obj/structure/largecrate/random/barrel, @@ -52705,10 +38550,7 @@ "oGe" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "oGf" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ @@ -52716,9 +38558,7 @@ name = "Theta West Airlock" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/west) "oGz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52737,52 +38577,33 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo/lobby) "oHP" = ( /obj/structure/bed, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/security/cells) "oHT" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/theta/airlock/west) "oHU" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/corsat/omega/hangar) "oIf" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/gamma/residential) "oIx" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar/office) "oJb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "oJn" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52791,68 +38612,42 @@ /turf/open/ice, /area/corsat/gamma/biodome) "oJB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering) "oJT" = ( /obj/item/stack/sheet/metal, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "oJV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "oKg" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering/core) "oKh" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/hangar/security) "oKk" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/west/id) "oKp" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/hallways) "oKr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/theta/biodome/complex) "oKA" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/omega/hallways) "oKQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "oLe" = ( /obj/structure/flora/jungle/alienplant1, @@ -52866,9 +38661,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential/east) "oLX" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -52877,136 +38670,89 @@ name = "Gate Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/sigmaremote) "oMp" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/airlocknorth/id) "oMG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/airlocknorth) "oMZ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/omega/complex) "oNc" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/complex) "oNi" = ( /obj/structure/surface/rack, /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "oNI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "oNL" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/office) "oNR" = ( /obj/structure/bed, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "oNU" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "oOg" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southeast, /area/corsat/gamma/medbay/morgue) "oOj" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/canteen) "oOk" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "oOr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "oOz" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "oOH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/southeast/dataoffice) "oOL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/security) "oPa" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/residential) "oPq" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -53014,22 +38760,14 @@ /area/corsat/sigma/dorms) "oPu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/sigma/southeast/datalab) "oPC" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/security) "oQf" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/sigma/dorms) "oQF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -53039,49 +38777,34 @@ /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) "oQO" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/virology) "oQR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/hallwaysouth) "oQY" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "oRo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "oRJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "oTq" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "oTs" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/engineering) "oTw" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -53089,24 +38812,16 @@ name = "Research Desk" }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "oTE" = ( /obj/structure/surface/table, /obj/item/book, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "oUz" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "oUJ" = ( /obj/structure/flora/jungle/vines/light_1, @@ -53117,23 +38832,15 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/rnr) "oVj" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "oVr" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "oVF" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -53144,15 +38851,9 @@ /area/corsat/theta/biodome) "oVM" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/arrivals) "oVO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, /obj/structure/machinery/light/small{ dir = 4 }, @@ -53162,119 +38863,77 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "oWg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar) "oXl" = ( /obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/green/southwest, /area/corsat/gamma/medbay/morgue) "oXK" = ( /obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northwest, /area/corsat/gamma/medbay/morgue) "oXL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "oXZ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Holding Cell 1"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/office) "oYC" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "oYH" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/residential/west) "oYP" = ( /obj/structure/platform{ dir = 8; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "oYY" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/gamma/hallwaysouth) "oZj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/airlock/south) "oZv" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/rnr) "oZx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "oZD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "oZH" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "oZQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "oZW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -53288,24 +38947,18 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "pbS" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south) "pbX" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "pcb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "pcu" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -53314,40 +38967,28 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "pcK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/checkpoint) "pdg" = ( /turf/open/space/transit/east/shuttlespace_ew10, /area/space) "pdh" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) "pdk" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/west) "pdw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "pdR" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -53355,72 +38996,46 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) "pdW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/residential) "peh" = ( /obj/structure/surface/table, /obj/item/book, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "pfk" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/residential/west) "pfz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/sigma/hangar/monorail) "pfG" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/monorail) "pfQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "pge" = ( /obj/structure/stairs, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "pgf" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "pgn" = ( /obj/structure/bed/chair/office/light, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "pgC" = ( /obj/structure/flora/pottedplant{ @@ -53429,17 +39044,13 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "pgH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar/security) "pgO" = ( /obj/structure/flora/jungle/vines/heavy, @@ -53450,17 +39061,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/airlock/east) "pgX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "phl" = ( /obj/item/fuel_cell, @@ -53469,59 +39076,41 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) "phK" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) "phM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "phN" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/biodome/virology) "phX" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +/turf/open/floor/corsat/purple, /area/corsat/sigma/south) "pir" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hallwaysouth) "piI" = ( /obj/structure/surface/table/almayer, /obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/south/engineering) "piZ" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -53534,35 +39123,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "pjP" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/hallwaysouth) "pkc" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "pkh" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/hallways) "pkP" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "plI" = ( /obj/structure/window/framed/corsat, @@ -53572,9 +39151,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/sigma/southeast/datalab) "plV" = ( /obj/structure/machinery/light/small{ @@ -53586,17 +39163,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "pnc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "pnt" = ( /obj/structure/xenoautopsy/tank/alien, @@ -53608,33 +39181,23 @@ /area/corsat/theta/biodome) "pov" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/west, /area/corsat/gamma/medbay) "ppi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "ppr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "ppy" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "ppP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -53647,39 +39210,25 @@ dir = 8; network = list("theta") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "prw" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/theta/airlock/west/id) "prB" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "prF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "prG" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) "prI" = ( /obj/structure/pipes/vents/pump/on, @@ -53697,50 +39246,35 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "pue" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/southeast) "puh" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "puF" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/foyer) "pvh" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "pvo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "pvA" = ( /obj/structure/flora/jungle/vines/heavy, @@ -53753,9 +39287,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "pwp" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -53765,38 +39297,25 @@ /turf/closed/ice_rock/corners, /area/corsat/gamma/biodome) "pws" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/omega/cargo) "pwu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/engineering/atmos) "pwO" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "pxj" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "pxl" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/foyer) "pxH" = ( /obj/structure/flora/pottedplant{ @@ -53806,9 +39325,7 @@ dir = 8; layer = 2.8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "pya" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -53816,52 +39333,36 @@ /turf/open/floor/wood, /area/corsat/gamma/rnr/library) "pyL" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/hangar/security) "pzr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "pzH" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "SigmaWestD"; name = "Sigma Dome Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "pAo" = ( /obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "pAt" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/airlock/south/id) "pAB" = ( /obj/structure/machinery/door/window/northleft, /obj/structure/machinery/door/window/southleft, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "pAM" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/powercell, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/robotics) "pBm" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -53871,61 +39372,41 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south/id) "pBJ" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "pCh" = ( /obj/structure/machinery/light, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "pCi" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "pCT" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "pCW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/hangar/office) "pDt" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/sigma/dorms) "pDB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/omega/offices) "pDP" = ( /obj/structure/closet/secure_closet/engineering_personal{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/southeast/generator) "pDR" = ( /turf/closed/wall/r_wall/biodome, @@ -53934,63 +39415,41 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "pEj" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "pEm" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) "pEQ" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/hangar/office) "pEX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) "pFe" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/hangar) "pFX" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/arrivals) "pGp" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "pIj" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -54001,31 +39460,20 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) "pIU" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/omega/hangar) "pJa" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/residential/west) "pJn" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/sigma/southeast/datalab) "pJo" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "pJP" = ( /obj/structure/showcase{ @@ -54043,38 +39491,27 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "pKg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "pKi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/engineering) "pLy" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/toxins) "pLO" = ( /obj/structure/window/framed/corsat/security, @@ -54086,48 +39523,33 @@ /turf/open/floor/plating, /area/corsat/sigma/hangar/security) "pMh" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/southwest, /area/corsat/omega/hallways) "pMI" = ( /obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/south) "pMN" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/gamma/residential) "pMU" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "pMZ" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/hangar) "pNa" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "pOs" = ( /obj/structure/machinery/colony_floodlight{ @@ -54136,10 +39558,7 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "pPp" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "pPN" = ( /obj/structure/bed/stool, @@ -54153,34 +39572,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/west) "pQt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/airlocknorth/id) "pQA" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hangar/arrivals) "pQK" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/south/offices) "pRl" = ( /turf/open/floor/corsat, @@ -54189,9 +39597,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome) "pRX" = ( /obj/structure/platform, @@ -54199,10 +39605,7 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southeast, /area/corsat/sigma/south) "pSb" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -54211,17 +39614,13 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/monorail) "pSc" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "pSo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -54229,26 +39628,17 @@ /area/corsat/gamma/biodome) "pSp" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/sigma/hangar/monorail) "pSu" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "pSB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/security) "pSZ" = ( /obj/structure/machinery/vending/coffee, @@ -54261,62 +39651,41 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "pTD" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/north) "pUa" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/south/offices) "pUy" = ( /obj/structure/surface/rack, /obj/item/circuitboard/exosuit/peripherals/work_loader, /obj/item/circuitboard/exosuit/peripherals/work_loader, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "pUA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/omega/offices) "pUP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "pVm" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/residential/maint) "pVo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/corsat/sigma/biodome) "pVr" = ( /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "pVD" = ( /obj/structure/pipes/vents/pump{ @@ -54326,47 +39695,31 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) "pVL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "pVS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "pWc" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/cargo) "pWj" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "pWl" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/west, /area/corsat/omega/hallways) "pWr" = ( /obj/structure/pipes/unary/freezer{ @@ -54375,19 +39728,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "pWE" = ( /obj/structure/computer3frame/server{ icon_state = "4" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/sigma/south/complex) "pWR" = ( /obj/structure/flora/jungle/vines/heavy, @@ -54408,64 +39755,46 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "pXY" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/hangar/checkpoint) "pYS" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "pYW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "pZf" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/south) "pZt" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "qaa" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "qac" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential/researcher) "qaf" = ( /obj/structure/machinery/camera/autoname{ @@ -54478,52 +39807,35 @@ health = 80 }, /obj/item/phone, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) "qaj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "qaB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) "qaG" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "qaO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/foyer) "qaS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/surgery) "qaY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/corsat/gamma/sigmaremote) "qba" = ( /obj/structure/surface/rack, @@ -54531,33 +39843,23 @@ /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "qbc" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "qbB" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/security) "qbG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydrowest) "qbV" = ( /obj/structure/window/framed/corsat/security, @@ -54578,10 +39880,7 @@ "qcR" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "qdK" = ( /obj/structure/machinery/light, @@ -54593,63 +39892,44 @@ pixel_y = 2 }, /obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/surgery) "qeg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/lobby) "qeh" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "qeC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "qeE" = ( /obj/structure/sign/safety/airlock{ pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/omega/hallways) "qeF" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "qeY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "qfl" = ( /obj/structure/bed/nest, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "qfp" = ( /obj/structure/window/framed/corsat, @@ -54664,122 +39944,83 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "qgl" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/airlocknorth) "qgm" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/gamma/hangar/arrivals) "qgo" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/sigma/southeast/datalab) "qgt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "qgF" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "qgR" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/testgrounds) "qhl" = ( /obj/structure/bed, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/security/cells) "qhT" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/residential) "qig" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) "qiw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar) "qiW" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "qje" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay) "qjf" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "qjG" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "qjL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "qkr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "qkt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -54791,29 +40032,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/sigma/hangar) "qkz" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) "qkD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/hallways) "qkJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "qkL" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -54822,31 +40052,21 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "qkW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "qlh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "qlt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "qlx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -54858,48 +40078,32 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/security) "qlI" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "qmD" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/southeast/dataoffice) "qmT" = ( /obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/gamma/biodome/virology) "qnb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/south/security) "qnw" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/west/id) "qoh" = ( /obj/effect/landmark/monkey_spawn, @@ -54910,49 +40114,32 @@ /turf/open/floor/wood, /area/corsat/gamma/administration) "qou" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/lobby) "qoN" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "qpo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/hallwaysouth) "qpB" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "qpC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/complex) "qqg" = ( /obj/structure/computer3frame/server{ icon_state = "4" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "qqF" = ( /obj/structure/machinery/camera/autoname{ @@ -54963,15 +40150,11 @@ /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "qqI" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/gamma/hangar/flightcontrol) "qqK" = ( /obj/structure/window/framed/corsat/security, @@ -54981,51 +40164,34 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "qqY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/theta/airlock/control) "qsg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/south/offices) "qsC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/hallwaysouth) "qsT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome) "qsW" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "qsY" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/gamma/hangar/flightcontrol) "qtf" = ( /obj/item/stack/sheet/wood, @@ -55033,34 +40199,24 @@ /area/corsat/sigma/dorms) "qti" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/residential/west) "qtm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/corsat/sigma/biodome) "qtI" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "qtZ" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "quG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -55072,23 +40228,15 @@ "quI" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "qvz" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin13" - }, +/turf/open/shuttle/dropship/light_grey_middle, /area/prison/hangar_storage/research/shuttle) "qvB" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "qvD" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -55100,19 +40248,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar) "qwr" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "qww" = ( /obj/structure/surface/table, @@ -55121,161 +40264,106 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "qwM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/omega/complex) "qwO" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "qxi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "qxB" = ( /obj/structure/surface/table/reinforced, /obj/item/newspaper, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/checkpoint) "qxR" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/residential/west) "qyg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/rnr) "qys" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "qyO" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/virology) "qzo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "qzy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/airlock/control) "qAg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "qAk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "qAl" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/biodome) "qAs" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "qAG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "qAH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "qBk" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/hangar) "qBJ" = ( -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/green, /area/corsat/gamma/medbay/morgue) "qBZ" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "qCi" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "qCU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hangar) "qDx" = ( /obj/structure/machinery/light/small{ @@ -55288,33 +40376,23 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/sigma/south) "qEk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/hangar/monorail) "qEu" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "qEw" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "qEG" = ( /obj/structure/machinery/camera/autoname{ @@ -55327,10 +40405,7 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/south/offices) "qFq" = ( /obj/structure/surface/table/woodentable, @@ -55340,35 +40415,24 @@ /area/corsat/gamma/residential/east) "qFA" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "qFJ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/north) "qFK" = ( /obj/structure/surface/table, /obj/item/folder, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "qGn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/residential/west) "qGz" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -55378,22 +40442,14 @@ "qGF" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/hangar/monorail/control) "qGY" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/omega/complex) "qHF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "qHM" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -55406,30 +40462,20 @@ name = "Omega Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "qIr" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "qIw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/north) "qIS" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "qIU" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -55439,18 +40485,13 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "qJi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "qJl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55466,24 +40507,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) "qJJ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) "qJO" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "qJZ" = ( /obj/structure/xenoautopsy/tank/broken, @@ -55496,21 +40530,14 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "qKN" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hallways) "qKZ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/hallwaysouth) "qLa" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/airlock/control) "qLo" = ( /obj/structure/machinery/power/apc/high{ @@ -55518,10 +40545,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) "qLz" = ( /obj/structure/prop/mech/tesla_energy_relay, @@ -55531,52 +40555,37 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/south) "qLI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay) "qMT" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "qNe" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/communications{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "qNF" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/hangar/checkpoint) "qNJ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "qNM" = ( /obj/structure/surface/table/woodentable, @@ -55587,9 +40596,7 @@ /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "qOF" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -55597,36 +40604,25 @@ name = "Hangar Office"; req_access_txt = "106" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/office) "qOJ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/hangar/security) "qPo" = ( /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) "qPJ" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "qQe" = ( /obj/structure/window/framed/corsat/research, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "qQg" = ( /turf/open/floor/wood, @@ -55635,32 +40631,24 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "qQU" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "qRv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "qRY" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/sigmaremote) "qSi" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -55677,26 +40665,18 @@ /obj/item/clothing/gloves/black, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/south/id) "qSG" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "qST" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "qTd" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -55705,48 +40685,31 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/hallwaysouth) "qTe" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/dorms) "qTj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/id) "qTZ" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/canteen) "qUt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south/id) "qUI" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "qUT" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/atmos) "qVd" = ( /obj/structure/machinery/gravity_generator{ @@ -55758,17 +40721,13 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) "qVe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo) "qVs" = ( /obj/structure/machinery/camera/autoname{ @@ -55780,16 +40739,12 @@ "qVz" = ( /obj/effect/landmark/corpsespawner/pmc, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "qVA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "qVF" = ( /obj/structure/platform{ @@ -55797,117 +40752,80 @@ dir = 1; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "qVJ" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome) "qWf" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "qWr" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential) "qWK" = ( /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "qWQ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "qWX" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/gamma/hallwaysouth) "qXL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "qYj" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northeast, /area/corsat/gamma/hangar/monorail) "qZj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/hangar) "qZs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "qZW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "raw" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "rba" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) "rbo" = ( /obj/structure/bed/chair/comfy/beige, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/corsat/gamma/biodome/complex) "rbC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/south/robotics) "rcg" = ( /obj/structure/pipes/vents/pump, @@ -55916,61 +40834,41 @@ "rch" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/theta/biodome/complex) "rcT" = ( /obj/structure/computer3frame/server{ icon_state = "4" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "rdn" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "rdA" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/south/security) "rdZ" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/gamma/foyer) "reh" = ( /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/hallwaysouth) "rei" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/hangar/office) "reN" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -55986,82 +40884,55 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "rfh" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "rfo" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/sigma/north) "rfQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/theta/airlock/control) "rgc" = ( /obj/structure/bed/nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "rgm" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/southeast/datalab) "rhr" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "rhu" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "rhv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "riC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/southeast/datalab) "riE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "rjv" = ( /obj/structure/machinery/light{ @@ -56069,17 +40940,13 @@ }, /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "rjO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/cells) "rjT" = ( /obj/structure/pipes/vents/pump{ @@ -56091,17 +40958,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "rkK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "rlh" = ( /obj/structure/machinery/shower{ @@ -56113,143 +40976,89 @@ layer = 2.8 }, /obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "rlk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/airlock/south/id) "rlG" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/south/robotics) "rlH" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/omega/cargo) "rmc" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/cargo/disposal) "rmk" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/virology) "rmm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "rmI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "rno" = ( /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar) "rnK" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "roh" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) "roj" = ( /obj/structure/safe, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "ros" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/north) "rox" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/gamma/administration) "roL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hangar) "roZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "rpi" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "rpr" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "rpB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "rpP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/core) "rpZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -56266,66 +41075,45 @@ /area/corsat/sigma/cafe) "rqo" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "rrs" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ name = "computer" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor2" - }, +/turf/open/shuttle/escapepod/floor2, /area/corsat/theta/biodome/complex) "rrv" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "rrE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "rrG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/landing/console2) "rrY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/hangar/security) "rtr" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/gamma/cargo/disposal) "rtN" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay) "rtT" = ( /obj/structure/surface/table/almayer, @@ -56334,60 +41122,43 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) "rtZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "rur" = ( /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "rut" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "ruw" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "rvg" = ( /obj/structure/sign/safety/airlock{ pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/west) "rvp" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, /area/corsat/gamma/sigmaremote) "rvC" = ( /obj/structure/machinery/power/apc/high{ @@ -56395,33 +41166,22 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/sigma/airlock/east/id) "rvD" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/sigma/dorms) "rvL" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/rnr) "rwl" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "rwo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -56433,75 +41193,47 @@ dir = 1; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "rwF" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/sigma/hangar) "rwK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/hallways) "rxd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) "rxk" = ( /obj/structure/closet/secure_closet/engineering_electrical{ req_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/south/engineering) "rxD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "ryc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "ryn" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering/core) "ryE" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "ryR" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/east) "rzk" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/security) "rzy" = ( /obj/structure/flora/jungle/vines/light_1, @@ -56513,170 +41245,111 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "rAc" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "rAm" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/southeast) "rBf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/cells) "rBX" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "rCb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/south/robotics) "rCd" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hangar/arrivals) "rCr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "rCA" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar) "rCE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydroeast) "rCH" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/sigmaremote) "rCO" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) "rDr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "rDF" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/omega/offices) "rEq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/residential) "rED" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "rEG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "rEX" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/omega/control) "rFf" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "rFm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "rFw" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "rFC" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/hangar/arrivals) "rFJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/corsat/omega/offices) "rFS" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/corsat/omega/hangar) "rGb" = ( /obj/structure/prop/almayer/cannon_cables{ @@ -56687,53 +41360,36 @@ desc = "A bewildering tangle of machinery and pipes."; name = "coolant feed" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/corsat/theta/biodome/complex) "rGc" = ( /obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/theta/biodome/complex) "rGn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) "rGu" = ( /obj/item/paper/crumpled, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "rGC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "rGH" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "rHb" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/security) "rId" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "rJo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -56743,71 +41399,49 @@ "rJu" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "rKa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "rKo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "rKq" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/hangar/monorail) "rKy" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "rKG" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/hangar/checkpoint) "rKN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/sigma/south/complex) "rLp" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome) "rLw" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/theta/airlock/west) "rLZ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -56815,9 +41449,7 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/maint) "rMq" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -56827,9 +41459,7 @@ "rMD" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "rMR" = ( /obj/structure/surface/table/almayer, @@ -56837,9 +41467,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "rMU" = ( /obj/structure/foamed_metal, @@ -56847,37 +41475,25 @@ /area/corsat/sigma/dorms) "rMX" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/sigma/south/complex) "rNc" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hangar/security) "rOq" = ( /obj/structure/bed/sofa, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hangar/arrivals) "rOH" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/hangar/cargo) "rOP" = ( /obj/structure/window/reinforced, @@ -56885,47 +41501,32 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "rOS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "rPI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/omega/control) "rPZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hallways) "rQh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/corsat/sigma/biodome/scrapyard) "rQD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/hangar/monorail/control) "rQQ" = ( /obj/item/weapon/gun/flamer, @@ -56934,18 +41535,13 @@ name = "specimen control cabinet"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "rQY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "rRh" = ( /obj/structure/surface/rack, @@ -56953,10 +41549,7 @@ /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/hangar/security) "rRm" = ( /obj/structure/platform{ @@ -56964,10 +41557,7 @@ layer = 2.7 }, /obj/structure/platform, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/hallwaysouth) "rRR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56985,10 +41575,7 @@ /obj/item/clothing/gloves/black, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/control) "rSG" = ( /obj/structure/machinery/computer/cameras{ @@ -56998,23 +41585,14 @@ /turf/open/floor/wood, /area/corsat/gamma/administration) "rSP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar) "rSR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/airlock/control) "rTb" = ( /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/sigma/hangar/monorail) "rTf" = ( /obj/structure/surface/table, @@ -57022,10 +41600,7 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "rTj" = ( /obj/structure/flora/jungle/vines/light_1, @@ -57035,16 +41610,10 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "rTo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/monorail) "rTw" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/airlock/south) "rTD" = ( /obj/structure/window/framed/corsat, @@ -57054,15 +41623,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "rUd" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay/lobby) "rUq" = ( /obj/structure/flora/jungle/vines/light_1, @@ -57082,181 +41646,121 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/omega/cargo) "rUQ" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/hallwaysouth) "rVh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "rVK" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/morgue) "rVS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/omega/offices) "rWh" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "rWE" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "rWG" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/maint) "rWM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "rWN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "rWY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/omega/airlocknorth) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "rXs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/sigma/dorms) "rXB" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) "rXE" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "rYj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/monorail/control) "rYp" = ( /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "rYq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "rYB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/omega/hallways) "rZC" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/south) "rZJ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering) "rZK" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/checkpoint) "rZR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome) "rZU" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/corsat/gamma/cargo) "sam" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/residential/researcher) "sap" = ( /obj/effect/landmark/lv624/xeno_tunnel, @@ -57265,26 +41769,19 @@ "saV" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "sba" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "sbs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datamaint) "sbw" = ( /obj/structure/bed/chair/office/light{ @@ -57293,45 +41790,28 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "sbF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "sbJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/corsat/omega/cargo) "sbN" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering) "scj" = ( /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "scH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "sdm" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ @@ -57343,9 +41823,7 @@ name = "Gamma Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "sdu" = ( /obj/structure/surface/table/woodentable, @@ -57356,15 +41834,11 @@ /area/corsat/gamma/residential/east) "sdv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "sdR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/biodome/complex) "sem" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -57377,18 +41851,13 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "seB" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/south) "sfx" = ( /obj/structure/pipes/vents/pump{ @@ -57401,39 +41870,26 @@ name = "\improper Baths" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/showers) "sga" = ( /obj/effect/landmark/hunter_primary, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/hangar/arrivals) "sgl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "sgn" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/gamma/airlock/control) "sgu" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "sgN" = ( /obj/structure/machinery/power/reactor/colony{ @@ -57446,18 +41902,13 @@ icon_state = "0-8"; layer = 2.1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "sgX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/checkpoint) "shg" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -57466,47 +41917,33 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "shq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "shW" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "sid" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/west) "sii" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/complex) "sip" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/corsat/sigma/south/complex) "siu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -57516,9 +41953,7 @@ /area/corsat/theta/biodome) "siU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/residential/west) "sjr" = ( /obj/structure/fence, @@ -57526,9 +41961,7 @@ /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) "sjs" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/residential) "sjw" = ( /obj/structure/machinery/door_control{ @@ -57538,79 +41971,53 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/virology) "sjx" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "sjK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/morgue) "sjL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "sjR" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/hangar/monorail) "skc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/sigma/south) "skf" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/south/id) "skk" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "skp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "skK" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "skS" = ( /obj/item/toy/spinningtoy{ @@ -57622,32 +42029,22 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "slL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/foyer) "slU" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "smk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/hangar/office) "smP" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -57655,44 +42052,31 @@ /area/corsat/theta/biodome) "snc" = ( /obj/structure/morgue, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/medbay/morgue) "snA" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "snG" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "snO" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar) "snP" = ( /obj/structure/platform{ density = 0; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) "snS" = ( /mob/living/carbon/human/yiren, @@ -57702,40 +42086,26 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "snW" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "soi" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/foyer) "sor" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/sigma/dorms) "sos" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/training, /obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "spD" = ( /obj/structure/surface/table/reinforced, @@ -57744,25 +42114,19 @@ name = "Security Shutters"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "spN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/security) "spP" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "spU" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -57779,24 +42143,16 @@ /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) "sqY" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northeast, /area/corsat/gamma/hangar/arrivals) "srY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/theta/biodome/complex) "ssh" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "ssw" = ( /obj/structure/bed/sofa/south/white/left, @@ -57807,17 +42163,11 @@ dir = 1 }, /obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "stA" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/security) "suf" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -57827,78 +42177,51 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "sum" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/virology) "sur" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "svn" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "svB" = ( /obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "svD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/north, /area/corsat/gamma/medbay) "svH" = ( /obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, +/turf/open/shuttle/escapepod/floor4, /area/corsat/theta/biodome/complex) "svU" = ( /obj/structure/surface/rack, /obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "svX" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/hangar/cargo) "swf" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/robotics) "swY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/south/offices) "sxa" = ( /obj/structure/bed/chair/office/light{ @@ -57907,33 +42230,22 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "sxB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ name = "Emergency NanoMed"; pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "sxI" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hangar/arrivals) "sxJ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/arrivals) "sxO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -57941,31 +42253,21 @@ id = "OmegaOffice"; name = "Privacy Shutters" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "sxU" = ( /obj/structure/prop/dam/crane/cargo, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/corsat/gamma/sigmaremote) "syk" = ( /obj/structure/surface/rack, /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "syG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/engineering) "sAj" = ( /obj/structure/machinery/camera/autoname{ @@ -57979,38 +42281,26 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "sBH" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/corsat/gamma/hangar/monorail/railcart) "sBV" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "sCf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "sCl" = ( /obj/structure/coatrack, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "sCv" = ( /obj/structure/window/framed/corsat/security, @@ -58022,10 +42312,7 @@ /turf/open/floor/plating, /area/corsat/gamma/airlock/south/id) "sCZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/security) "sDi" = ( /obj/structure/pipes/vents/pump, @@ -58034,69 +42321,49 @@ "sDx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "sDV" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/residential) "sEb" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, +/turf/open/floor/almayer/research/containment/corner/north, /area/corsat/gamma/sigmaremote) "sEc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "sEo" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/checkpoint) "sFd" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/gamma/hangar/flightcontrol) "sFD" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "sFF" = ( /obj/effect/landmark/queen_spawn, /turf/open/ice, /area/corsat/gamma/biodome) "sFI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/hallwaysouth) "sGB" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -58113,100 +42380,69 @@ req_access_txt = "106" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "sHB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "sHR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "sHX" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "sIm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("theta") }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/theta/airlock/west) "sIs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "sIw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/corsat/sigma/cargo) "sIC" = ( /obj/structure/surface/table, /obj/item/toy/deck/uno, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "sIL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/residential/east) "sIR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south/id) "sIV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/corsat/sigma/cargo) "sJe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/sigma/dorms) "sJg" = ( /turf/closed/shuttle/ert{ @@ -58214,90 +42450,62 @@ }, /area/prison/hangar_storage/research/shuttle) "sJk" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/corsat/omega/hangar) "sJr" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/east/id) "sKa" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) "sKQ" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" + dir = 4 }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/security) "sKZ" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile{ id = "ThetaNorthN"; name = "Theta North Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "sLw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/residential) "sLF" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) "sMb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "sMO" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/northeast, /area/corsat/gamma/biodome/complex) "sMW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "sNo" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "sNE" = ( /obj/structure/morgue/crematorium{ @@ -58309,99 +42517,68 @@ pixel_y = 28; req_one_access_txt = "2;8;19" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/corsat/gamma/medbay/morgue) "sNG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "sNO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/sigma/cafe) "sNU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "sOq" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/platform{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "sOt" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "sON" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/omega/offices) "sPx" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/monorail/control) "sPB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) "sPI" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/corsat/gamma/hallwaysouth) "sQb" = ( /obj/structure/bed, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/security/cells) "sQz" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "sQI" = ( /obj/structure/platform{ @@ -58409,10 +42586,7 @@ layer = 2.7 }, /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential/east) "sRe" = ( /obj/structure/surface/table/almayer, @@ -58422,52 +42596,33 @@ pixel_x = -5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "sRo" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "sRx" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential) "sRI" = ( /obj/structure/surface/table/reinforced, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "sRK" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ req_one_access_txt = "201;104" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "sSg" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/gamma/biodome/toxins) "sSZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/omega/hallways) "sTq" = ( /obj/structure/flora/jungle/planttop1, @@ -58475,18 +42630,12 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "sTr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/security) "sTt" = ( /obj/structure/surface/table/reinforced, /obj/item/device/assembly/igniter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "sTD" = ( /obj/structure/surface/table/woodentable, @@ -58496,31 +42645,20 @@ /area/corsat/gamma/residential/east) "sTH" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/toxins) "sTN" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/gamma/hangar/flightcontrol) "sTW" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "sUR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering/atmos) "sVk" = ( /turf/open/floor/corsat, @@ -58534,43 +42672,32 @@ dir = 4 }, /obj/structure/barricade/handrail, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "sVt" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "sVA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/corsat/gamma/sigmaremote) "sVO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/control) "sWd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/generator) "sWP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -58588,9 +42715,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "sXl" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -58598,41 +42723,29 @@ "sXG" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/gloves/latex, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/biodome/complex) "sYc" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "sYh" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper/Toxin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "sYk" = ( /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "sZc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "sZg" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -58642,87 +42755,54 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "tae" = ( /obj/structure/machinery/r_n_d/circuit_imprinter, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "tav" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "taF" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar/security) "taL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/theta/airlock/control) "taO" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/hangar/office) "taQ" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/residential/maint) "taT" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) "taX" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/engineering) "taY" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "tbc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) "tbd" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/hangar/security) "tbm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "tbY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -58732,33 +42812,22 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "tcF" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/medbay/surgery) "tdi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "tdp" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "tdH" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -58768,17 +42837,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "teZ" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/southwest, /area/corsat/sigma/hangar/office) "tfi" = ( /obj/structure/barricade/handrail{ @@ -58787,9 +42851,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "tfu" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -58797,49 +42859,34 @@ /area/corsat/theta/biodome) "tfz" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "tfC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/hallwaysouth) "tfF" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "tfP" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/theta/biodome/complex) "tfY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "tgE" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) "tgJ" = ( /obj/structure/pipes/vents/pump{ @@ -58848,15 +42895,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "thb" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "thv" = ( /obj/structure/machinery/power/apc/high{ @@ -58864,40 +42906,26 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "tja" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/sigma/south/complex) "tjf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "tjQ" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) "tjT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "tkO" = ( /obj/structure/window/framed/corsat/hull, @@ -58910,20 +42938,14 @@ /turf/open/ice, /area/corsat/gamma/biodome) "tlD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "tlP" = ( /obj/structure/platform{ dir = 4; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/sigma/south) "tlX" = ( /obj/structure/closet/secure_closet/security_empty, @@ -58934,92 +42956,57 @@ /obj/item/ammo_magazine/pistol/mod88, /obj/item/storage/pouch/general/medium, /obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/hangar/security) "tml" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "tmv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/north) "tnS" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering/atmos) "toa" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/foyer) "toi" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/omega/offices) "ton" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/hangar/monorail) "tov" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/sigma/hangar) "toC" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "toG" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "toJ" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/southeast/datalab) "toL" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "tpz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "tpA" = ( /obj/structure/machinery/power/apc/high{ @@ -59029,9 +43016,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "tpF" = ( /obj/structure/flora/jungle/vines/heavy, @@ -59041,23 +43026,16 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/laundry) "tpM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) "tpW" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "tqb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -59071,44 +43049,29 @@ /obj/structure/surface/table/almayer, /obj/item/tool/surgery/scalpel, /obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "trV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay) "tsb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/sigma/north) "tsA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/omega/control) "tta" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "ttB" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "ttJ" = ( /obj/structure/machinery/power/apc/high{ @@ -59116,31 +43079,23 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "ttK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "tuo" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "tuu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "tuB" = ( /obj/structure/surface/rack, @@ -59151,9 +43106,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "tvf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -59165,10 +43118,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/control) "tvO" = ( /obj/structure/machinery/power/apc/high{ @@ -59176,16 +43126,11 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner/east, /area/corsat/gamma/medbay/morgue) "tvW" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/south/offices) "twm" = ( /obj/structure/bed/chair{ @@ -59194,9 +43139,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "twS" = ( /obj/structure/flora/jungle/vines/heavy, @@ -59212,61 +43155,40 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "txB" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "txK" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/southeast/datalab) "tyb" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/robotics) "tyv" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/corsat/omega/hangar) "tzz" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/gamma/biodome/complex) "tzF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "tzX" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar/security) "tzY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -59282,56 +43204,37 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "tBh" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/hangar/monorail) "tBG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/id) "tBI" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/robot_module/surgeon, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/robotics) "tBT" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "tCi" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, /obj/item/tool/weldingtool, /obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/gamma/engineering) "tCn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "tCs" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/north) "tCu" = ( /turf/closed/shuttle/ert{ @@ -59339,44 +43242,30 @@ }, /area/prison/hangar_storage/research/shuttle) "tCH" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/theta/biodome/hydroeast) "tCI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/sigma/dorms) "tDc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "tDf" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/southeast, /area/corsat/gamma/residential) "tDt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "tDK" = ( /obj/structure/flora/jungle/vines/light_1, @@ -59387,42 +43276,28 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) "tEm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "tEJ" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/omega/hallways) "tFp" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/corsat/green/west, /area/corsat/gamma/hallwaysouth) "tFs" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "tFv" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "tFG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -59437,18 +43312,13 @@ "tGr" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "tGG" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay/lobby) "tGV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -59465,19 +43335,13 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/gamma/biodome/complex) "tHR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/sigma/south) "tIk" = ( /turf/closed/wall/resin/membrane, @@ -59489,16 +43353,11 @@ name = "Security Hub"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/security) "tIP" = ( /obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "tJf" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -59506,17 +43365,13 @@ /area/corsat/theta/biodome) "tJs" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datalab) "tJv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "tJA" = ( /obj/structure/closet/crate/trashcart, @@ -59524,80 +43379,53 @@ /area/corsat/gamma/sigmaremote) "tJY" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydroeast) "tKy" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/sigmaremote) "tKI" = ( /obj/structure/machinery/smartfridge, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/theta/biodome/complex) "tLa" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/hangar) "tLr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/telecomm) "tLz" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "tLF" = ( -/turf/open/floor/corsat{ - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner, /area/corsat/omega/hallways) "tLR" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "tMq" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/airlock/control) "tMG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "tMX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "tNp" = ( /obj/structure/flora/jungle/vines/light_1, @@ -59611,59 +43439,39 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/theta/airlock/west/id) "tNS" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "tNT" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "tOa" = ( /obj/structure/bed, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "tOo" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/theta/biodome/complex) "tOL" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/largecrate/goat, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/corsat/gamma/sigmaremote) "tOT" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "tPk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -59675,16 +43483,11 @@ name = "Security Shutters" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "tPT" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "tPV" = ( /turf/closed/wall/biodome, @@ -59702,39 +43505,27 @@ "tQs" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/south/offices) "tRA" = ( /obj/structure/barricade/handrail{ dir = 8 }, /obj/structure/barricade/handrail, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "tRC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) "tRM" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/south) "tSo" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/residential) "tSu" = ( /obj/structure/surface/table/almayer, @@ -59742,31 +43533,21 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) "tSD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) "tSE" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "tSG" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/datamaint) "tTd" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -59776,10 +43557,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/residential) "tTv" = ( /obj/structure/pipes/vents/pump{ @@ -59788,75 +43566,49 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "tTE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/residential/west) "tUa" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/sigma/south/offices) "tUG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "tUO" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/gamma/hallwaysouth) "tUR" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north) "tVr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "tVu" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/hangar) "tVx" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/biodome/toxins) "tVW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "tWu" = ( /obj/structure/surface/table/woodentable/fancy, @@ -59866,17 +43618,11 @@ pixel_y = 1; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "tWw" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/canteen) "tWy" = ( /obj/structure/pipes/vents/pump{ @@ -59886,10 +43632,7 @@ /area/corsat/gamma/biodome) "tWM" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/omega/offices) "tXa" = ( /obj/structure/surface/table/reinforced, @@ -59913,54 +43656,38 @@ pixel_x = -2; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/airlocknorth) "tXo" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/hangar/office) "tXq" = ( /obj/structure/cargo_container/trijent/left, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "tXB" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/checkpoint) "tYg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/canteen) "tYF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/administration) "tYX" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin10" - }, +/turf/open/shuttle/dropship/light_grey_top, /area/prison/hangar_storage/research/shuttle) "tZp" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "tZD" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -59969,125 +43696,86 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) "tZN" = ( /obj/structure/bed/chair/comfy, /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/gamma/hangar/monorail) "tZT" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "uag" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/sigma/south/complex) "ubq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "ubv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "ubJ" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential/east) "ubW" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "ucj" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "uco" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/sigma/south/offices) "ucu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "ucx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "ucW" = ( /obj/structure/surface/table/reinforced, /obj/item/explosive/grenade/flashbang/cluster, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "uez" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/gamma/hangar/arrivals) "ueK" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "ufN" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -60096,24 +43784,17 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "ufT" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "ugy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/control) "ugB" = ( /turf/closed/shuttle/ert{ @@ -60122,40 +43803,27 @@ /area/prison/hangar_storage/research/shuttle) "ugC" = ( /obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "ugK" = ( /obj/structure/surface/table/reinforced, /obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "ugM" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/gamma/cargo) "uhx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/cargo) "uip" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) "uiW" = ( /obj/structure/closet/wardrobe/science_white, @@ -60163,26 +43831,17 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "uji" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/hangar/security) "ujX" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/robotics) "ukb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -60190,16 +43849,11 @@ /area/corsat/theta/biodome) "ukf" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/corsat/inaccessible) "ukz" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/monorail/control) "ukQ" = ( /obj/structure/surface/rack, @@ -60207,9 +43861,7 @@ /obj/item/tool/weldingtool, /obj/item/clothing/head/welding, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) "ukV" = ( /obj/structure/window_frame/corsat, @@ -60219,46 +43871,29 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome) "ulb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/north, /area/corsat/gamma/residential/west) "uli" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) "ulq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner/east, /area/corsat/sigma/south) "ulr" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/canteen) "ulC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "umo" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/south/security) "umz" = ( /obj/structure/machinery/light{ @@ -60267,44 +43902,26 @@ /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "umU" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) "unf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/southeast/generator) "unL" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "unN" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/northwest, /area/corsat/omega/hallways) "uoh" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/northwest, /area/corsat/gamma/medbay/morgue) "uov" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -60315,9 +43932,7 @@ "uoQ" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "upe" = ( /obj/structure/machinery/computer/cameras{ @@ -60340,9 +43955,7 @@ "upA" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "upN" = ( /obj/structure/machinery/power/apc/hyper{ @@ -60350,57 +43963,41 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "uqb" = ( /obj/structure/cargo_container/trijent/right, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "uqx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/west) "urx" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "urN" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 4; id_tag = "oxy_corsat_out" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "urX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security/cells) "usz" = ( /obj/effect/landmark/corpsespawner/pmc, /obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/airlocknorth) "usD" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/checkpoint) "usK" = ( /obj/structure/flora/jungle/alienplant1, @@ -60419,77 +44016,51 @@ "usW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/checkpoint) "utp" = ( /obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/complex) "utS" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/complex) "utV" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/security) "uua" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/airlock/south) "uuu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "uuP" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "uuQ" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) "uuT" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/corsat/gamma/medbay/morgue) "uvd" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/security) "uvy" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -60499,35 +44070,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/south) "uwo" = ( /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/gamma/airlock/north) "uww" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "uwy" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/foyer) "uwC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_15, /area/corsat/sigma/biodome) "uwP" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -60536,23 +44096,15 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "uxj" = ( /obj/structure/machinery/door/window/eastright, /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "uya" = ( -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/researcher) "uyd" = ( /obj/structure/flora/pottedplant, @@ -60560,10 +44112,7 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/southeast/dataoffice) "uyg" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -60572,27 +44121,18 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "uyw" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/engineering) "uyT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential) "uzl" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/monorail) "uzS" = ( /obj/structure/platform{ @@ -60603,20 +44143,14 @@ dir = 8; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/hallwaysouth) "uzW" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/complex) "uAc" = ( /obj/structure/surface/table/reinforced, @@ -60624,22 +44158,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "uAl" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/gamma/airlock/control) "uAN" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "uAW" = ( /obj/structure/surface/table/almayer, @@ -60649,18 +44175,14 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/control) "uBj" = ( /obj/structure/window/framed/corsat/hull/research, /turf/open/floor/plating, /area/corsat/omega/hallways) "uBk" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/showers) "uBH" = ( /obj/structure/flora/jungle/vines/light_1, @@ -60673,18 +44195,13 @@ /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) "uCU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/west, /area/corsat/gamma/residential/west) "uDh" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) "uDW" = ( /obj/structure/pipes/vents/pump{ @@ -60696,9 +44213,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/maint) "uEC" = ( /obj/structure/flora/pottedplant{ @@ -60708,90 +44223,61 @@ /area/corsat/gamma/residential/researcher) "uEZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) "uFg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/north, /area/corsat/omega/hallways) "uFr" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/east, /area/corsat/gamma/medbay/lobby) "uFy" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/omega/hallways) "uFJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/residential/west) "uFM" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar) "uGv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/hydrowest) "uGC" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "uGI" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/sigma/south/complex) "uGQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/airlock/control) "uHb" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hallways) "uHh" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner, /area/corsat/gamma/biodome/complex) "uHm" = ( /turf/closed/shuttle/ert{ @@ -60811,9 +44297,7 @@ /area/corsat/gamma/biodome) "uIM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "uIX" = ( /obj/structure/barricade/handrail{ @@ -60822,59 +44306,39 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "uIZ" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/corsat/theta/biodome/complex) "uJq" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/robotics) "uJr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast) "uJI" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south) "uJV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/bar) "uKg" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/west, /area/corsat/omega/offices) "uKy" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay/surgery) "uKE" = ( /obj/structure/machinery/light{ @@ -60882,37 +44346,25 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/box/beakers, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) "uKV" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/hangar/cargo) "uLN" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/dorms) "uLV" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "uMf" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "uMo" = ( /obj/structure/bed/chair/office/light{ @@ -60922,10 +44374,7 @@ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/theta/airlock/west) "uMq" = ( /obj/structure/surface/table/almayer, @@ -60933,52 +44382,36 @@ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "uMD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/east) "uMV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "uNW" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/theta/airlock/control) "uOe" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "uOi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "uOz" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering/atmos) "uPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -60991,10 +44424,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "uPR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -61004,63 +44434,41 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "uQt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "uQz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/hallwaysouth) "uQT" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/residential) "uRd" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/corsat/omega/hallways) "uRp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/gamma/residential/east) "uRs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/south/security) "uRw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/theta/airlock/control) "uRA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61075,24 +44483,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hydroponics) "uRQ" = ( /obj/structure/surface/table/reinforced, /obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "uRU" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/southeast/datamaint) "uSc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61101,15 +44502,10 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "uSi" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/hangar/monorail) "uSk" = ( /obj/structure/window/framed/corsat/security, @@ -61122,24 +44518,16 @@ /area/corsat/sigma/hangar/security) "uSy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, +/turf/open/floor/corsat/arrow_north, /area/corsat/gamma/cargo) "uSz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "uSM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/south) "uST" = ( /obj/structure/surface/table/woodentable, @@ -61156,17 +44544,13 @@ "uTg" = ( /obj/structure/safe, /obj/item/device/locator, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/sigmaremote) "uTq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) "uTU" = ( /obj/structure/closet/crate/trashcart, @@ -61193,49 +44577,35 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "uVe" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "uVo" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south) "uVD" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/control) "uVH" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar/checkpoint) "uWJ" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/rnr/arcade) "uXa" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/theta/airlock/control) "uXk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -61246,9 +44616,7 @@ /area/corsat/theta/biodome) "uXw" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/dorms) "uXL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -61258,10 +44626,7 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "uXU" = ( /obj/structure/pipes/vents/pump{ @@ -61273,83 +44638,56 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "uYe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "uYq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/canteen) "uYR" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/security) "uZh" = ( /obj/structure/surface/table/almayer, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "uZA" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "uZL" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "uZM" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/airlock/control) "vad" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/residential/researcher) "vaj" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "val" = ( /obj/structure/machinery/optable, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/complex) "var" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -61357,10 +44695,7 @@ /area/corsat/theta/biodome) "vaw" = ( /obj/structure/machinery/computer/WYresearch, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) "vaI" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -61369,43 +44704,28 @@ "vaK" = ( /obj/structure/surface/rack, /obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "vaY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "vbv" = ( /obj/structure/surface/rack, /obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "vbB" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "vbW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "vcs" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/theta/biodome/complex) "vcx" = ( /obj/structure/flora/jungle/vines/light_1, @@ -61423,9 +44743,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "vda" = ( /obj/structure/window/framed/corsat, @@ -61434,10 +44752,7 @@ "vdt" = ( /obj/structure/machinery/light, /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/sigma/south/complex) "vfb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -61445,30 +44760,21 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "vfd" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/rnr) "vff" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "vfK" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "vfR" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -61480,54 +44786,36 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "vgn" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "vgV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/hallwaysouth) "vhg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/cargo) "vht" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/airlock/south/id) "vhz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/researcher) "vhN" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/southeast, /area/corsat/gamma/residential/west) "vhS" = ( /obj/structure/machinery/power/apc/high{ @@ -61535,16 +44823,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/checkpoint) "vhU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/theta/airlock/control) "vhZ" = ( /obj/structure/flora/jungle/vines/light_1, @@ -61555,15 +44837,10 @@ icon_state = "processor"; name = "Processor Unit" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) "vii" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/corsat/omega/offices) "vim" = ( /obj/structure/machinery/light/small{ @@ -61573,130 +44850,87 @@ /area/corsat/omega/maint) "viq" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/arrivals) "viL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/control) "vjb" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/hangar/office) "vjd" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hangar/office) "vjA" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "vjF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/researcher) "vjW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/southeast/datalab) "vka" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/monorail/control) "vkq" = ( /obj/structure/computer3frame/server{ icon_state = "4" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/sigmaremote) "vks" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "vkt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "vkO" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "vkW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "vlv" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "vme" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar/security) "vmh" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) "vmm" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/complex) "vmJ" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) "vnc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61708,61 +44942,40 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) "vnH" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "voj" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "voo" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south) "voF" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering) "voM" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "vpl" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/hangar) "vpT" = ( /obj/structure/closet/crate/science, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/cargo) "vqA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/hallwaysouth) "vqF" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -61772,164 +44985,108 @@ req_one_access = null }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "vqP" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/gamma/engineering) "vrx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/complex) "vrA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "vrC" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/toxins) "vsg" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "vsn" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "vsu" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) "vsN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/corsat/gamma/hallwaysouth) "vsP" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "vth" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder, /obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "vtk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/biodome/virology) "vtq" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast) "vuq" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "vur" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/hangar/arrivals) "vuu" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) "vwu" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "vxb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Baths" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "vxj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "vxk" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "vxv" = ( /obj/structure/pipes/standard/cap/hidden{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) "vyk" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/north, /area/corsat/gamma/medbay/morgue) "vyA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/southeast/datalab) "vyB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -61938,19 +45095,13 @@ /turf/open/mars, /area/corsat/sigma/biodome) "vyH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/control) "vyR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/gamma/foyer) "vyY" = ( /obj/structure/machinery/light{ @@ -61959,9 +45110,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) "vza" = ( /obj/structure/flora/jungle/vines/heavy, @@ -61971,24 +45120,18 @@ /area/corsat/theta/biodome) "vzc" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south) "vzp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey, /area/corsat/sigma/southeast/dataoffice) "vzv" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "vzA" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -61997,9 +45140,7 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/id) "vzK" = ( /obj/effect/landmark/monkey_spawn, @@ -62007,15 +45148,11 @@ /area/corsat/theta/biodome) "vzV" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/complex) "vAm" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/east) "vAP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -62027,91 +45164,60 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "vBb" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/containment) "vBS" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen, /area/corsat/sigma/hangar/arrivals) "vCj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) "vCo" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southwest, /area/corsat/gamma/medbay/morgue) "vCr" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/biodome/hydroeast) "vCx" = ( /turf/closed/wall/resin/membrane, /area/corsat/omega/biodome) "vCR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/north, /area/corsat/gamma/medbay/lobby) "vCS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome) "vDg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/east) "vDt" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "vDu" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "vDF" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "vEs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/south) "vEK" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -62120,43 +45226,29 @@ /area/corsat/theta/biodome) "vEM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/southeast/datamaint) "vEY" = ( /obj/structure/bed, /obj/item/bedsheet, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "vFf" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "vFk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/hangar) "vFm" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) "vFo" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/biodome/virology) "vFJ" = ( /obj/structure/pipes/vents/pump{ @@ -62168,58 +45260,38 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/gamma/security/cells) "vGn" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "vGz" = ( /obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "vGW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/omega/hallways) "vHf" = ( /obj/structure/noticeboard{ pixel_y = 30 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "vHx" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "vHM" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "vHP" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) "vHQ" = ( /obj/structure/bed/chair{ @@ -62228,23 +45300,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "vHU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/sigma/lavatory) "vIb" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "vJr" = ( /obj/structure/bed/chair/office/light{ @@ -62253,93 +45318,64 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "vJz" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/monkeycubes/farwacubes, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) "vKa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/hangar/cargo) "vKH" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) "vKN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/lobby) "vLb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "vLO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) "vLQ" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "vLX" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "vLZ" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/omega/offices) "vMA" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential) "vMI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/freezer) "vMM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -62349,49 +45385,34 @@ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "vMP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "vMV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/residential/east) "vMX" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "vNe" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar) "vND" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/south) "vOh" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -62399,32 +45420,22 @@ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "vOw" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "vOK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydrowest) "vPM" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar) "vQg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -62434,65 +45445,43 @@ "vQs" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/monorail/control) "vQt" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/east, /area/corsat/sigma/south) "vQA" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) "vRc" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/rnr) "vSa" = ( /obj/structure/surface/table/almayer, /obj/item/device/taperecorder, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "vSE" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay) "vSF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "vTr" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "vTF" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "vTT" = ( /obj/structure/pipes/vents/pump{ @@ -62505,10 +45494,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "vUn" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -62516,65 +45502,45 @@ name = "Omega Dome Control"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/control) "vVc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "vVA" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydrowest) "vVI" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north) "vVJ" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/southeast, /area/corsat/gamma/medbay) "vVO" = ( /obj/item/stool, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "vVU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/south) "vWM" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/gamma/residential/researcher) "vXy" = ( /obj/structure/platform{ @@ -62582,10 +45548,7 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/south) "vYe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -62601,23 +45564,17 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/foyer) "vYY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering) "vZD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/monorail) "vZJ" = ( /obj/effect/alien/weeds/node, @@ -62629,17 +45586,13 @@ name = "ID Checkpoint"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/id) "waF" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "wbf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -62651,20 +45604,14 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/sigma/dorms) "wcn" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "wcw" = ( /obj/structure/pipes/vents/pump{ @@ -62676,71 +45623,51 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/corsat/sigma/biodome) "wda" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/security) "wdn" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/chemistry) "wea" = ( /obj/structure/surface/rack, /obj/item/storage/photo_album, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) "wet" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, +/turf/open/floor/almayer/research/containment/floor2/west, /area/corsat/sigma/south/complex) "wfn" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/residential/west) "wfD" = ( /obj/structure/tunnel{ id = "hole0" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "wfK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "wfL" = ( /obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) "wgY" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -62758,24 +45685,16 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "wie" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) "wim" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/hangar/office) "wiF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -62792,24 +45711,17 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/hallways) "wjb" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/corsat/gamma/hangar/monorail/railcart) "wji" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "wjn" = ( /obj/structure/surface/table/reinforced, @@ -62837,19 +45749,13 @@ /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/south) "wjw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/sigma/hangar/office) "wkm" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -62857,31 +45763,20 @@ /area/corsat/theta/biodome) "wkr" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/hangar/security) "wkG" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/sigma/south/security) "wlc" = ( /obj/vehicle/train/cargo/engine{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/corsat/gamma/sigmaremote) "wlj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/hangar/office) "wlt" = ( /obj/structure/machinery/light{ @@ -62889,10 +45784,7 @@ }, /obj/structure/surface/rack, /obj/item/device/reagent_scanner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/biodome/complex) "wlY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -62911,32 +45803,21 @@ "wmj" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/complex) "wmr" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "wmE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "wmU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/hangar) "wmV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -62946,32 +45827,23 @@ name = "\improper Hypersleep Chamber"; req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) "wnB" = ( /obj/structure/showcase{ icon_state = "processor"; name = "Processor Unit" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "wnJ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/white/north, /area/corsat/gamma/residential/east) "wnL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/omega/hangar) "wnO" = ( /obj/structure/bed/chair{ @@ -62987,29 +45859,20 @@ dir = 4 }, /obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "woz" = ( /obj/structure/safe, /obj/item/device/yautja_teleporter, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/sigmaremote) "wpk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "wpA" = ( /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hangar/arrivals) "wpO" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -63018,9 +45881,7 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "wpV" = ( /obj/structure/flora/jungle/planttop1, @@ -63030,42 +45891,28 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/hangar/security) "wqn" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/complex) "wqr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar) "wqN" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/hangar/security) "wqP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/hangar) "wrd" = ( /obj/structure/surface/rack, /obj/item/xeno_restraints, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) "wrC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -63076,28 +45923,19 @@ /area/corsat/theta/biodome) "wrR" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "wrX" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/south/security) "wsn" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "wss" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/id) "wsJ" = ( /turf/open/floor/corsat, @@ -63107,18 +45945,14 @@ name = "Construction Yard"; req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "wtu" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/engineering) "wtM" = ( /obj/structure/machinery/light, @@ -63133,21 +45967,14 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south/id) "wui" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/hallwaysouth) "wuC" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/sterileplate, /area/corsat/gamma/kitchen) "wuK" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -63159,9 +45986,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar) "wuS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -63173,10 +45998,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "wvG" = ( /obj/effect/decal/cleanable/blood/oil, @@ -63192,10 +46014,7 @@ dir = 6 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "wvZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -63205,40 +46024,28 @@ /area/corsat/sigma/dorms) "wwi" = ( /obj/structure/machinery/computer/area_atmos/area, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering/atmos) "wwB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, +/turf/open/gm/river/desert/shallow/pool, /area/corsat/gamma/residential/showers) "wwC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "wwE" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/corsat/sigma/cargo) "wwQ" = ( /obj/structure/largecrate/chick, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/freezer) "wwT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -63257,107 +46064,72 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/id) "wya" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, +/turf/open/floor/corsat/arrow_south, /area/corsat/gamma/hangar) "wye" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/north, /area/corsat/sigma/north) "wyz" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/hangar) "wyL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/security) "wzK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) "wAk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "wAz" = ( /obj/structure/tunnel{ id = "hole1" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "wAF" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) "wBc" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/security) "wBf" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "wBk" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) "wBJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/foyer) "wBK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "wBP" = ( -/turf/open/floor/corsat{ - icon_state = "greencorner" - }, +/turf/open/floor/corsat/greencorner, /area/corsat/gamma/medbay/morgue) "wCI" = ( /obj/structure/flora/jungle/vines/light_1, @@ -63368,10 +46140,7 @@ /area/corsat/theta/biodome) "wCJ" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/north) "wDi" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -63380,10 +46149,7 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "wDw" = ( /obj/structure/platform{ @@ -63391,16 +46157,10 @@ dir = 4; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential) "wDC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar) "wEd" = ( /obj/structure/surface/table/reinforced, @@ -63408,22 +46168,14 @@ /obj/item/tool/surgery/scalpel, /obj/item/tool/surgery/hemostat, /obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/west, /area/corsat/omega/complex) "wEn" = ( /obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "wFJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "wFO" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -63434,31 +46186,23 @@ /area/corsat/gamma/biodome) "wFU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "wGb" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "wGm" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "wGr" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "wGT" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -63467,9 +46211,7 @@ req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "wGW" = ( /obj/structure/surface/table/almayer, @@ -63477,18 +46219,13 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/hangar/flightcontrol) "wGZ" = ( /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "wHN" = ( /obj/item/weapon/gun/flamer, @@ -63497,99 +46234,66 @@ name = "specimen control cabinet"; req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/airlocknorth) "wHQ" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/hangar/security) "wIk" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/robotics) "wIr" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) "wIu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "wIy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential) "wII" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "wIT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/omega/security) "wIY" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "wIZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/sofa/vert/white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) "wJp" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/wrench, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/sigmaremote) "wJq" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/checkpoint) "wJz" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south/engineering) "wJA" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -63598,86 +46302,59 @@ name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/hangar/arrivals) "wJM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south) "wJU" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/hangar) "wKb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "wKf" = ( /obj/structure/prop/mech/parts/durand_right_arm, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/arrow_west, /area/corsat/sigma/south/robotics) "wKh" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) "wKD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/south/engineering) "wKF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/airlock/control) "wKK" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo/lobby) "wKL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/airlock/south) "wKT" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) "wLS" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -63686,9 +46363,7 @@ name = "Omega Cargo Room"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/cargo) "wMg" = ( /obj/structure/platform{ @@ -63697,18 +46372,13 @@ /obj/item/stack/sheet/metal{ pixel_x = 3 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/theta/biodome/complex) "wOt" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/gamma/administration) "wOQ" = ( /obj/structure/surface/table/woodentable, @@ -63719,59 +46389,38 @@ "wOX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/sigma/southeast/datalab) "wPq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr) "wPz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/theta/biodome/complex) "wQd" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purple" - }, +/turf/open/floor/corsat/purple/southwest, /area/corsat/omega/complex) "wQG" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south) "wQJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "wQZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/bodybags, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/corsat/green/northeast, /area/corsat/gamma/medbay/morgue) "wRH" = ( /obj/vehicle/train/cargo/trolley, /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/sigma/cargo) "wSb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -63785,78 +46434,54 @@ /area/corsat/theta/biodome) "wSq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "wSz" = ( /obj/structure/cargo_container/trijent/mid, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "wSM" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) "wTp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "wTZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/virology) "wUc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/omega/complex) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/restraint/handcuffs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/security) "wUx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "wUE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/checkpoint) "wVb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder, /obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/complex) "wVz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -63869,27 +46494,19 @@ /obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar/security) "wVG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "wWr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "wWW" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -63906,9 +46523,7 @@ id = "SigmaEastID"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/east/id) "wXD" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -63917,9 +46532,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/toxins) "wXE" = ( /obj/structure/machinery/light/small{ @@ -63931,38 +46544,25 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "wYj" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/gamma/security) "wYt" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "wYA" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/security) "wYD" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay/morgue) "wYP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/south/robotics) "wZg" = ( /obj/structure/cryofeed/right{ @@ -63978,9 +46578,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) "wZC" = ( /obj/structure/platform{ @@ -63988,26 +46586,17 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential) "xap" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south) "xaF" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "xaQ" = ( /obj/structure/machinery/vending/coffee, @@ -64015,10 +46604,7 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, +/turf/open/floor/corsat/white/northeast, /area/corsat/gamma/hallwaysouth) "xbu" = ( /obj/structure/platform{ @@ -64026,10 +46612,7 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/hallwaysouth) "xbW" = ( /obj/structure/safe, @@ -64038,18 +46621,14 @@ /area/corsat/gamma/administration) "xbX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering) "xcG" = ( /obj/structure/machinery/chem_dispenser{ req_access_txt = "100" }, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "xdi" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -64062,33 +46641,22 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/hangar) "xeO" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/rnr) "xeV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/security) "xfe" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) "xfC" = ( /obj/structure/barricade/handrail{ @@ -64103,70 +46671,46 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "xfT" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/hangar) "xha" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/ice, /area/corsat/gamma/biodome) "xhd" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/engineering) "xhx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/hydroeast) "xhA" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, +/turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/dorms) "xiy" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/sigma/southeast/dataoffice) "xiV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/biodome/toxins) "xiW" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/north) "xjw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/sigma/south/security) "xjX" = ( /obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "xkn" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/hangar/monorail) "xkt" = ( /obj/structure/surface/table/almayer, @@ -64174,29 +46718,20 @@ /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/toxins) "xkB" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) "xkE" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "xkH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/green/north, /area/corsat/gamma/medbay/morgue) "xld" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -64204,24 +46739,15 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/sigma/south) "xlg" = ( /obj/structure/surface/table/almayer, /obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) "xlv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/omega/hallways) "xlF" = ( /obj/structure/machinery/light{ @@ -64237,33 +46763,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "xlR" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/sigma/south/complex) "xlU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/south) "xmg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "xmh" = ( /obj/structure/pipes/vents/pump{ @@ -64273,43 +46789,30 @@ /area/corsat/sigma/cafe) "xmC" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/east, /area/corsat/sigma/south/offices) "xmF" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/corsat/omega/cargo) "xmV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "xnk" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) "xnU" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/camera/autoname{ network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) "xoj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -64318,9 +46821,7 @@ /turf/open/mars, /area/corsat/sigma/biodome) "xoq" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/residential) "xoy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -64332,63 +46833,41 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/checkpoint) "xoK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/southeast/generator) "xoV" = ( /obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "xpk" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) "xqh" = ( /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/omega/complex) "xqz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/gamma/biodome/complex) "xsm" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/sigma/hangar/office) "xsE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) "xsU" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -64410,36 +46889,25 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/library) "xtR" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/corsat/green/east, /area/corsat/gamma/medbay/morgue) "xtW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "xuo" = ( /obj/item/cell/crap, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/residential/researcher) "xuF" = ( /obj/structure/closet/crate/science{ @@ -64448,23 +46916,16 @@ opened = 1 }, /obj/item/organ/brain, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/complex) "xuI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/north, /area/corsat/gamma/medbay/morgue) "xvj" = ( /obj/structure/surface/table/reinforced, /obj/item/form_printer, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) "xvB" = ( /obj/structure/surface/table/almayer, @@ -64479,76 +46940,49 @@ pixel_x = -4; pixel_y = 4 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast/datalab) "xvE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "xvG" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "xvV" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/airlocknorth/id) "xwg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/omega/control) "xxF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/east, /area/corsat/gamma/hangar) "xxO" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) "xxZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/omega/hangar/office) "xys" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, +/turf/open/floor/corsat/bluegreycorner, /area/corsat/gamma/hangar/flightcontrol) "xzg" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) "xzI" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "xzU" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) "xzW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -64558,21 +46992,14 @@ /area/corsat/sigma/biodome) "xzX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/theta/airlock/control) "xAo" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner, /area/corsat/gamma/foyer) "xBa" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) "xBb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -64583,30 +47010,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "xBs" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/theta/airlock/west) "xBz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/west, /area/corsat/gamma/residential) "xBA" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/hangar) "xBK" = ( /obj/effect/landmark/corpsespawner/scientist, @@ -64616,10 +47032,7 @@ "xCe" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/gamma/airlock/south/id) "xCy" = ( /obj/structure/bed/nest, @@ -64627,10 +47040,7 @@ /area/corsat/gamma/biodome) "xCE" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/gamma/administration) "xDC" = ( /obj/structure/window/framed/corsat/security, @@ -64641,51 +47051,34 @@ /turf/open/floor/plating, /area/corsat/sigma/airlock/east/id) "xEP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/researcher) "xER" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) "xEW" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/hangar/office) "xEX" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/monorail) "xFf" = ( /obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) "xFk" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/gamma/hallwaysouth) "xFK" = ( /obj/structure/window/framed/corsat/research, @@ -64701,18 +47094,13 @@ /turf/open/mars, /area/corsat/sigma/biodome) "xGd" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/hydroeast) "xGI" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "xHd" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -64721,51 +47109,31 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/cargo) "xHk" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/rnr/arcade) "xHm" = ( -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/corsat/white, /area/corsat/sigma/dorms) "xHy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay) "xHM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "xHN" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/virology) "xHV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/hallwaysouth) "xIJ" = ( /obj/structure/cargo_container/wy/mid, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) "xJc" = ( /obj/structure/barricade/handrail{ @@ -64775,9 +47143,7 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) "xJB" = ( /obj/structure/machinery/power/apc/hyper{ @@ -64785,30 +47151,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/airlocknorth/id) "xJH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/dorms) "xJI" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "xKr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/hangar/monorail) "xKu" = ( /turf/closed/wall/r_wall/biodome, @@ -64829,63 +47184,43 @@ dir = 4; network = list("omega") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/airlocknorth/id) "xKV" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/maint) "xLg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) "xLv" = ( /obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/south) "xMg" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/hangar/arrivals) "xMi" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/hangar/monorail/control) "xMy" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/complex) "xMA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/southeast/dataoffice) "xMJ" = ( /turf/closed/wall/biodome, @@ -64906,70 +47241,47 @@ /turf/open/ice, /area/corsat/gamma/biodome) "xNw" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/hydrowest) "xNL" = ( /obj/structure/surface/table/almayer, /obj/item/evidencebag, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/security) "xNR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, +/turf/open/floor/corsat/arrow_east, /area/corsat/sigma/southeast/datalab) "xOJ" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northwest, /area/corsat/gamma/hangar/arrivals) "xPi" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/west/id) "xPw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/sigma/dorms) "xPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) "xPF" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/omega/offices) "xQb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, +/turf/open/floor/corsat/officesquares, /area/corsat/sigma/south/offices) "xQk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -64986,17 +47298,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/residential/researcher) "xQS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "xRb" = ( /obj/structure/platform, @@ -65004,10 +47312,7 @@ dir = 4; layer = 2 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, +/turf/open/floor/corsat/white/southeast, /area/corsat/gamma/hallwaysouth) "xRq" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -65017,9 +47322,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) "xSj" = ( /obj/structure/window/framed/corsat/hull/security, @@ -65031,58 +47334,37 @@ health = 80 }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/biodome/toxins) "xSL" = ( -/turf/open/floor/corsat{ - icon_state = "purplecorner" - }, +/turf/open/floor/corsat/purplecorner, /area/corsat/sigma/south) "xSO" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/gamma/hangar/arrivals) "xST" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/hangar) "xTU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/control) "xUd" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +/turf/open/floor/corsat/whitetancorner, /area/corsat/gamma/residential/west) "xUj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/omega/hallways) "xUr" = ( /obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) "xVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -65098,24 +47380,17 @@ /obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) "xWE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/corsat/sigma/biodome) "xWH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/gamma/cargo) "xWS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -65125,58 +47400,39 @@ /area/corsat/sigma/dorms) "xXp" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hangar) "xYI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Auditorium" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "xYP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "xYY" = ( /obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) "xZc" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast) "xZn" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar) "xZB" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/south/complex) "yaq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/researcher) "yau" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -65184,40 +47440,26 @@ /area/corsat/gamma/biodome) "yaD" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/gamma/sigmaremote) "yaN" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/gamma/hangar/security) "ybl" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/gamma/hangar) "ybq" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/robotics) "ybv" = ( /obj/structure/platform{ dir = 4; layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) "ybJ" = ( /obj/structure/platform{ @@ -65225,53 +47467,36 @@ dir = 8; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/north) "ybP" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, +/turf/open/floor/corsat/greenwhite/west, /area/corsat/gamma/medbay/surgery) "ybQ" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/monorail) "ycd" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/northwest, /area/corsat/gamma/rnr/bar) "ycg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/sigma/hangar/monorail) "ydU" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/south/robotics) "ydX" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential) "ydY" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -65279,36 +47504,24 @@ name = "Maintainance"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) "ydZ" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/hydrowest) "yea" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar/monorail) "yeL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) "yeW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/masks, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "yfh" = ( /turf/open/floor/corsat, @@ -65317,9 +47530,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "yfH" = ( /obj/structure/flora/jungle/vines/light_1, @@ -65336,32 +47547,22 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north) "yga" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) "ygx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/complex) "ygy" = ( /obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/theta/airlock/control) "ygF" = ( /obj/structure/machinery/computer/cameras{ @@ -65377,68 +47578,44 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential) "yhc" = ( /obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "yhw" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/south/engineering) "yhy" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/researcher) "yhC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/cargo) "yhI" = ( /obj/structure/surface/rack, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "yhK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "yio" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) "yji" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) "yjw" = ( /obj/structure/fence, @@ -65449,10 +47626,7 @@ /area/corsat/gamma/biodome) "yki" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "ykJ" = ( /obj/structure/machinery/power/reactor/colony{ @@ -65463,21 +47637,14 @@ d2 = 4; icon_state = "0-4" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) "ykO" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/hangar/security) "yla" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/omega/control) "yle" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -65488,16 +47655,10 @@ /area/space) "ylS" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) "ymj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/gamma/hangar/security) (1,1,1) = {" @@ -76237,7 +58398,7 @@ crG aoc bBH bCv -bAt +bAq aoE bBO bUn diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm index 75c0cdfdc87b..b06b31f2b6a9 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm @@ -1,14 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red"; dir = 4 }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "b" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -18,84 +14,54 @@ /turf/open/floor/plating, /area/corsat/gamma/hallwaysouth) "d" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner"; - dir = 4 - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/airlock/control) "e" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "f" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "g" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 4 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "h" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 4 }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "i" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "j" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "k" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "l" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/airlock/control) "m" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "GammaWestD"; - name = "Gamma Dome Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Gamma Dome Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "n" = ( /obj/structure/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "yellow"; dir = 4 }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) (1,1,1) = {" diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm index aa4d3cceae85..e0867f3ef176 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm @@ -4,30 +4,22 @@ /turf/open/floor/plating, /area/corsat/gamma/airlock/north) "b" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north) "c" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/north) "d" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/north) "e" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north) "f" = ( /obj/structure/window/framed/corsat/security, @@ -44,24 +36,16 @@ "h" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "GammaNorthS"; - name = "Gamma North Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Gamma North Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "i" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "j" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "k" = ( /obj/structure/sign/safety/airlock{ diff --git a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm index efd261dd7f83..dd4ef5005c61 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm @@ -11,66 +11,45 @@ name = "Gamma Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "d" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "e" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "f" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/omega/checkpoint) "g" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "h" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "i" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "j" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "k" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "l" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "m" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ @@ -78,14 +57,11 @@ name = "Gamma Emergency Access"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "n" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 1; id = "OmegaAccessC"; name = "Security Shutters" }, @@ -97,10 +73,7 @@ /area/corsat/omega/checkpoint) "p" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "q" = ( /obj/structure/surface/table/reinforced, @@ -108,41 +81,27 @@ id = "delta_gamma"; name = "Gamma Emergency Access"; pixel_x = -5; - unacidable = 1; use_power = 0 }, /obj/structure/machinery/door_control{ id = "delta_gamma2"; name = "Checkpoint Gamma"; pixel_x = 5; - pixel_y = 0; - unacidable = 1; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "r" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ - dir = 2; - icon_state = "cameras"; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "s" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 5 - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/checkpoint) "t" = ( /obj/structure/window/framed/corsat/security, @@ -154,59 +113,38 @@ /turf/open/floor/plating, /area/corsat/omega/checkpoint) "u" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 9 - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/checkpoint) "v" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "w" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "x" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 5 - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/checkpoint) "y" = ( /obj/structure/lattice, /turf/template_noop, /area/template_noop) "z" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "A" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "B" = ( /obj/structure/bed/chair/comfy/black{ icon_state = "comfychair"; dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "C" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/checkpoint) "D" = ( /obj/structure/surface/table/reinforced, @@ -215,7 +153,6 @@ req_access_txt = "3" }, /obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 4; name = "Identification Desk" }, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -224,27 +161,18 @@ name = "Security Shutters" }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "E" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) "F" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "G" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "H" = ( /obj/structure/surface/table/reinforced, @@ -253,7 +181,6 @@ req_access_txt = "3" }, /obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 4; name = "Identification Desk" }, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -261,15 +188,11 @@ id = "OmegaAccessC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "I" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "J" = ( /obj/structure/surface/table/reinforced, @@ -277,82 +200,55 @@ id = "delta_omega"; name = "Checkpoint Omega"; pixel_x = -5; - unacidable = 1; use_power = 0 }, /obj/structure/machinery/door_control{ id = "delta_theta"; name = "Theta Emergency Access"; pixel_x = 5; - unacidable = 1; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "K" = ( /obj/structure/machinery/computer/cameras{ dir = 1; - icon_state = "cameras"; network = list("omega") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "L" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 6 - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/checkpoint) "M" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 10 - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/checkpoint) "N" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "O" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "P" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 6 - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/checkpoint) "Q" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/checkpoint) "R" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/omega/checkpoint) "S" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 4 }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "T" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ @@ -360,9 +256,7 @@ name = "Omega Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "U" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ @@ -370,9 +264,7 @@ name = "Theta Emergency Access"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "V" = ( /turf/closed/wall/r_wall/biodome, diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm index c98c46b72e8d..8e41c82f5145 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm @@ -4,20 +4,14 @@ /turf/open/floor/plating, /area/corsat/gamma/hallwaysouth) "b" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "c" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "d" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "e" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -25,69 +19,43 @@ "f" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "ThetaNorthD"; - name = "Theta Dome Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Theta Dome Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "g" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "h" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "i" = ( /obj/structure/machinery/light{ - icon_state = "tube1"; dir = 1 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "j" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner"; - dir = 1 - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/control) "k" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "l" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "m" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner"; - dir = 4 - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/theta/airlock/control) "n" = ( /obj/structure/machinery/light{ - icon_state = "tube1"; dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "yellow"; - dir = 1 - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) (1,1,1) = {" diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm index 61645f5a5b3b..e9b6a3557645 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm @@ -13,62 +13,44 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "e" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "f" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "g" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/east) "h" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 + dir = 4 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) "i" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 4 }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "j" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/east) "k" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "ThetaEastW"; - name = "Theta East Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Theta East Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "l" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "m" = ( /obj/structure/sign/safety/airlock{ @@ -79,7 +61,6 @@ "n" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 1; id = "ThetaIDEC2"; name = "Security Shutters" }, diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm index c3d3c93b9285..47d72b283e14 100644 --- a/maps/map_files/CORSAT/standalone/sigma_ice.dmm +++ b/maps/map_files/CORSAT/standalone/sigma_ice.dmm @@ -51,9 +51,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/control) "ba" = ( /obj/structure/window/reinforced{ @@ -74,10 +72,7 @@ req_access_txt = "106"; use_power = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "bo" = ( /obj/structure/surface/rack, @@ -86,9 +81,7 @@ /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "bp" = ( /obj/structure/surface/rack, @@ -97,9 +90,7 @@ /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bs" = ( /turf/open/auto_turf/snow/layer0, @@ -118,10 +109,7 @@ /turf/open/ice, /area/corsat/sigma/biodome/scrapyard) "bN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "bT" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -139,26 +127,17 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ damage_cap = 4000; dir = 1; - locked = 0; name = "\improper Emergency Access"; req_access_txt = "100"; req_one_access = list() }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/biodome/ice) "cs" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/gunrange) "cv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/gunrange) "cA" = ( /turf/open/auto_turf/snow/layer4, @@ -175,20 +154,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "db" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/inaccessible) "dd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "dn" = ( /obj/structure/window/framed/corsat/hull, @@ -202,10 +175,7 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/airlock/control) "dr" = ( /turf/open/floor/corsat, @@ -243,10 +213,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "ee" = ( /obj/effect/decal/warning_stripes{ @@ -261,10 +228,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "ev" = ( /obj/structure/window/framed/corsat, @@ -279,10 +243,7 @@ "eV" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "fc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -305,10 +266,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/ice) "fC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -332,8 +290,7 @@ /area/corsat/sigma/biodome/gunrange) "gi" = ( /obj/structure/machinery/floodlight{ - name = "Floodlight"; - unacidable = 0 + name = "Floodlight" }, /turf/open/auto_turf/snow/layer0, /area/corsat/sigma/biodome/ice) @@ -341,9 +298,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "gr" = ( /obj/structure/bed/nest, @@ -392,35 +347,23 @@ /turf/open/auto_turf/snow/layer3, /area/corsat/sigma/biodome/ice) "hC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/ice) "hH" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "hQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "hR" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ damage_cap = 4000; - locked = 0; name = "\improper Emergency Access"; req_access_txt = "100"; req_one_access = list() }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "hU" = ( /obj/structure/barricade/wooden, @@ -438,20 +381,14 @@ /area/corsat/sigma/biodome/scrapyard) "ih" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "io" = ( /obj/effect/alien/weeds/node, /turf/open/ice, /area/corsat/sigma/biodome/ice) "iy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/scrapyard) "iK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -462,10 +399,7 @@ "iL" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "iO" = ( /obj/effect/decal/warning_stripes{ @@ -487,31 +421,20 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "jv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/ice) "jy" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "jL" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "jT" = ( /obj/structure/pipes/vents/pump, @@ -521,29 +444,20 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "kl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "km" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/scrapyard) "kr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -558,10 +472,7 @@ /area/corsat/sigma/biodome/ice) "kv" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "kH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -631,16 +542,11 @@ name = "Sigma Dome Control"; req_one_access = list(102) }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "lY" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "mm" = ( /obj/structure/pipes/vents/pump{ @@ -658,42 +564,28 @@ /obj/structure/surface/rack, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "mX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "mY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/ice) "nb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/airlock/control) "ng" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/smg/mp5, /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "nk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -728,10 +620,7 @@ /turf/open/auto_turf/snow/layer3, /area/corsat/sigma/biodome/scrapyard) "nZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/scrapyard) "oa" = ( /obj/structure/window/framed/corsat, @@ -793,10 +682,7 @@ /area/corsat/sigma/biodome/ice) "pC" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "pP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -811,9 +697,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "qs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -840,9 +724,7 @@ /obj/structure/machinery/door/window/northright{ name = "Firing Lane" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/gunrange) "rP" = ( /obj/structure/surface/table/almayer, @@ -859,9 +741,7 @@ name = "Firing Lane" }, /obj/structure/surface/table/almayer, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/gunrange) "rW" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -876,23 +756,14 @@ /turf/open/ice, /area/corsat/sigma/biodome/scrapyard) "sp" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/corsat/sigma/biodome/gunrange) "ss" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/corsat/sigma/biodome/gunrange) "sx" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "sA" = ( /obj/structure/machinery/constructable_frame, @@ -912,18 +783,14 @@ /area/corsat/sigma/biodome/gunrange) "tc" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "tg" = ( /turf/open/auto_turf/snow/layer4, /area/corsat/sigma/biodome/ice) "tm" = ( /obj/structure/machinery/floodlight{ - name = "Floodlight"; - unacidable = 0 + name = "Floodlight" }, /turf/open/auto_turf/snow/layer2, /area/corsat/sigma/biodome/ice) @@ -933,20 +800,14 @@ name = "Waste Tank Control" }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/airlock/control) "tM" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "tZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -958,18 +819,13 @@ /obj/structure/pipes/binary/pump/on{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/airlock/control) "uc" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "uk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -984,9 +840,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "ur" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -997,10 +851,7 @@ "us" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/airlock/control) "uy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1012,10 +863,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "uO" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -1024,10 +872,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/ice) "ve" = ( /obj/effect/decal/warning_stripes{ @@ -1043,10 +888,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "vO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1056,10 +898,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "vU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1082,19 +921,13 @@ /area/corsat/sigma/biodome/ice) "ww" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "wD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "xk" = ( /obj/structure/cargo_container/watatsumi/rightmid, @@ -1105,18 +938,13 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "xK" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "xM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -1129,49 +957,35 @@ name = "Access Shutter" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "xQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "xX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/airlock/control) "xZ" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "yh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "yj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = list() }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "yl" = ( /obj/structure/machinery/light{ @@ -1180,10 +994,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "yn" = ( /obj/structure/window/reinforced, @@ -1200,10 +1011,7 @@ /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "yr" = ( /obj/structure/window/reinforced, @@ -1218,22 +1026,14 @@ "yy" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/airlock/control) "yC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/airlock/control) "yG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/airlock/control) "yJ" = ( /obj/structure/surface/rack, @@ -1241,9 +1041,7 @@ /obj/item/tank/air, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "yL" = ( /obj/structure/machinery/constructable_frame{ @@ -1263,9 +1061,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "yT" = ( /obj/item/broken_device, @@ -1275,9 +1071,7 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "yX" = ( /turf/template_noop, @@ -1289,44 +1083,31 @@ "zf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "zh" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/airlock/control) "zo" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "zJ" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "zQ" = ( /obj/structure/pipes/trinary/mixer{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/airlock/control) "zT" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -1340,9 +1121,7 @@ /turf/open/floor/corsat, /area/corsat/inaccessible) "Aj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Al" = ( /obj/structure/machinery/door_control{ @@ -1350,17 +1129,13 @@ name = "Access Shutters"; pixel_y = 24 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Ao" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "As" = ( /obj/item/tool/shovel, @@ -1370,19 +1145,13 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "AJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/scrapyard) "AS" = ( /obj/structure/largecrate/supply/ammo/m39{ @@ -1390,16 +1159,12 @@ name = "\improper M39 magazine case (x8)"; supplies = list(/obj/item/ammo_magazine/smg/m39=3) }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "AX" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Ba" = ( /obj/effect/decal/warning_stripes{ @@ -1424,9 +1189,7 @@ dir = 1 }, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Bn" = ( /obj/structure/surface/rack, @@ -1437,18 +1200,13 @@ dir = 1 }, /obj/item/weapon/gun/flamer/M240T, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Bv" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "BM" = ( /turf/closed/wall/r_wall/biodome, @@ -1459,22 +1217,14 @@ name = "Mixed Air Control" }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "BV" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/ice) "Cd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "Ce" = ( /obj/structure/largecrate/supply/ammo/pistol{ @@ -1482,25 +1232,19 @@ name = "sidearm ammunition case (x14)"; supplies = list(/obj/item/ammo_magazine/revolver=6,/obj/item/ammo_magazine/pistol=8) }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Ch" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/incendiary, /obj/item/explosive/grenade/incendiary, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "CA" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/smokebomb, /obj/item/explosive/grenade/smokebomb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "CI" = ( /obj/structure/window/reinforced, @@ -1522,9 +1266,7 @@ }, /obj/item/weapon/gun/pistol/m4a3, /obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Db" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1533,18 +1275,13 @@ req_access_txt = "106"; use_power = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "Dd" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive, /obj/item/explosive/grenade/high_explosive, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Df" = ( /obj/structure/machinery/light{ @@ -1556,9 +1293,7 @@ /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/training, /obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Dh" = ( /obj/structure/target/syndicate, @@ -1570,25 +1305,17 @@ desc = "A rectangular steel crate containing firing targets."; name = "target crate" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Dp" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/airlock/control) "Ds" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, /obj/item/clothing/shoes/snow, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "Dw" = ( /turf/closed/wall/r_wall/biodome, @@ -1598,22 +1325,14 @@ /turf/open/auto_turf/snow/layer1, /area/corsat/sigma/biodome/ice) "DI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "DO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/biodome/ice) "DT" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/airlock/control) "DX" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -1622,10 +1341,7 @@ req_one_access = list(102) }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "Eg" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ @@ -1634,10 +1350,7 @@ /obj/structure/surface/table/almayer{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/airlock/control) "Ev" = ( /obj/structure/largecrate/supply/ammo/m41a{ @@ -1645,24 +1358,18 @@ name = "\improper M41A magazine case (x10)"; supplies = list(/obj/item/ammo_magazine/rifle=10) }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "EJ" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "EM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/airlock/control) "ES" = ( /turf/open/auto_turf/snow/layer2, @@ -1680,32 +1387,22 @@ /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/flashbang, /obj/item/explosive/grenade/flashbang, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Fu" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Fx" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "Fy" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/airlock/control) "Fz" = ( /obj/structure/surface/rack, @@ -1717,18 +1414,14 @@ }, /obj/item/weapon/gun/revolver/m44, /obj/item/weapon/gun/revolver/m44, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "FC" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/ice, /area/corsat/sigma/biodome/scrapyard) "FI" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Gd" = ( /obj/structure/surface/rack, @@ -1739,17 +1432,13 @@ name = "Weapon Rack" }, /obj/item/ammo_magazine/flamer_tank, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Gf" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/frag, /obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Gj" = ( /obj/structure/target, @@ -1762,9 +1451,7 @@ desc = "A rectangular steel crate containing firing targets."; name = "target crate" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "GJ" = ( /obj/structure/machinery/power/apc/high{ @@ -1773,43 +1460,28 @@ start_charge = 0 }, /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "GK" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "GO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "GW" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "GZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "Hh" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/airlock/control) "HB" = ( /obj/effect/decal/warning_stripes{ @@ -1829,10 +1501,7 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "HV" = ( /obj/structure/window/framed/corsat, @@ -1843,37 +1512,26 @@ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "Ib" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Ih" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "Im" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "Iw" = ( /turf/open/auto_turf/snow/layer2, @@ -1881,10 +1539,7 @@ "ID" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/sigma/airlock/control) "IJ" = ( /obj/structure/fence, @@ -1892,18 +1547,12 @@ /area/corsat/sigma/biodome/gunrange) "IR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "IV" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Jm" = ( /obj/effect/decal/warning_stripes{ @@ -1922,24 +1571,15 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Jy" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "JQ" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/airlock/control) "JT" = ( /obj/structure/window/framed/corsat, @@ -1959,71 +1599,49 @@ /area/corsat/sigma/biodome/ice) "Kj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/ice) "Kq" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/ice) "Kr" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "Ku" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Kw" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "KA" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, /obj/item/tool/shovel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "KF" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "KN" = ( /turf/open/auto_turf/snow/layer4, /area/corsat/sigma/biodome/gunrange) "KR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "KU" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "KV" = ( /obj/effect/decal/warning_stripes{ @@ -2038,47 +1656,32 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Lg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Lr" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/airlock/control) "Ly" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "LC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "LF" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "LH" = ( /obj/effect/decal/warning_stripes{ @@ -2096,10 +1699,7 @@ "Ms" = ( /obj/structure/fence, /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "MA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2107,29 +1707,19 @@ }, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "ME" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Nk" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/airlock/control) "Nm" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Nn" = ( /obj/structure/barricade/wooden{ @@ -2141,32 +1731,20 @@ "Ns" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "NA" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "NI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "NQ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/airlock/control) "NS" = ( /obj/effect/decal/warning_stripes{ @@ -2185,24 +1763,17 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Om" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Ot" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/airlock/control) "OI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -2213,25 +1784,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "OK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "OR" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "OT" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -2246,10 +1811,7 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "Po" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -2260,10 +1822,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/ice) "PE" = ( /obj/structure/window/reinforced, @@ -2273,10 +1832,7 @@ /turf/open/ice, /area/corsat/sigma/biodome/ice) "PH" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/airlock/control) "PM" = ( /obj/structure/surface/table/almayer, @@ -2286,9 +1842,7 @@ pixel_x = -5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "PY" = ( /obj/item/cell/crap, @@ -2297,50 +1851,35 @@ "PZ" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Qd" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Qf" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "Qi" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/airlock/control) "Qm" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "Qr" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "Qx" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "QD" = ( /obj/structure/cargo_container/grant/left, @@ -2354,10 +1893,7 @@ "QU" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/sigma/airlock/control) "Rb" = ( /obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -2368,34 +1904,24 @@ dir = 8 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "Ri" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/airlock/control) "Rn" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/control) "Rp" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "Rq" = ( /obj/structure/surface/table/reinforced, @@ -2403,10 +1929,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/sigma/airlock/control) "Rw" = ( /obj/structure/bed/chair{ @@ -2428,16 +1951,12 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "RD" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "RI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -2450,21 +1969,14 @@ /area/corsat/sigma/biodome/scrapyard) "RQ" = ( /obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "RR" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/sigma/airlock/control) "Sg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/ice) "Sh" = ( /obj/structure/cargo_container/arious/leftmid, @@ -2476,28 +1988,17 @@ /area/corsat/sigma/biodome/ice) "Sm" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "Ss" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "Su" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "Sy" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "SK" = ( /obj/structure/fence, @@ -2507,21 +2008,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "To" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "Tq" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/airlock/control) "Tw" = ( /obj/effect/decal/warning_stripes{ @@ -2550,15 +2043,10 @@ /turf/open/auto_turf/snow/layer1, /area/corsat/sigma/biodome/scrapyard) "TC" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/airlock/control) "TP" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "TX" = ( /turf/open/ice, @@ -2571,16 +2059,11 @@ /obj/item/clothing/shoes/snow, /obj/item/clothing/shoes/snow, /obj/item/clothing/shoes/snow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Uu" = ( /obj/structure/closet/athletic_mixed, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "Uv" = ( /obj/structure/bed/chair, @@ -2599,9 +2082,7 @@ /area/template_noop) "UX" = ( /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "Vh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -2610,9 +2091,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Vi" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -2620,9 +2099,7 @@ name = "ID Checkpoint"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Vq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2636,9 +2113,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "Vz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2648,13 +2123,9 @@ /area/corsat/sigma/biodome/ice) "VF" = ( /obj/structure/machinery/floodlight{ - name = "Floodlight"; - unacidable = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + name = "Floodlight" }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "VJ" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -2665,33 +2136,23 @@ /area/corsat/inaccessible) "VL" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "VR" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Wd" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft, /obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Wj" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Wk" = ( /turf/closed/wall/strata_ice, @@ -2710,37 +2171,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "WL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/airlock/control) "WW" = ( /obj/item/folder/black_random, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "WY" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Xm" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Xv" = ( /turf/open/floor/corsat, @@ -2764,24 +2213,18 @@ /area/corsat/sigma/biodome/ice) "XG" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "XK" = ( /obj/structure/machinery/light, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "XM" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "XN" = ( /obj/structure/pipes/vents/pump, @@ -2795,9 +2238,7 @@ id = "SigmaWestW"; name = "Sigma West Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "Yn" = ( /obj/effect/decal/warning_stripes{ @@ -2813,18 +2254,14 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Yu" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "SigmaWestE"; name = "Sigma West Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "YC" = ( /obj/effect/landmark/survivor_spawner, @@ -2854,19 +2291,14 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "YW" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "YX" = ( /obj/effect/decal/cleanable/dirt, @@ -2874,10 +2306,7 @@ /area/corsat/emergency_access) "Zd" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "Zf" = ( /turf/open/auto_turf/snow/layer2, @@ -2891,9 +2320,7 @@ /area/corsat/sigma/biodome/ice) "Zy" = ( /obj/structure/sign/safety/airlock, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/airlock/control) "ZB" = ( /obj/effect/decal/warning_stripes{ @@ -2908,33 +2335,22 @@ /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "ZD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/airlock/control) "ZH" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/airlock/control) "ZL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/gunrange) (1,1,1) = {" diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 3c4125023686..2e078646853d 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -29,25 +29,17 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aaf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aag" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aah" = ( /obj/structure/closet/fireaxecabinet, @@ -70,14 +62,10 @@ /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) "aam" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/exterior/valley/valley_wilderness) "aan" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/exterior/valley/valley_wilderness) "aao" = ( /obj/effect/blocker/toxic_water, @@ -85,14 +73,10 @@ /area/desert_dam/exterior/river/riverside_east) "aap" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aaq" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/interior/caves/east_caves) "aar" = ( /turf/open/gm/river/desert/deep, @@ -111,37 +95,29 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_two) "aaw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_wilderness) "aax" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/interior/caves/east_caves) "aay" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/east_caves) "aaz" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/interior/caves/east_caves) "aaA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "aaB" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -156,24 +132,17 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aaD" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "aaE" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aaF" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "aaG" = ( /obj/structure/prop/brazier, @@ -181,38 +150,28 @@ /area/desert_dam/interior/caves/temple) "aaH" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "aaI" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "aaJ" = ( /obj/structure/largecrate/random/case/small, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "aaK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aaL" = ( /obj/item/trash/c_tube, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "aaM" = ( /obj/structure/disposalpipe/segment{ @@ -225,22 +184,16 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aaN" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "aaO" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "aaP" = ( /obj/structure/floodgate, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "aaQ" = ( /obj/structure/floodgate, @@ -251,9 +204,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_labs) "aaT" = ( /obj/structure/desertdam/decals/road_edge{ @@ -263,9 +214,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "aaU" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_labs) "aaV" = ( /obj/structure/desertdam/decals/road_edge{ @@ -276,51 +225,38 @@ /area/desert_dam/exterior/valley/valley_labs) "aaW" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) "aaX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/valley_labs) "aaY" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) "aaZ" = ( /obj/structure/platform, /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "aba" = ( /obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) "abb" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "abc" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_labs) "abd" = ( /obj/effect/decal/cleanable/dirt, @@ -345,41 +281,29 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "abh" = ( /obj/item/trash/USCMtray, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_labs) "abi" = ( /obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "abj" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) "abk" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/exterior/valley/south_valley_dam) "abl" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/valley/valley_labs) "abm" = ( /obj/structure/floodgate{ @@ -402,9 +326,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_labs) "abq" = ( /obj/structure/powerloader_wreckage, @@ -412,23 +334,14 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "abr" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/valley/valley_labs) "abs" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/valley/valley_labs) -"abt" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/rock) "abu" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "abv" = ( /obj/effect/decal/cleanable/dirt, @@ -442,16 +355,11 @@ /area/desert_dam/exterior/valley/valley_labs) "abx" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aby" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_labs) "abz" = ( /obj/effect/decal/cleanable/blood/oil, @@ -469,18 +377,14 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/valley/valley_labs) "abC" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_north) "abD" = ( /obj/structure/disposalpipe/segment{ @@ -501,57 +405,40 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_central_north) "abH" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "abI" = ( /obj/structure/surface/table, /obj/item/tool/shovel/spade, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "abJ" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "abK" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/valley/valley_labs) "abL" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "abM" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/valley/valley_labs) "abN" = ( /obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) "abO" = ( /obj/structure/surface/rack, /turf/open/floor/prison, @@ -560,29 +447,21 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/valley/valley_labs) "abQ" = ( /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) "abR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "abS" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_two) "abT" = ( /obj/structure/machinery/conveyor{ @@ -602,15 +481,11 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_labs) "abW" = ( /obj/structure/fence, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/east_caves) "abX" = ( /obj/structure/largecrate/random, @@ -630,23 +505,17 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "aca" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/valley/valley_labs) "acb" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/valley/valley_labs) "acc" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /obj/structure/largecrate/random, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_labs) "acd" = ( /obj/structure/floodgate{ @@ -656,18 +525,13 @@ /area/desert_dam/exterior/river/riverside_east) "acf" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "acg" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_labs) "ach" = ( /turf/open/gm/river/desert/deep, @@ -684,15 +548,11 @@ dir = 10 }, /obj/structure/largecrate/random/secure, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_labs) "ack" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_east) "acn" = ( /obj/item/trash/eat, @@ -713,9 +573,7 @@ /area/desert_dam/exterior/valley/valley_labs) "acq" = ( /obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acr" = ( /obj/effect/blocker/toxic_water, @@ -744,9 +602,7 @@ /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "acx" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/south_tunnel) "acy" = ( /obj/item/trash/plate, @@ -766,38 +622,28 @@ dir = 4 }, /obj/item/trash/used_stasis_bag, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "acC" = ( /obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "acD" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/valley/valley_labs) "acE" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 8; pixel_x = 24 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acF" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 4; pixel_x = -24 }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acG" = ( /obj/structure/disposalpipe/segment{ @@ -807,75 +653,51 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "acH" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/valley/valley_labs) "acI" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_one) "acJ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) "acK" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "acL" = ( /obj/item/trash/burger, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_labs) "acM" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /obj/structure/largecrate/random/barrel/green, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "acN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acO" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acP" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/valley/valley_labs) "acQ" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "acR" = ( /obj/effect/decal/warning_stripes{ @@ -884,26 +706,18 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "acS" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acU" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "acV" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acW" = ( /obj/structure/largecrate/random/secure, @@ -913,20 +727,14 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/valley/valley_labs) "acY" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/east_caves) "acZ" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "ada" = ( /turf/open/desert/rock, @@ -936,9 +744,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_one) "adc" = ( /obj/structure/fence, @@ -949,28 +755,19 @@ /area/desert_dam/interior/caves/east_caves) "ade" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_labs) "adf" = ( /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_two) "adg" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_wilderness) "adh" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "adi" = ( /obj/structure/surface/table, @@ -982,10 +779,7 @@ /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) "adj" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_labs) "adk" = ( /obj/structure/surface/table, @@ -1009,10 +803,7 @@ /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) "adn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "ado" = ( /obj/structure/machinery/vending/coffee, @@ -1020,39 +811,29 @@ /area/desert_dam/exterior/valley/south_valley_dam) "adp" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "adq" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) "adr" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "ads" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/interior/dam_interior/south_tunnel) "adt" = ( /turf/closed/wall/wood, /area/desert_dam/building/bar/backroom) "adu" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "adv" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -1069,9 +850,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) "ady" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/exterior/valley/valley_wilderness) "adz" = ( /obj/structure/closet/secure_closet/bar, @@ -1084,9 +863,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "adC" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -1100,21 +877,15 @@ /area/desert_dam/interior/caves/east_caves) "adE" = ( /obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/valley/valley_labs) "adF" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/north_tunnel) "adG" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "adH" = ( /obj/structure/platform, @@ -1127,18 +898,13 @@ "adJ" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_east) "adK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/exterior/valley/valley_crashsite) "adL" = ( /obj/effect/blocker/toxic_water, @@ -1148,9 +914,7 @@ "adM" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_east) "adN" = ( /obj/structure/platform, @@ -1161,25 +925,19 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_labs) "adP" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_east) "adQ" = ( /obj/structure/platform_decoration{ dir = 1 }, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "adR" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -1190,15 +948,11 @@ dir = 8 }, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_east) "adU" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_east) "adV" = ( /obj/structure/platform, @@ -1206,21 +960,15 @@ /area/desert_dam/exterior/valley/valley_labs) "adW" = ( /obj/structure/platform, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/valley/valley_labs) "adX" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "adY" = ( /obj/structure/platform, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/valley/valley_labs) "adZ" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -1232,9 +980,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_wilderness) "aeb" = ( /obj/effect/blocker/toxic_water, @@ -1260,25 +1006,18 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aeg" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) "aeh" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) "aei" = ( /obj/structure/machinery/power/apc{ @@ -1286,10 +1025,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/control_room) "aej" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -1329,27 +1065,16 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aep" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_labs) "aeq" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_labs) "aer" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aes" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aet" = ( /obj/structure/surface/table/reinforced, @@ -1357,31 +1082,19 @@ id = "dam_checkpoint_north"; name = "Checkpoint Lockdown" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aeu" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aev" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_labs) "aew" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_labs) "aex" = ( /obj/structure/window/reinforced/tinted{ @@ -1394,33 +1107,24 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aey" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "aez" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) "aeA" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_labs) "aeB" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aeC" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -1441,18 +1145,14 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aeF" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) "aeG" = ( /obj/structure/platform_decoration{ dir = 1 }, /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aeH" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -1464,31 +1164,23 @@ "aeI" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_east) "aeJ" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "aeK" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_east) "aeL" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/north_tunnel) "aeM" = ( /obj/effect/decal/sand_overlay/sand1, @@ -1497,28 +1189,20 @@ "aeN" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_east) "aeO" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aeP" = ( -/turf/open/floor/filtrationside{ - dir = 5 - }, +/turf/open/floor/filtrationside/northeast, /area/desert_dam/exterior/valley/valley_mining) "aeQ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aeR" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -1539,9 +1223,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_wilderness) "aeV" = ( /obj/effect/blocker/toxic_water, @@ -1550,10 +1232,7 @@ "aeW" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/landing/console) "aeX" = ( /obj/structure/surface/table/reinforced, @@ -1561,23 +1240,18 @@ name = "Security Cameras - Research"; network = list("chigusa_3") }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aeY" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "aeZ" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "afa" = ( /obj/structure/window/reinforced/tinted{ @@ -1586,18 +1260,14 @@ /obj/structure/machinery/computer/communications, /obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "afb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) "afc" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/hanger) "afd" = ( /turf/open/desert/rock, @@ -1607,27 +1277,17 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aff" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/interior/dam_interior/atmos_storage) "afg" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "afh" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/hanger) "afi" = ( /turf/open/desert/rock, @@ -1640,49 +1300,35 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river_mouth/southern) "afk" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/western_dam_cave) "afl" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_wilderness) "afm" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_wilderness) "afn" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/western_dam_cave) "afo" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_RND) "afp" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "afq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "afr" = ( /obj/structure/window/reinforced/tinted{ @@ -1694,9 +1340,7 @@ /obj/item/tool/pen/blue, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "afs" = ( /obj/structure/window/reinforced/tinted{ @@ -1707,9 +1351,7 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aft" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -1724,42 +1366,30 @@ /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/central_tunnel) "afv" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/workshop) "afw" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) "afx" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/valley/valley_labs) "afy" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) "afz" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/dam_interior/workshop) "afA" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "afB" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "afC" = ( /obj/structure/platform{ @@ -1778,36 +1408,22 @@ /area/desert_dam/interior/dam_interior/south_tunnel) "afF" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "afG" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_containment) "afH" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "afI" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/interior/lab_northeast/east_lab_containment) "afJ" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/desert_dam/interior/lab_northeast/east_lab_containment) "afK" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/lab_northeast/east_lab_containment) "afL" = ( /obj/structure/platform{ @@ -1820,26 +1436,19 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "afM" = ( -/turf/open/floor/filtrationside{ - dir = 4 - }, +/turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_mining) "afN" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) "afO" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, +/turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/dam_interior/central_tunnel) "afP" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_biology) "afQ" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/interior/lab_northeast/east_lab_containment) "afR" = ( /turf/open/desert/rock/deep/transition, @@ -1864,17 +1473,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_labs) "afV" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_labs) "afW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -1882,10 +1487,7 @@ name = "\improper Administration Control Room" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/administration/control_room) "afX" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -1894,18 +1496,13 @@ "afY" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "afZ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "aga" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -1925,9 +1522,7 @@ /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/south_tunnel) "age" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/central_tunnel) "agf" = ( /obj/structure/bed/chair/office/dark{ @@ -1939,25 +1534,19 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_wilderness) "agh" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_wilderness) "agi" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_wilderness) "agj" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -1997,9 +1586,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_northwest) "agq" = ( /obj/structure/prop/dam/boulder/boulder3, @@ -2025,9 +1612,7 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "agt" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/valley/valley_labs) "agu" = ( /obj/structure/disposalpipe/segment{ @@ -2057,9 +1642,7 @@ dir = 1 }, /obj/structure/prop/dam/truck/cargo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "agy" = ( /turf/open/asphalt/cement_sunbleached, @@ -2073,25 +1656,16 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "agB" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "agC" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "agD" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) "agE" = ( /obj/structure/platform, @@ -2101,9 +1675,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "agG" = ( /obj/structure/surface/table, @@ -2118,10 +1690,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) "agI" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "agJ" = ( /obj/structure/platform, @@ -2132,38 +1701,26 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "agK" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "agL" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/interior/lab_northeast/east_lab_containment) "agM" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/desert_dam/interior/lab_northeast/east_lab_containment) "agN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "agO" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/central_tunnel) "agP" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/hanger) "agQ" = ( /turf/open/floor/prison, @@ -2173,17 +1730,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "agS" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_northwest) "agT" = ( /obj/structure/desertdam/decals/road_edge, @@ -2217,18 +1770,14 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_labs) "agY" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "agZ" = ( /obj/structure/disposalpipe/segment, @@ -2249,9 +1798,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "ahb" = ( /obj/structure/window/framed/chigusa, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ahc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2261,16 +1808,10 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "ahd" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ahe" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ahf" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2287,14 +1828,10 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_north) "ahh" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "ahi" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -2314,9 +1851,7 @@ "ahk" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "ahl" = ( /obj/structure/desertdam/decals/road_stop{ @@ -2333,27 +1868,20 @@ /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/western_dam_cave) "aho" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/western_dam_cave) "ahp" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/west_tunnel) "ahq" = ( /obj/structure/desertdam/decals/road_stop, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "ahr" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ahs" = ( /obj/structure/barricade/wooden{ @@ -2372,9 +1900,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "ahu" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_northwest) "ahv" = ( /obj/structure/platform, @@ -2399,16 +1925,12 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "ahy" = ( -/turf/open/floor/filtrationside{ - dir = 10 - }, +/turf/open/floor/filtrationside/southwest, /area/desert_dam/exterior/valley/valley_mining) "ahz" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "ahA" = ( /turf/open/floor/filtrationside, @@ -2433,18 +1955,14 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "ahF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_labs) "ahG" = ( /obj/item/limb/foot/r_foot, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "ahH" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/valley/valley_labs) "ahI" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -2452,16 +1970,12 @@ dir = 4 }, /obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_north) "ahJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ahK" = ( /obj/effect/decal/cleanable/vomit, @@ -2506,9 +2020,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "ahQ" = ( -/turf/open/floor/filtrationside{ - dir = 6 - }, +/turf/open/floor/filtrationside/southeast, /area/desert_dam/exterior/valley/valley_mining) "ahR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2541,9 +2053,7 @@ /area/desert_dam/exterior/valley/valley_wilderness) "ahV" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/exterior/valley/valley_wilderness) "ahW" = ( /obj/structure/surface/table/reinforced, @@ -2551,35 +2061,25 @@ density = 0; pixel_y = 32 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ahX" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "ahY" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/valley/valley_labs) "ahZ" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_labs) "aia" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/north_tunnel) "aib" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/north_tunnel) "aic" = ( /obj/structure/flora/bush/desert{ @@ -2592,27 +2092,19 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_mining) "aie" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_mining) "aif" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_wilderness) "aig" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/workshop) "aih" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) "aii" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_labs) "aij" = ( /obj/structure/flora/bush/desert{ @@ -2635,14 +2127,10 @@ "ain" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aio" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_wilderness) "aip" = ( /obj/structure/flora/bush/desert/cactus{ @@ -2652,26 +2140,16 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aiq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "air" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_northwest) "ais" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_northwest) "ait" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_northwest) "aiu" = ( /obj/structure/platform{ @@ -2699,33 +2177,24 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "aiy" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aiz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aiA" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 1 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "aiB" = ( /obj/structure/machinery/light, @@ -2743,15 +2212,10 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) "aiE" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aiF" = ( /obj/structure/platform{ @@ -2761,9 +2225,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_north) "aiG" = ( /obj/structure/disposalpipe/segment{ @@ -2776,15 +2238,10 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) "aiH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "aiI" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aiJ" = ( /obj/effect/decal/sand_overlay/sand1, @@ -2797,21 +2254,14 @@ "aiK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aiL" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/caves/central_caves) "aiM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "aiN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -2821,22 +2271,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "aiP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_mining) "aiQ" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_labs) "aiR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2864,17 +2306,13 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aiU" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aiV" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2904,27 +2342,19 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "aiY" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_northwest) "aiZ" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) "aja" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_northwest) "ajb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "ajc" = ( /obj/effect/decal/cleanable/dirt, @@ -2941,23 +2371,17 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "aje" = ( /obj/structure/fence, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/east_caves) "ajf" = ( /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/interior/caves/east_caves) "ajg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_labs) "ajh" = ( /obj/structure/flora/bush/desert{ @@ -2973,16 +2397,10 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "ajj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ajk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ajl" = ( /obj/structure/window/framed/chigusa, @@ -2996,9 +2414,7 @@ "ajn" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ajo" = ( /obj/structure/desertdam/decals/road_edge{ @@ -3012,9 +2428,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ajq" = ( /obj/structure/desertdam/decals/road_edge, @@ -3037,26 +2451,18 @@ /area/desert_dam/interior/lab_northeast/east_lab_containment) "aju" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ajv" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ajw" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ajx" = ( /obj/structure/platform{ @@ -3078,17 +2484,13 @@ /area/desert_dam/interior/lab_northeast/east_lab_workshop) "ajA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_mining) "ajB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "ajC" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -3098,9 +2500,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "ajD" = ( /obj/structure/fence, -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/caves/east_caves) "ajE" = ( /obj/effect/decal/cleanable/dirt, @@ -3120,9 +2520,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "ajH" = ( /obj/structure/desertdam/decals/road_edge, @@ -3135,32 +2533,22 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/exterior/valley/valley_wilderness) "ajJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "ajK" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_labs) "ajL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_labs) "ajM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_labs) "ajN" = ( /obj/structure/platform{ @@ -3172,48 +2560,33 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ajO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ajP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ajQ" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ajR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "ajS" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "ajT" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "ajU" = ( /obj/effect/decal/cleanable/dirt, @@ -3226,39 +2599,26 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ajW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "ajX" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/exterior/valley/valley_wilderness) "ajY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ajZ" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aka" = ( /obj/structure/desertdam/decals/road_edge, @@ -3294,18 +2654,12 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "akf" = ( /obj/structure/surface/table/reinforced, /obj/structure/xenoautopsy, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) "akg" = ( /obj/structure/flora/bush/desert{ @@ -3314,29 +2668,21 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "akh" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aki" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "akj" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "akk" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akl" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akm" = ( /obj/structure/machinery/power/apc{ @@ -3344,26 +2690,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akn" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "ako" = ( /obj/structure/closet/radiation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akp" = ( /obj/structure/desertdam/decals/road_edge{ @@ -3373,18 +2710,13 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "akq" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_crashsite) "akr" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aks" = ( /obj/structure/desertdam/decals/road_edge{ @@ -3394,22 +2726,14 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "akt" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_labs) "aku" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "akv" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_labs) "akw" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -3417,9 +2741,7 @@ name = "\improper Containment Lock"; unacidable = 0 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/lab_northeast/east_lab_containment) "akx" = ( /obj/structure/platform{ @@ -3428,14 +2750,10 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aky" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_northwest) "akz" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_northwest) "akA" = ( /obj/effect/decal/cleanable/dirt, @@ -3460,55 +2778,35 @@ name = "\improper Containment Lock"; unacidable = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "akE" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/yellow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akF" = ( /obj/structure/surface/table, /obj/item/device/reagent_scanner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akG" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "akI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "akJ" = ( /obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "akK" = ( /turf/open/floor/prison, @@ -3528,18 +2826,13 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "akO" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "akP" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_mining) "akQ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "akR" = ( /obj/structure/platform, @@ -3549,23 +2842,17 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "akS" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "akT" = ( /obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "akU" = ( /obj/structure/prop/dam/truck/cargo, @@ -3581,94 +2868,61 @@ /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) "akW" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/desert_dam/interior/lab_northeast/east_lab_containment) "akX" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/pen, -/obj/item/XenoBio/Blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/obj/item/oldresearch/Blood, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_biology) "akY" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "akZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ala" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/west, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alb" = ( /obj/structure/surface/table/reinforced, /obj/structure/xenoautopsy/tank{ icon_state = "jarshelf_7" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alc" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ald" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ale" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alg" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alh" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_two) "ali" = ( /obj/effect/decal/warning_stripes{ @@ -3684,42 +2938,27 @@ /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) "alk" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/desert_dam/interior/lab_northeast/east_lab_containment) "all" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/interior/lab_northeast/east_lab_containment) "alm" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aln" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alo" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_northwest) "alp" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_northwest) "alr" = ( /obj/structure/stairs{ @@ -3729,168 +2968,105 @@ dir = 8; layer = 2.7 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "als" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alu" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alv" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/desert_dam/interior/lab_northeast/east_lab_containment) "alw" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/desert_dam/exterior/valley/valley_mining) "alx" = ( -/turf/open/floor/coagulation{ - icon_state = "5,8" - }, +/turf/open/floor/coagulation/icon5_8, /area/desert_dam/exterior/valley/valley_mining) "aly" = ( /obj/structure/closet/crate, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alz" = ( /obj/structure/surface/rack, /obj/item/device/multitool, /obj/item/storage/belt/utility/full, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alA" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/t_scanner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alB" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alC" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alD" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "alE" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/north, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "alF" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alG" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alH" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alI" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/west, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "alK" = ( /obj/structure/closet/secure_closet/scientist, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alL" = ( /obj/structure/closet/secure_closet/scientist, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alM" = ( /obj/structure/closet/secure_closet/scientist, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alN" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "alO" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "alP" = ( /obj/structure/window/framed/chigusa, @@ -3904,9 +3080,7 @@ dir = 4; layer = 2.7 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "alR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -3920,41 +3094,29 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "alT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "alU" = ( /obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "alV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "alW" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/exterior/valley/valley_wilderness) "alX" = ( /obj/effect/decal/warning_stripes{ @@ -3965,21 +3127,14 @@ name = "\improper Hangar Shutters" }, /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "alY" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, +/turf/open/floor/coagulation/icon4_8, /area/desert_dam/exterior/valley/valley_mining) "alZ" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ama" = ( /obj/structure/pipes/vents/pump{ @@ -3990,19 +3145,14 @@ "amb" = ( /obj/structure/surface/table/reinforced, /obj/item/alienjar, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amd" = ( /obj/structure/platform, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ame" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "amf" = ( /obj/structure/platform{ @@ -4016,14 +3166,10 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) "amh" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8-2" - }, +/turf/open/floor/coagulation/icon6_8_2, /area/desert_dam/exterior/valley/valley_mining) "ami" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, +/turf/open/floor/coagulation/icon7_8_2, /area/desert_dam/exterior/valley/valley_mining) "amj" = ( /obj/structure/platform_decoration{ @@ -4063,32 +3209,23 @@ /area/desert_dam/interior/lab_northeast/east_lab_containment) "amo" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amp" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Containment Lock"; unacidable = 0 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/desert_dam/interior/lab_northeast/east_lab_containment) "amr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ams" = ( /obj/effect/decal/warning_stripes{ @@ -4099,10 +3236,7 @@ name = "\improper Hangar Shutters" }, /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "amt" = ( /obj/structure/desertdam/decals/road_edge{ @@ -4116,56 +3250,36 @@ dir = 8 }, /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "amv" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "amw" = ( /turf/closed/wall/r_wall/bunker/floodgate, /area/desert_dam/exterior/river/riverside_central_north) "amx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "amy" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "amz" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "amA" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "amB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/north, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "amC" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "amD" = ( /obj/structure/machinery/light{ @@ -4177,46 +3291,31 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Isolation Chamber" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "amF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "amG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "amH" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amI" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amJ" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/interior/caves/east_caves) "amK" = ( /obj/structure/desertdam/decals/road_edge{ @@ -4231,10 +3330,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amM" = ( /obj/structure/desertdam/decals/road_edge{ @@ -4247,15 +3343,10 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) "amO" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/exterior/valley/valley_mining) "amP" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_northwest) "amQ" = ( /obj/structure/flora/bush/desert/cactus{ @@ -4279,38 +3370,27 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "amT" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/exterior/valley/valley_mining) "amU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amV" = ( /obj/structure/surface/table/reinforced, /obj/structure/xenoautopsy/tank{ icon_state = "jar_sample" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amW" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amX" = ( /obj/structure/machinery/power/apc{ @@ -4318,63 +3398,42 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) "amZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/desert_dam/interior/lab_northeast/east_lab_containment) "ana" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/desert_dam/interior/lab_northeast/east_lab_containment) "anb" = ( /obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "anc" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/interior/dam_interior/west_tunnel) "and" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "ane" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) "anf" = ( /obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hanger) "ang" = ( /obj/effect/decal/warning_stripes{ @@ -4388,57 +3447,39 @@ /area/desert_dam/exterior/valley/north_valley_dam) "anh" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) "ani" = ( /obj/structure/closet/crate/trashcart, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/north_valley_dam) "anj" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "ank" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "anl" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "anm" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "ann" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/west, /area/desert_dam/interior/lab_northeast/east_lab_biology) "ano" = ( -/turf/open/floor/coagulation{ - icon_state = "1,7" - }, +/turf/open/floor/coagulation/icon1_7, /area/desert_dam/building/water_treatment_two) "anp" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -4447,15 +3488,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/interior/dam_interior/west_tunnel) "anq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "anr" = ( /obj/structure/machinery/power/apc{ @@ -4463,10 +3499,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) "ans" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -4475,15 +3508,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) "ant" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "anu" = ( /obj/structure/flora/bush/desert{ @@ -4492,9 +3521,7 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "anv" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "anx" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -4502,16 +3529,10 @@ id = "dam_checkpoint_northeast"; name = "\improper Checkpoint Lock" }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "any" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "anz" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -4523,23 +3544,16 @@ name = "\improper Checkpoint Lock" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "anA" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/caves/east_caves) "anB" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/interior/caves/east_caves) "anC" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -4547,15 +3561,11 @@ id = "dam_checkpoint_northeast"; name = "\improper Checkpoint Lock" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "anD" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "anE" = ( /obj/structure/flora/grass/desert/lightgrass_6, @@ -4566,22 +3576,15 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) "anG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "anH" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "anI" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "anJ" = ( /obj/structure/sign/safety/restrictedarea, @@ -4594,23 +3597,14 @@ "anK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "anL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "anM" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "anN" = ( /obj/structure/surface/table, @@ -4618,19 +3612,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "anO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Containment" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) "anP" = ( /turf/closed/wall/r_wall/bunker, @@ -4641,23 +3629,17 @@ /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "anR" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "anS" = ( /obj/structure/surface/table/reinforced, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "anT" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "anU" = ( /obj/structure/surface/table/reinforced, @@ -4665,23 +3647,14 @@ name = "Security Cameras - Research"; network = list("chigusa_3") }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "anV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "anX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "anY" = ( /obj/structure/machinery/power/apc{ @@ -4689,50 +3662,33 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "anZ" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aoa" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aob" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aoc" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aod" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "aof" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -4743,10 +3699,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aoi" = ( /turf/closed/wall/hangar{ @@ -4763,25 +3716,19 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoq" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "aor" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aos" = ( /obj/structure/pipes/vents/pump{ @@ -4790,9 +3737,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aot" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4801,18 +3746,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aou" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aov" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4822,9 +3763,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aow" = ( /turf/closed/wall/r_wall/bunker, @@ -4835,9 +3774,7 @@ /area/desert_dam/exterior/valley/north_valley_dam) "aoy" = ( /obj/item/trash/hotdog, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "aoz" = ( /turf/open/desert/rock, @@ -4845,149 +3782,98 @@ "aoA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoB" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/interior/dam_interior/west_tunnel) "aoC" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoD" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "aoE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "aoF" = ( /obj/structure/surface/table/reinforced, /obj/item/ammo_magazine/shotgun/incendiary, /obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "aoH" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/interior/dam_interior/west_tunnel) "aoI" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Containment Lock"; unacidable = 0 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aoJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoM" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aoN" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aoO" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aoP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoQ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoS" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aoV" = ( /turf/open/asphalt/cement, @@ -4998,42 +3884,24 @@ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoX" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/hanger) "aoZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apa" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) "apb" = ( /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{ pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/desert_dam/interior/dam_interior/hanger) "apc" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -5043,39 +3911,25 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "ape" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/lab_northeast/east_lab_biology) "apf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apg" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) "aph" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "api" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apj" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "apk" = ( /obj/effect/landmark/monkey_spawn, @@ -5084,40 +3938,25 @@ "apl" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apm" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "apn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apo" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Security Armoury" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "app" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "apq" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) "apr" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -5128,30 +3967,19 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) "apt" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_northwest) "apu" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_northwest) "apv" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apw" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) "apx" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -5160,15 +3988,10 @@ name = "\improper Checkpoint Lock"; unacidable = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "apy" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/interior/lab_northeast/east_lab_biology) "apz" = ( /obj/structure/desertdam/decals/road_edge{ @@ -5187,47 +4010,30 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "apB" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apD" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "apF" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apI" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/interior/caves/east_caves) "apK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "apL" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -5242,28 +4048,21 @@ /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/interior/caves/east_caves) "apN" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/interior/caves/east_caves) "apO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_northwest) "apP" = ( /obj/structure/flora/grass/desert/lightgrass_7, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "apR" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/east_caves) "apS" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) "apT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -5273,17 +4072,13 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apV" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apW" = ( /turf/closed/wall/r_wall/chigusa, @@ -5293,36 +4088,25 @@ dir = 1; name = "\improper Research Hallway" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apY" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apZ" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "aqa" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aqb" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aqc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5331,10 +4115,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) "aqd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqe" = ( /obj/structure/machinery/power/apc{ @@ -5342,10 +4123,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqf" = ( /obj/structure/desertdam/decals/road_edge, @@ -5353,25 +4131,20 @@ dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "aqg" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "aqi" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aql" = ( /obj/effect/decal/warning_stripes{ @@ -5386,9 +4159,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "aqn" = ( /obj/effect/decal/cleanable/dirt, @@ -5402,9 +4173,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/interior/caves/east_caves) "aqq" = ( /turf/open/desert/desert_shore/desert_shore1, @@ -5416,41 +4185,28 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqt" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqv" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqw" = ( /obj/structure/stairs{ dir = 8 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "aqx" = ( /obj/structure/surface/table/reinforced, @@ -5458,16 +4214,10 @@ name = "Security Cameras - Research"; network = list("chigusa_3") }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqy" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_northwest) "aqz" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -5478,34 +4228,24 @@ name = "\improper Lobby" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "aqB" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "aqC" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "aqD" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqE" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "aqF" = ( /obj/structure/machinery/disposal, @@ -5513,76 +4253,51 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/exterior/valley/valley_wilderness) "aqG" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/exterior/valley/valley_wilderness) "aqH" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/exterior/valley/valley_wilderness) "aqI" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/exterior/valley/valley_wilderness) "aqJ" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "aqK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aqL" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aqN" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aqP" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Security Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqQ" = ( /turf/closed/wall/r_wall, @@ -5592,17 +4307,13 @@ dir = 8; pixel_x = 24 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/interior/dam_interior/west_tunnel) "aqS" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/valley_labs) "aqT" = ( /obj/structure/desertdam/decals/road_edge, @@ -5610,45 +4321,32 @@ dir = 1 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "aqU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Security Armoury" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqV" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/donut_box, /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aqX" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/interior/caves/east_caves) "aqY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/east_caves) "aqZ" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -5656,9 +4354,7 @@ id = "dam_checkpoint_northeast"; name = "\improper Checkpoint Lock" }, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "ara" = ( /obj/effect/decal/warning_stripes{ @@ -5670,10 +4366,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "arc" = ( /obj/structure/machinery/light{ @@ -5682,18 +4375,13 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ard" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "are" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5702,9 +4390,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "arf" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -5713,9 +4399,7 @@ name = "\improper Checkpoint Lock"; unacidable = 0 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "arg" = ( /obj/structure/disposalpipe/segment{ @@ -5724,40 +4408,28 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "arh" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "ari" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/west_tunnel) "arj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/west_tunnel) "ark" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "arl" = ( /obj/structure/machinery/power/apc{ @@ -5765,17 +4437,11 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "arm" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "arn" = ( /obj/structure/surface/table/reinforced, @@ -5787,30 +4453,20 @@ pixel_y = 3 }, /obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aro" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 4; pixel_x = -24 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/west_tunnel) "arp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/hanger) "arq" = ( -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "arr" = ( /obj/structure/machinery/power/apc{ @@ -5818,41 +4474,27 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "ars" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_northwest) "art" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "aru" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Lobby" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "arv" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "arw" = ( /obj/structure/fence, @@ -5860,18 +4502,14 @@ /area/desert_dam/exterior/river/riverside_east) "arx" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside{ - dir = 1 - }, +/turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_mining) "ary" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "arz" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -5881,48 +4519,32 @@ name = "\improper Checkpoint Lock" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "arA" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/caves/east_caves) "arB" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arC" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arD" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arE" = ( /obj/structure/sink, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arF" = ( /turf/closed/wall/r_wall/bunker, @@ -5933,25 +4555,16 @@ dir = 1; pixel_y = 25 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arI" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arJ" = ( /obj/structure/window/framed/chigusa, @@ -5963,10 +4576,7 @@ }, /obj/structure/surface/table, /obj/item/tool/surgery/retractor, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "arL" = ( /turf/open/floor/prison, @@ -5978,38 +4588,26 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "arR" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) "arS" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/south_tunnel) "arT" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, +/turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/dam_interior/western_dam_cave) "arU" = ( /obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "arV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/truck/damaged, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "arZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -6039,21 +4637,14 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "asf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/hanger) "asg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/desert_dam/interior/dam_interior/hanger) "ash" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_telecoms) "asl" = ( /obj/structure/platform, @@ -6065,33 +4656,22 @@ "asm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "asn" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aso" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; name = "\improper Research Substation" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/substation/northeast) "asq" = ( /obj/structure/machinery/light, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "asr" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -6101,9 +4681,7 @@ dir = 1; pixel_y = -10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "ass" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -6113,9 +4691,7 @@ /area/desert_dam/interior/caves/east_caves) "ast" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/east_caves) "asu" = ( /obj/structure/prop/dam/boulder/boulder1, @@ -6126,24 +4702,18 @@ dir = 1; name = "\improper Security Checkpoint" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "asw" = ( /obj/structure/window/framed/bunker/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "asx" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "asy" = ( /obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "asz" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -6152,14 +4722,10 @@ name = "\improper Checkpoint Lock"; unacidable = 0 }, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "asA" = ( -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "asB" = ( /obj/structure/window/framed/bunker/reinforced, @@ -6173,22 +4739,14 @@ /obj/structure/machinery/door/window/southleft{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "asD" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "asE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "asF" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -6200,23 +4758,16 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "asH" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "asI" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "asJ" = ( /obj/structure/surface/table/reinforced, @@ -6224,30 +4775,21 @@ name = "Security Cameras - Research"; network = list("chigusa_3") }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "asL" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "asM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/desert_dam/building/substation/northeast) "asN" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 1; pixel_y = -10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "asO" = ( /obj/structure/surface/table, @@ -6259,9 +4801,7 @@ /area/desert_dam/building/water_treatment_two/floodgate_control) "asP" = ( /obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "asQ" = ( /obj/structure/surface/table, @@ -6273,10 +4813,7 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f6" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "asS" = ( /obj/structure/surface/table, @@ -6291,26 +4828,17 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "asW" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/desert_dam/building/substation/northeast) "asX" = ( /obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/desert_dam/building/substation/northeast) "asY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/desert_dam/building/substation/northeast) "asZ" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -6330,9 +4858,7 @@ /obj/structure/machinery/door/window/southleft{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "atb" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -6341,17 +4867,13 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/east_caves) "atc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_mining) "atd" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/east_caves) "ate" = ( /obj/structure/stairs{ @@ -6360,9 +4882,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "atf" = ( /obj/structure/flora/tree/joshua, @@ -6370,33 +4890,24 @@ /area/desert_dam/interior/caves/east_caves) "atg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "ath" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_wilderness) "ati" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 8; pixel_x = 24 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/west_tunnel) "atj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "atk" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "atl" = ( /turf/open/desert/rock/deep, @@ -6406,10 +4917,7 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/northeast) "atn" = ( /obj/structure/window/framed/chigusa, @@ -6419,49 +4927,35 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) "atp" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "atq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Research Hallway" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "atr" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/dam_interior/south_tunnel) "ats" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "att" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) "atu" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7-2" - }, +/turf/open/floor/coagulation/icon8_7_2, /area/desert_dam/exterior/valley/valley_mining) "atv" = ( /obj/structure/surface/table/reinforced, @@ -6518,9 +5012,7 @@ /obj/structure/filtration/coagulation{ icon_state = "2,7" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "atB" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -6546,19 +5038,14 @@ dir = 4; pixel_x = -24 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/west_tunnel) "atE" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "atF" = ( /obj/structure/disposalpipe/segment, @@ -6566,10 +5053,7 @@ dir = 1; name = "\improper Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "atG" = ( /obj/structure/machinery/power/apc{ @@ -6577,30 +5061,20 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/desert_dam/building/substation/northeast) "atH" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/west_tunnel) "atI" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/west_tunnel) "atJ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "atK" = ( /obj/structure/machinery/power/apc{ @@ -6608,15 +5082,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "atL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_wilderness) "atM" = ( /obj/effect/decal/warning_stripes{ @@ -6630,32 +5099,24 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "atO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "atP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "atQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "atS" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -6664,10 +5125,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "atT" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "atU" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -6676,10 +5134,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "atV" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/northeast) "atW" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -6715,27 +5170,16 @@ /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/northeast) "aub" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/substation/northeast) "auc" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/northeast) "aud" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "aue" = ( /obj/structure/machinery/power/apc{ @@ -6743,19 +5187,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "auf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Research Workshop" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "aug" = ( /obj/structure/window/framed/chigusa, @@ -6765,9 +5204,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper RnD" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aui" = ( /obj/structure/desertdam/decals/road_edge{ @@ -6779,70 +5216,43 @@ "auj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "auk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "aul" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/southwest, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "aum" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aun" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_RND) "auo" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/interior/dam_interior/west_tunnel) "aup" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/east, /area/desert_dam/interior/lab_northeast/east_lab_RND) "auq" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aur" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/north, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aus" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "aut" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) "auu" = ( /obj/structure/flora/grass/desert/lightgrass_3, @@ -6855,9 +5265,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "auw" = ( /obj/structure/machinery/power/apc{ @@ -6865,10 +5273,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aux" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -6891,40 +5296,27 @@ /area/desert_dam/building/substation/northeast) "auB" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auC" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auD" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auG" = ( /turf/open/desert/rock, @@ -6933,38 +5325,25 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/west_tunnel) "auI" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "auK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "auL" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "auM" = ( /obj/structure/machinery/cm_vending/sorted/tech/science{ req_one_access = null }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_RND) "auN" = ( /obj/structure/desertdam/decals/road_edge, @@ -6972,19 +5351,13 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) "auP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_RND) "auQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auR" = ( /obj/structure/machinery/power/apc{ @@ -6992,28 +5365,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/north, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auT" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auV" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "auW" = ( /obj/structure/sign/safety/restrictedarea, @@ -7030,17 +5392,13 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "auY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "auZ" = ( /obj/structure/surface/rack, @@ -7049,44 +5407,29 @@ /area/desert_dam/building/water_treatment_two/floodgate_control) "ava" = ( /obj/structure/toilet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avb" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/west_tunnel) "avc" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/west_tunnel) "ave" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avf" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avg" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avh" = ( /obj/structure/disposalpipe/segment{ @@ -7098,10 +5441,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avj" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -7109,44 +5449,31 @@ id = null; name = "\improper Elevator Lock" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/shuttle/trijent_shuttle/engi) "avk" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/dam_interior/west_tunnel) "avl" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "avm" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, +/turf/open/asphalt/cement/cement13, /area/desert_dam/interior/dam_interior/west_tunnel) "avn" = ( /obj/structure/closet/secure_closet/security, /obj/item/clothing/suit/armor/vest/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "avo" = ( /obj/structure/surface/table/reinforced, @@ -7154,10 +5481,7 @@ name = "Security Cameras - Research"; network = list("chigusa_3") }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "avp" = ( /obj/structure/surface/table, @@ -7165,33 +5489,23 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) "avq" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "avr" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "avt" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "avu" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/interior/caves/east_caves) "avv" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/floodgate_control) "avw" = ( /obj/structure/machinery/light{ @@ -7202,67 +5516,46 @@ "avx" = ( /obj/structure/machinery/r_n_d/protolathe, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "avy" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "avz" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avA" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "avB" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "avC" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_northwest) "avD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "avE" = ( /obj/structure/machinery/sentry_holder/colony{ pixel_y = 26 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "avF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "avG" = ( /turf/closed/wall/r_wall/chigusa, @@ -7275,67 +5568,46 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Research Hallway" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "avJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "avK" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_RND) "avL" = ( /obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "avM" = ( /obj/structure/machinery/computer/WYresearch, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "avN" = ( /obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "avO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avP" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "avQ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/desert_dam/building/substation/northeast) "avR" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -7344,17 +5616,13 @@ /obj/structure/machinery/sentry_holder/colony{ pixel_y = 26 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "avS" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "avT" = ( /obj/structure/platform{ @@ -7364,51 +5632,34 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "avU" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/desert_dam/building/substation/northeast) "avV" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/desert_dam/building/substation/northeast) "avW" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/northeast) "avX" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "avY" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "avZ" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/dam_interior/west_tunnel) "awa" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, +/turf/open/asphalt/cement/cement13, /area/desert_dam/interior/dam_interior/west_tunnel) "awb" = ( /obj/structure/machinery/power/apc{ @@ -7416,36 +5667,24 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "awd" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awe" = ( /obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "awf" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awg" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -7454,19 +5693,13 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "awh" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/western_dam_cave) "awi" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/western_dam_cave) "awj" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/dam_interior/western_dam_cave) "awk" = ( /obj/structure/prop/dam/large_boulder{ @@ -7475,9 +5708,7 @@ /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) "awl" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/dam_interior/workshop) "awm" = ( /obj/structure/platform{ @@ -7491,35 +5722,24 @@ dir = 4 }, /obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "awo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_mining) "awp" = ( /obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/west_tunnel) "awq" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/west_tunnel) "awr" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aws" = ( /obj/effect/decal/sand_overlay/sand2/corner2, @@ -7529,46 +5749,30 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awv" = ( /obj/structure/prop/dam/drill, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aww" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awx" = ( /turf/open/floor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awy" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awz" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awA" = ( /obj/structure/surface/table, @@ -7577,79 +5781,52 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "awB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "awC" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awD" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awE" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "awF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Research Workshop" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "awG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "awH" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/desert_dam/interior/lab_northeast/east_lab_RND) "awI" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "awJ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_RND) "awK" = ( /obj/structure/platform, @@ -7663,15 +5840,10 @@ /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/detective) "awN" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awO" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awP" = ( /obj/structure/bed/chair{ @@ -7680,137 +5852,94 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awR" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/valley/valley_crashsite) "awS" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awT" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awU" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "3,7" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "awV" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awW" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_crashsite) "awX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "awY" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Security Checkpoint" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "awZ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Restroom" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axa" = ( -/turf/open/floor{ - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axb" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axc" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axe" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/west, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axf" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axg" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axh" = ( /obj/structure/machinery/light, /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axi" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_labs) "axj" = ( /turf/open/desert/desert_shore/shore_edge1, @@ -7824,15 +5953,11 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axm" = ( /obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/valley/valley_labs) "axn" = ( /obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/valley/valley_labs) "axo" = ( /obj/structure/desertdam/decals/road_edge{ @@ -7850,10 +5975,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "axr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axs" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -7862,10 +5984,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_maintenence) "axt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -7873,18 +5992,14 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Lobby" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "axw" = ( /obj/structure/surface/table/reinforced/prison{ @@ -7894,10 +6009,7 @@ desc = "A bizarre alien device used for trapping and killing prey."; name = "Alien Mine" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "axx" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -7911,35 +6023,21 @@ id = "dam_checkpoint_northeast"; name = "Checkpoint Lockdown" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "axz" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/interior/caves/east_caves) "axA" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "axB" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "axC" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/interior/caves/east_caves) "axD" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -7948,9 +6046,7 @@ /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) "axE" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_RND) "axF" = ( /turf/closed/wall/r_wall/prison, @@ -7959,9 +6055,7 @@ /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_RND) "axH" = ( /obj/structure/surface/table/reinforced, @@ -7973,10 +6067,7 @@ /obj/item/stack/sheet/glass{ amount = 30 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/desert_dam/interior/lab_northeast/east_lab_RND) "axI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -7997,9 +6088,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axM" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "axN" = ( /obj/structure/reagent_dispensers/fueltank, @@ -8007,31 +6096,19 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axO" = ( /obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/valley/valley_labs) "axP" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_wilderness) "axQ" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axT" = ( /turf/open/desert/rock/deep/transition, @@ -8040,43 +6117,29 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, +/turf/open/asphalt/cement/cement7, /area/desert_dam/exterior/valley/valley_wilderness) "axV" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, +/turf/open/asphalt/cement/cement7, /area/desert_dam/exterior/valley/valley_wilderness) "axW" = ( /obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "axY" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_northwest) "axZ" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_northwest) "aya" = ( /obj/structure/window/framed/prison/reinforced, @@ -8085,33 +6148,25 @@ "ayb" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayd" = ( /obj/structure/showcase{ icon_state = "mechfab1" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aye" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/pod/old{ name = "Personal Computer" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayf" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayg" = ( /obj/structure/surface/table, @@ -8127,35 +6182,25 @@ /obj/structure/surface/table, /obj/item/tool/pen, /obj/item/paper_bundle, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayj" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayk" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayl" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aym" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayo" = ( /obj/item/reagent_container/glass/bucket/mopbucket, @@ -8163,26 +6208,20 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayp" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/valley/valley_wilderness) "ayr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ays" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/temple) "ayt" = ( /obj/structure/janitorialcart, @@ -8192,22 +6231,15 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayv" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayw" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/desert_dam/building/security/lobby) "ayx" = ( /obj/structure/surface/rack, @@ -8215,32 +6247,21 @@ /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayz" = ( /obj/structure/showcase, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayA" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 2; name = "\improper Research Office" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayB" = ( /obj/structure/machinery/computer/aifixer, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayC" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/caves/temple) "ayD" = ( /turf/open/desert/rock/deep/transition, @@ -8248,166 +6269,106 @@ "ayE" = ( /obj/structure/closet/secure_closet/RD, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayF" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayG" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, /obj/item/phone, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayH" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) "ayI" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayJ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayN" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 10 }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, +/turf/open/asphalt/cement/cement7, /area/desert_dam/exterior/valley/valley_wilderness) "ayO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayP" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayS" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayT" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayU" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayV" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/disk/nuclear, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayW" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/interior/lab_northeast/east_lab_RND) "ayX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ayZ" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aza" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_labs) "azb" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/western_dam_cave) "azc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azd" = ( /obj/structure/machinery/power/apc{ @@ -8415,44 +6376,32 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/interior/lab_northeast/east_lab_RND) "azf" = ( /obj/structure/closet/firecloset, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/desert_dam/building/administration/control_room) "azg" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "azh" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "azi" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "azj" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ @@ -8461,95 +6410,64 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "azk" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azl" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azm" = ( /obj/structure/lamarr, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "azo" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/interior/lab_northeast/east_lab_RND) "azp" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azq" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azr" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_mining) "azs" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/dam_interior/western_dam_cave) "azt" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azu" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, +/turf/open/asphalt/cement/cement7, /area/desert_dam/exterior/valley/valley_wilderness) "azv" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, +/turf/open/asphalt/cement/cement7, /area/desert_dam/exterior/valley/valley_wilderness) "azw" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azx" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azy" = ( /obj/structure/pipes/vents/pump{ @@ -8559,25 +6477,17 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azz" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/exterior/valley/valley_wilderness) "azA" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/exterior/valley/valley_wilderness) "azB" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/caves/temple) "azC" = ( /obj/structure/prop/brazier/torch, @@ -8597,43 +6507,32 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/exterior/valley/valley_wilderness) "azG" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/valley/valley_wilderness) "azH" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/valley/valley_wilderness) "azI" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/valley/valley_wilderness) "azJ" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/interior/dam_interior/atmos_storage) "azK" = ( /obj/structure/platform{ @@ -8648,9 +6547,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/exterior/valley/valley_wilderness) "azN" = ( /obj/structure/disposalpipe/segment{ @@ -8663,9 +6560,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "azP" = ( /obj/structure/flora/grass/tallgrass/desert/corner, @@ -8679,9 +6574,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/valley/valley_wilderness) "azS" = ( /obj/structure/disposalpipe/segment, @@ -8731,28 +6624,20 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "aAb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/exterior/valley/valley_wilderness) "aAc" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) "aAe" = ( /turf/open/desert/excavation/component8, /area/desert_dam/exterior/valley/valley_crashsite) "aAf" = ( -/turf/open/desert/excavation/component8{ - dir = 1 - }, +/turf/open/desert/excavation/component8/north, /area/desert_dam/exterior/valley/valley_crashsite) "aAg" = ( -/turf/open/desert/excavation/component8{ - dir = 4 - }, +/turf/open/desert/excavation/component8/east, /area/desert_dam/exterior/valley/valley_crashsite) "aAh" = ( /obj/structure/machinery/colony_floodlight, @@ -8769,14 +6654,10 @@ /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_wilderness) "aAk" = ( -/turf/open/desert/excavation/component8{ - dir = 8 - }, +/turf/open/desert/excavation/component8/west, /area/desert_dam/exterior/valley/valley_crashsite) "aAl" = ( -/turf/open/desert/excavation/component8{ - dir = 6 - }, +/turf/open/desert/excavation/component8/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aAm" = ( /obj/structure/platform{ @@ -8802,9 +6683,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "aAr" = ( /obj/structure/prop/dam/boulder/boulder2, @@ -8814,9 +6693,7 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "aAt" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -8842,39 +6719,28 @@ /area/desert_dam/interior/caves/central_caves) "aAx" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "aAy" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_medical) "aAz" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aAA" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aAB" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/valley/valley_labs) "aAC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -8889,9 +6755,7 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/exterior/valley/valley_wilderness) "aAE" = ( /obj/structure/platform{ @@ -8906,92 +6770,65 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/excavation/component8{ - dir = 10 - }, +/turf/open/desert/excavation/component8/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aAG" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/interior/caves/central_caves) "aAH" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/interior/caves/central_caves) "aAI" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/interior/caves/central_caves) "aAJ" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/interior/caves/central_caves) "aAK" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aAL" = ( /obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/interior/caves/central_caves) "aAM" = ( -/turf/open/desert/excavation/component8{ - dir = 5 - }, +/turf/open/desert/excavation/component8/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aAN" = ( /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/interior/caves/central_caves) "aAO" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/interior/caves/central_caves) "aAP" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/interior/caves/central_caves) "aAQ" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 1; pixel_y = -10 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/south_tunnel) "aAR" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 1; pixel_y = -10 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/south_tunnel) "aAS" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/south_tunnel) "aAT" = ( /obj/effect/decal/warning_stripes{ @@ -9011,22 +6848,16 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aAV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "aAW" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/interior/caves/central_caves) "aAX" = ( /turf/open/gm/river/desert/deep, /area/desert_dam/interior/caves/central_caves) "aAY" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aAZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -9044,25 +6875,19 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) "aBc" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_wilderness) "aBd" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aBe" = ( /turf/open/desert/desert_shore/shore_edge1, @@ -9071,23 +6896,17 @@ /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/interior/caves/central_caves) "aBg" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/interior/caves/central_caves) "aBh" = ( /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/interior/caves/central_caves) "aBi" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/interior/caves/central_caves) "aBj" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/exterior/valley/valley_wilderness) "aBk" = ( /turf/open/floor/sandstone/runed, @@ -9123,10 +6942,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/interior/dam_interior/south_tunnel) "aBq" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -9167,14 +6983,10 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aBv" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_wilderness) "aBw" = ( -/turf/open/desert/excavation/component8{ - dir = 9 - }, +/turf/open/desert/excavation/component8/northwest, /area/desert_dam/exterior/valley/valley_crashsite) "aBx" = ( /obj/structure/desertdam/decals/road_stop{ @@ -9187,9 +6999,7 @@ /turf/open/desert/excavation/component9, /area/desert_dam/exterior/valley/valley_crashsite) "aBA" = ( -/turf/open/desert/excavation/component9{ - dir = 1 - }, +/turf/open/desert/excavation/component9/north, /area/desert_dam/exterior/valley/valley_crashsite) "aBB" = ( /obj/structure/prop/dam/large_boulder/boulder2, @@ -9201,9 +7011,7 @@ /area/desert_dam/interior/caves/central_caves) "aBD" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_wilderness) "aBE" = ( /turf/open/desert/rock, @@ -9218,26 +7026,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, +/turf/open/asphalt/cement/cement13, /area/desert_dam/interior/dam_interior/south_tunnel) "aBH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel) "aBI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_wilderness) "aBJ" = ( /obj/structure/disposalpipe/segment{ @@ -9246,9 +7047,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/valley/valley_wilderness) "aBK" = ( /obj/structure/desertdam/decals/road_edge, @@ -9262,9 +7061,7 @@ /area/desert_dam/interior/caves/temple) "aBO" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/interior/caves/temple) "aBQ" = ( /obj/effect/decal/warning_stripes{ @@ -9276,34 +7073,23 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, -/turf/open/desert/desert_shore/shore_corner1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner1/west, /area/desert_dam/interior/caves/temple) "aBS" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "aBT" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_wilderness) "aBU" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) "aBV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "aBW" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/interior/caves/temple) "aBX" = ( /obj/structure/machinery/colony_floodlight, @@ -9316,22 +7102,16 @@ /obj/structure/machinery/sentry_holder/colony{ pixel_y = 26 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/south_tunnel) "aBZ" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/workshop) "aCa" = ( /obj/structure/machinery/sentry_holder/colony{ pixel_y = 26 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/interior/dam_interior/south_tunnel) "aCb" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -9340,55 +7120,39 @@ /turf/open/asphalt/cement, /area/desert_dam/exterior/valley/valley_wilderness) "aCc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/interior/dam_interior/south_tunnel) "aCd" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_labs) "aCe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/interior/dam_interior/south_tunnel) "aCf" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "aCg" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/interior/dam_interior/south_tunnel) "aCh" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_wilderness) "aCi" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_wilderness) "aCj" = ( /obj/structure/disposalpipe/segment, @@ -9402,9 +7166,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCm" = ( -/turf/open/desert/excavation/component9{ - dir = 4 - }, +/turf/open/desert/excavation/component9/east, /area/desert_dam/exterior/valley/valley_crashsite) "aCn" = ( /obj/structure/bed, @@ -9415,9 +7177,7 @@ /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_mining) "aCp" = ( /obj/structure/desertdam/decals/road_stop{ @@ -9429,17 +7189,13 @@ "aCq" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aCr" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aCs" = ( -/turf/open/desert/excavation/component9{ - dir = 8 - }, +/turf/open/desert/excavation/component9/west, /area/desert_dam/exterior/valley/valley_crashsite) "aCt" = ( /obj/structure/closet/cabinet, @@ -9462,9 +7218,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCz" = ( -/turf/open/desert/excavation/component9{ - dir = 6 - }, +/turf/open/desert/excavation/component9/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aCA" = ( /turf/open/floor/interior/wood, @@ -9487,30 +7241,18 @@ "aCD" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/donut_box, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCE" = ( /obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCF" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCG" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_crashsite) "aCI" = ( /obj/effect/decal/cleanable/dirt, @@ -9520,19 +7262,14 @@ /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCK" = ( -/turf/open/desert/excavation/component9{ - dir = 10 - }, +/turf/open/desert/excavation/component9/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aCL" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCM" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_crashsite) "aCN" = ( /obj/effect/decal/cleanable/dirt, @@ -9549,9 +7286,7 @@ /turf/open/floor/interior/wood/alt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCP" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/west_tunnel) "aCQ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -9560,9 +7295,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "aCR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/west_tunnel) "aCS" = ( /obj/structure/window/framed/colony/reinforced, @@ -9570,10 +7303,7 @@ /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aCV" = ( /obj/item/ammo_magazine/pistol/holdout, @@ -9634,21 +7364,14 @@ /area/desert_dam/exterior/valley/valley_northwest) "aDe" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "aDf" = ( -/turf/open/floor/filtrationside{ - dir = 8 - }, +/turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_medical) "aDg" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDh" = ( /obj/effect/decal/cleanable/blood, @@ -9686,19 +7409,13 @@ /obj/structure/surface/table, /obj/item/stack/medical/bruise_pack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDo" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/drill, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDp" = ( /obj/structure/surface/table/woodentable, @@ -9724,20 +7441,14 @@ /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDt" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDu" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDv" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aDw" = ( /obj/structure/barricade/wooden, @@ -9765,9 +7476,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "aDA" = ( /obj/structure/barricade/wooden, @@ -9783,9 +7492,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDC" = ( /obj/structure/desertdam/decals/road_edge{ @@ -9819,9 +7526,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDG" = ( /obj/effect/decal/cleanable/dirt, @@ -9834,9 +7539,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDI" = ( /obj/structure/disposalpipe/segment{ @@ -9849,39 +7552,29 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDK" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDL" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "aDM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDN" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDO" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -9890,9 +7583,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDP" = ( /turf/open/asphalt/cement_sunbleached, @@ -9902,9 +7593,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDR" = ( /obj/structure/machinery/power/apc{ @@ -9912,18 +7601,14 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDS" = ( /obj/structure/machinery/sentry_holder/colony{ dir = 4; pixel_x = -24 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aDT" = ( /turf/closed/wall/hangar{ @@ -9934,24 +7619,17 @@ /area/shuttle/trijent_shuttle/omega) "aDU" = ( /obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_medical) "aDV" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "aDY" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) "aDZ" = ( /obj/structure/platform, @@ -9981,9 +7659,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "aEf" = ( /obj/structure/platform, @@ -10029,9 +7705,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aEn" = ( /obj/effect/decal/warning_stripes{ @@ -10043,24 +7717,17 @@ "aEp" = ( /obj/structure/prop/dam/boulder/boulder3, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_wilderness) "aEq" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aEr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aEs" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -10068,10 +7735,7 @@ id = null; name = "\improper Elevator Lock" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/shuttle/trijent_shuttle/omega) "aEu" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -10084,10 +7748,7 @@ pixel_y = 32; shuttleId = "trijentshuttle22" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/exterior/valley/valley_medical) "aEv" = ( /obj/structure/stairs{ @@ -10096,9 +7757,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aEw" = ( /obj/structure/stairs{ @@ -10107,44 +7766,31 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aEx" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aEy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aEz" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aEA" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "aEB" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aEC" = ( /obj/structure/machinery/power/apc{ @@ -10161,18 +7807,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/exterior/valley/valley_medical) "aED" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_northwest) "aEE" = ( /obj/effect/decal/warning_stripes{ @@ -10185,9 +7826,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_northwest) "aEG" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile{ @@ -10195,7 +7834,7 @@ unacidable = 1 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "aEH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10224,9 +7863,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aEM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10236,9 +7873,7 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "aEN" = ( /obj/structure/platform{ @@ -10262,9 +7897,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "aEQ" = ( /obj/structure/desertdam/decals/road_stop{ @@ -10287,52 +7920,35 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aET" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_crashsite) "aEU" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_crashsite) "aEV" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aEW" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aEX" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_crashsite) "aEY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_crashsite) "aEZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "aFa" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -10349,14 +7965,10 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aFd" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/valley/valley_crashsite) "aFe" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/exterior/valley/valley_crashsite) "aFf" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -10367,31 +7979,23 @@ /obj/structure/filtration/coagulation{ icon_state = "6,7" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aFh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/workshop) "aFi" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "aFj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) "aFk" = ( /obj/structure/flora/grass/desert/lightgrass_7, @@ -10417,30 +8021,20 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "aFp" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_crashsite) "aFq" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_crashsite) "aFr" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aFs" = ( /obj/structure/desertdam/decals/road_edge{ @@ -10453,9 +8047,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_northwest) "aFu" = ( /obj/structure/prop/dam/large_boulder/boulder1, @@ -10463,23 +8055,17 @@ /area/desert_dam/exterior/valley/valley_northwest) "aFv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "aFw" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_telecoms) "aFx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_telecoms) "aFy" = ( /obj/effect/decal/cleanable/dirt, @@ -10492,10 +8078,7 @@ /area/desert_dam/interior/caves/central_caves) "aFA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aFB" = ( /obj/structure/machinery/light, @@ -10506,9 +8089,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aFC" = ( /obj/effect/decal/sand_overlay/sand1, @@ -10517,9 +8098,7 @@ pixel_x = -24 }, /obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aFD" = ( /obj/structure/desertdam/decals/road_edge, @@ -10535,30 +8114,21 @@ /area/desert_dam/interior/dam_interior/south_tunnel) "aFF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "aFG" = ( /obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_medical) "aFH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "aFI" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_medical) "aFJ" = ( /obj/structure/surface/table/almayer, @@ -10576,17 +8146,12 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "aFM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "aFN" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -10622,15 +8187,11 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aFU" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/interior/caves/central_caves) "aFV" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "aFW" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -10689,10 +8250,7 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "aGg" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/interior/caves/central_caves) "aGh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -10701,9 +8259,7 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "aGi" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_crashsite) "aGj" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -10725,9 +8281,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "aGm" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_mining) "aGn" = ( /obj/effect/decal/sand_overlay/sand1, @@ -10752,9 +8306,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aGs" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/interior/caves/central_caves) "aGt" = ( /obj/structure/prop/dam/wide_boulder/boulder1, @@ -10764,9 +8316,7 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aGv" = ( /obj/structure/flora/bush/desert/cactus{ @@ -10775,9 +8325,7 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "aGw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aGx" = ( /obj/structure/desertdam/decals/road_edge{ @@ -10804,9 +8352,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "aGC" = ( /obj/effect/decal/sand_overlay/sand1, @@ -10820,14 +8366,10 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aGE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "aGF" = ( /obj/structure/flora/bush/desert/cactus{ @@ -10845,15 +8387,10 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "aGH" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aGI" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/interior/caves/central_caves) "aGJ" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -10876,9 +8413,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aGN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -10894,34 +8429,21 @@ /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "aGQ" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/interior/caves/central_caves) "aGR" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/interior/caves/central_caves) "aGS" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_crashsite) "aGT" = ( /obj/structure/surface/table, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aGU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_crashsite) "aGV" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -10931,15 +8453,10 @@ /area/desert_dam/exterior/valley/valley_crashsite) "aGW" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aGX" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/interior/caves/central_caves) "aGY" = ( /obj/effect/landmark/yautja_teleport, @@ -10951,16 +8468,11 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aHb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "aHc" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/interior/caves/central_caves) "aHd" = ( /obj/structure/desertdam/decals/road_edge{ @@ -10975,9 +8487,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "aHf" = ( /obj/structure/desertdam/decals/road_edge{ @@ -10989,16 +8499,10 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHg" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHh" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHi" = ( /obj/structure/machinery/light, @@ -11015,85 +8519,55 @@ dir = 1; pixel_y = -10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHk" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHl" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHm" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHn" = ( /obj/structure/machinery/vending/hydroseeds, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHo" = ( /obj/structure/machinery/centrifuge, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHp" = ( /obj/structure/machinery/biogenerator, -/turf/open/floor{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/green/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHq" = ( /obj/structure/machinery/seed_extractor, -/turf/open/floor{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/green/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHr" = ( /obj/structure/machinery/botany/extractor, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHs" = ( /obj/structure/machinery/vending/hydronutrients, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHt" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aHu" = ( /obj/structure/desertdam/decals/road_edge, @@ -11110,15 +8584,10 @@ dir = 1; pixel_y = -10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHw" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -11130,24 +8599,18 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_crashsite) "aHz" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aHA" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "aHB" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "aHC" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -11166,10 +8629,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "aHF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aHG" = ( /obj/structure/flora/grass/desert/heavygrass_3, @@ -11179,9 +8639,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aHI" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -11192,36 +8650,28 @@ "aHJ" = ( /obj/structure/surface/table, /obj/item/tool/shovel, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aHK" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aHL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aHM" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aHN" = ( /obj/structure/flora/grass/desert/heavygrass_3, @@ -11229,18 +8679,14 @@ /area/desert_dam/interior/caves/central_caves) "aHP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aHQ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aHR" = ( /obj/structure/flora/bush/desert/cactus{ @@ -11257,21 +8703,17 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aHU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_crashsite) "aHV" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/hammer, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aHW" = ( /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "aHX" = ( /obj/structure/machinery/light{ dir = 1 @@ -11285,9 +8727,7 @@ /obj/structure/machinery/sentry_holder/colony{ pixel_y = 26 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aHZ" = ( /obj/structure/platform_decoration{ @@ -11299,9 +8739,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "aIb" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -11313,9 +8751,7 @@ /obj/structure/machinery/sentry_holder/colony{ pixel_y = 26 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aId" = ( /obj/structure/machinery/colony_floodlight, @@ -11326,25 +8762,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIf" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIg" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIh" = ( /obj/structure/platform{ @@ -11354,9 +8782,7 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) "aIi" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aIj" = ( /obj/structure/platform_decoration{ @@ -11372,14 +8798,10 @@ /turf/open/desert/excavation/component1, /area/desert_dam/exterior/valley/valley_crashsite) "aIm" = ( -/turf/open/desert/excavation/component1{ - dir = 1 - }, +/turf/open/desert/excavation/component1/north, /area/desert_dam/exterior/valley/valley_crashsite) "aIn" = ( -/turf/open/desert/excavation/component1{ - dir = 4 - }, +/turf/open/desert/excavation/component1/east, /area/desert_dam/exterior/valley/valley_crashsite) "aIo" = ( /obj/effect/landmark/monkey_spawn, @@ -11396,19 +8818,13 @@ /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "aIr" = ( -/turf/open/desert/excavation/component1{ - dir = 8 - }, +/turf/open/desert/excavation/component1/west, /area/desert_dam/exterior/valley/valley_crashsite) "aIs" = ( -/turf/open/desert/excavation/component1{ - dir = 6 - }, +/turf/open/desert/excavation/component1/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aIt" = ( -/turf/open/desert/excavation/component1{ - dir = 10 - }, +/turf/open/desert/excavation/component1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aIu" = ( /obj/structure/flora/grass/desert/lightgrass_8, @@ -11421,23 +8837,17 @@ /turf/closed/wall/r_wall/chigusa, /area/desert_dam/building/substation/northeast) "aIx" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/valley/valley_crashsite) "aIy" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "aIA" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "aIB" = ( /obj/structure/stairs{ @@ -11446,15 +8856,11 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_crashsite) "aIC" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/desert/excavation/component1{ - dir = 5 - }, +/turf/open/desert/excavation/component1/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aID" = ( /obj/structure/stairs{ @@ -11463,9 +8869,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_crashsite) "aIE" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -11474,30 +8878,21 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "aIF" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/valley/valley_crashsite) "aIG" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "aIH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_crashsite) "aII" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_crashsite) "aIJ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -11512,26 +8907,16 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) "aIL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIM" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIN" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aIP" = ( /obj/structure/platform{ @@ -11546,24 +8931,18 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "aIR" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) "aIS" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "aIT" = ( /obj/structure/stairs, @@ -11576,41 +8955,29 @@ /turf/open/desert/excavation/component2, /area/desert_dam/exterior/valley/valley_crashsite) "aIV" = ( -/turf/open/desert/excavation/component2{ - dir = 1 - }, +/turf/open/desert/excavation/component2/north, /area/desert_dam/exterior/valley/valley_crashsite) "aIW" = ( /obj/structure/stairs{ dir = 8 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) "aIX" = ( -/turf/open/desert/excavation/component2{ - dir = 4 - }, +/turf/open/desert/excavation/component2/east, /area/desert_dam/exterior/valley/valley_crashsite) "aIY" = ( -/turf/open/desert/excavation/component2{ - dir = 8 - }, +/turf/open/desert/excavation/component2/west, /area/desert_dam/exterior/valley/valley_crashsite) "aIZ" = ( -/turf/open/desert/excavation/component2{ - dir = 6 - }, +/turf/open/desert/excavation/component2/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aJa" = ( /turf/open/desert/excavation/component4, /area/desert_dam/exterior/valley/valley_crashsite) "aJb" = ( -/turf/open/desert/excavation/component4{ - dir = 1 - }, +/turf/open/desert/excavation/component4/north, /area/desert_dam/exterior/valley/valley_crashsite) "aJc" = ( /turf/open/gm/river/desert/shallow, @@ -11623,9 +8990,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "aJf" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/interior/caves/central_caves) "aJg" = ( /obj/item/tool/shovel, @@ -11645,72 +9010,48 @@ /turf/open/desert/excavation/component3, /area/desert_dam/exterior/valley/valley_crashsite) "aJk" = ( -/turf/open/desert/excavation/component3{ - dir = 1 - }, +/turf/open/desert/excavation/component3/north, /area/desert_dam/exterior/valley/valley_crashsite) "aJl" = ( -/turf/open/desert/excavation/component3{ - dir = 4 - }, +/turf/open/desert/excavation/component3/east, /area/desert_dam/exterior/valley/valley_crashsite) "aJm" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) "aJn" = ( -/turf/open/desert/excavation/component3{ - dir = 8 - }, +/turf/open/desert/excavation/component3/west, /area/desert_dam/exterior/valley/valley_crashsite) "aJo" = ( -/turf/open/desert/excavation/component4{ - dir = 4 - }, +/turf/open/desert/excavation/component4/east, /area/desert_dam/exterior/valley/valley_crashsite) "aJp" = ( -/turf/open/desert/excavation/component4{ - dir = 8 - }, +/turf/open/desert/excavation/component4/west, /area/desert_dam/exterior/valley/valley_crashsite) "aJq" = ( -/turf/open/desert/excavation/component4{ - dir = 6 - }, +/turf/open/desert/excavation/component4/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aJr" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aJs" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aJt" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aJu" = ( /turf/closed/wall, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aJv" = ( /obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/workshop) "aJw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aJx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -11742,81 +9083,54 @@ /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_crashsite) "aJC" = ( -/turf/open/desert/excavation/component3{ - dir = 6 - }, +/turf/open/desert/excavation/component3/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aJD" = ( -/turf/open/desert/excavation/component3{ - dir = 10 - }, +/turf/open/desert/excavation/component3/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aJE" = ( -/turf/open/desert/excavation/component3{ - dir = 5 - }, +/turf/open/desert/excavation/component3/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aJF" = ( /turf/open/desert/excavation/component5, /area/desert_dam/exterior/valley/valley_crashsite) "aJG" = ( -/turf/open/desert/excavation/component5{ - dir = 1 - }, +/turf/open/desert/excavation/component5/north, /area/desert_dam/exterior/valley/valley_crashsite) "aJH" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/interior/caves/central_caves) "aJI" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aJJ" = ( -/turf/open/desert/excavation/component5{ - dir = 4 - }, +/turf/open/desert/excavation/component5/east, /area/desert_dam/exterior/valley/valley_crashsite) "aJK" = ( -/turf/open/desert/excavation/component5{ - dir = 8 - }, +/turf/open/desert/excavation/component5/west, /area/desert_dam/exterior/valley/valley_crashsite) "aJL" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aJM" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "aJN" = ( /obj/structure/platform, -/turf/open/desert/excavation/component5{ - dir = 6 - }, +/turf/open/desert/excavation/component5/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aJO" = ( /obj/structure/platform, -/turf/open/desert/excavation/component5{ - dir = 10 - }, +/turf/open/desert/excavation/component5/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aJP" = ( /obj/structure/platform, -/turf/open/desert/excavation/component5{ - dir = 5 - }, +/turf/open/desert/excavation/component5/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aJQ" = ( /turf/open/desert/desert_shore/desert_shore1, @@ -11825,9 +9139,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aJS" = ( /obj/structure/flora/grass/desert/lightgrass_12, @@ -11839,48 +9151,33 @@ /area/desert_dam/interior/caves/central_caves) "aJU" = ( /obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/interior/caves/central_caves) "aJV" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_crashsite) "aJW" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aJX" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aJY" = ( /turf/open/desert/excavation/component6, /area/desert_dam/exterior/valley/valley_crashsite) "aJZ" = ( -/turf/open/desert/excavation/component6{ - dir = 1 - }, +/turf/open/desert/excavation/component6/north, /area/desert_dam/exterior/valley/valley_crashsite) "aKa" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/desert/excavation/component6{ - dir = 4 - }, +/turf/open/desert/excavation/component6/east, /area/desert_dam/exterior/valley/valley_crashsite) "aKb" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -11893,15 +9190,11 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aKc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "aKd" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aKe" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -11910,25 +9203,17 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "aKf" = ( -/turf/open/desert/excavation/component6{ - dir = 8 - }, +/turf/open/desert/excavation/component6/west, /area/desert_dam/exterior/valley/valley_crashsite) "aKg" = ( -/turf/open/desert/excavation/component6{ - dir = 6 - }, +/turf/open/desert/excavation/component6/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aKh" = ( -/turf/open/desert/excavation/component6{ - dir = 10 - }, +/turf/open/desert/excavation/component6/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aKi" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/excavation/component6{ - dir = 5 - }, +/turf/open/desert/excavation/component6/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aKj" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -11938,16 +9223,11 @@ /area/desert_dam/exterior/valley/valley_crashsite) "aKk" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_telecoms) "aKl" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "aKm" = ( /obj/structure/flora/bush/desert{ @@ -11957,9 +9237,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "aKn" = ( /obj/structure/stairs, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "aKo" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -11968,18 +9246,14 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "aKp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Xenoflora" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aKq" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -11988,23 +9262,17 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) "aKs" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/workshop) "aKt" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "aKu" = ( /obj/structure/platform{ @@ -12016,9 +9284,7 @@ /area/desert_dam/exterior/river/riverside_central_south) "aKv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) "aKw" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -12026,32 +9292,22 @@ /area/desert_dam/exterior/river/riverside_central_north) "aKx" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_central_north) "aKy" = ( -/turf/open/desert/excavation/component7{ - dir = 1 - }, +/turf/open/desert/excavation/component7/north, /area/desert_dam/exterior/valley/valley_crashsite) "aKz" = ( -/turf/open/desert/excavation/component7{ - dir = 4 - }, +/turf/open/desert/excavation/component7/east, /area/desert_dam/exterior/valley/valley_crashsite) "aKA" = ( -/turf/open/desert/excavation/component7{ - dir = 8 - }, +/turf/open/desert/excavation/component7/west, /area/desert_dam/exterior/valley/valley_crashsite) "aKB" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aKC" = ( /obj/structure/flora/bush/desert/cactus{ @@ -12107,34 +9363,24 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/desert/excavation/component7{ - dir = 6 - }, +/turf/open/desert/excavation/component7/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "aKM" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7{ - dir = 10 - }, +/turf/open/desert/excavation/component7/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "aKN" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7{ - dir = 5 - }, +/turf/open/desert/excavation/component7/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aKO" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/interior/caves/central_caves) "aKP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "aKQ" = ( /obj/structure/platform{ @@ -12166,9 +9412,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "aKU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -12177,15 +9421,11 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "aKV" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aKW" = ( /obj/structure/desertdam/decals/road_edge{ @@ -12198,10 +9438,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "aKX" = ( /obj/effect/landmark/queen_spawn, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/interior/caves/east_caves) "aKY" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -12210,16 +9447,11 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/landing_pad_two) "aKZ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLa" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) "aLb" = ( /obj/structure/machinery/power/apc{ @@ -12227,22 +9459,14 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLd" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_north) "aLe" = ( /obj/structure/platform{ @@ -12259,31 +9483,23 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLg" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLh" = ( -/turf/open/floor/coagulation{ - icon_state = "0,4" - }, +/turf/open/floor/coagulation/icon0_4, /area/desert_dam/exterior/valley/valley_mining) "aLi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLj" = ( /obj/effect/decal/warning_stripes{ @@ -12291,9 +9507,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLk" = ( /obj/effect/decal/warning_stripes{ @@ -12302,65 +9516,47 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLm" = ( /obj/structure/machinery/sensortower, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLo" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLq" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_crashsite) "aLr" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/desert_dam/exterior/valley/valley_crashsite) "aLs" = ( /obj/effect/decal/warning_stripes{ @@ -12370,17 +9566,13 @@ icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLu" = ( /obj/effect/decal/warning_stripes{ @@ -12389,15 +9581,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) "aLv" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_labs) "aLw" = ( /obj/structure/stairs, @@ -12405,44 +9593,33 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aLx" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "aLy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) "aLz" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aLA" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "aLB" = ( /obj/structure/platform_decoration{ @@ -12451,9 +9628,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "aLC" = ( /obj/structure/platform{ @@ -12471,10 +9646,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_crashsite) "aLF" = ( /obj/structure/platform{ @@ -12495,9 +9667,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "aLH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/lab_northeast/east_lab_RND) "aLI" = ( /obj/effect/decal/cleanable/dirt, @@ -12514,35 +9684,23 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) "aLL" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLM" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLO" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aLP" = ( /turf/closed/wall/hangar{ @@ -12578,17 +9736,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_crashsite) "aLU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) "aLV" = ( /obj/structure/girder/displaced, @@ -12620,14 +9774,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Xenoflora" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aMb" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "aMc" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -12636,9 +9786,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aMd" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -12679,18 +9827,14 @@ /obj/structure/filtration/coagulation{ icon_state = "1,5" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aMm" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aMn" = ( /obj/structure/platform{ @@ -12698,9 +9842,7 @@ }, /obj/effect/blocker/toxic_water/Group_2, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aMo" = ( /obj/structure/cargo_container/trijent/left/alt, @@ -12715,18 +9857,14 @@ /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) "aMr" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7-2" - }, +/turf/open/floor/coagulation/icon7_7_2, /area/desert_dam/building/water_treatment_two) "aMs" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,6" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aMt" = ( /obj/effect/decal/warning_stripes{ @@ -12744,22 +9882,15 @@ "aMv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/warehouse) "aMw" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) "aMx" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aMy" = ( /obj/structure/disposalpipe/segment{ @@ -12779,10 +9910,7 @@ "aMA" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/building/substation/northeast) "aMB" = ( /obj/structure/machinery/power/apc{ @@ -12790,54 +9918,38 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/northeast) "aMC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "aMD" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "aME" = ( -/turf/open/floor/filtrationside{ - dir = 10 - }, +/turf/open/floor/filtrationside/southwest, /area/desert_dam/exterior/valley/valley_medical) "aMF" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) "aMG" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/northeast) "aMH" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aMI" = ( /obj/structure/sign/poster, @@ -12854,41 +9966,32 @@ icon_state = "S" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aMK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/northeast) "aML" = ( /obj/structure/machinery/light, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aMM" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aMN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "aMO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "aMP" = ( /obj/structure/disposalpipe/segment{ @@ -12900,27 +10003,21 @@ /obj/effect/decal/cleanable/dirt, /obj/item/stool, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "aMR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/conveyor_switch{ id = "cargo_storage" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "aMS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "aMT" = ( /obj/effect/decal/warning_stripes{ @@ -12930,81 +10027,59 @@ icon_state = "W" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aMU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aMV" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "aMW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "aMX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/northeast) "aMY" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,6" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aMZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,4" - }, +/turf/open/floor/coagulation/icon8_4, /area/desert_dam/exterior/valley/valley_mining) "aNa" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_mining) "aNb" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/northeast) "aNc" = ( /obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/northeast) "aNd" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/building/substation/northeast) "aNe" = ( /obj/structure/machinery/conveyor{ @@ -13019,7 +10094,7 @@ icon_state = "N" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aNf" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, @@ -13027,10 +10102,7 @@ "aNg" = ( /obj/structure/surface/table, /obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/northeast) "aNh" = ( /turf/open/floor/prison, @@ -13041,9 +10113,7 @@ /area/desert_dam/building/substation/northeast) "aNj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "aNk" = ( /obj/structure/machinery/power/terminal{ @@ -13052,10 +10122,7 @@ /turf/open/floor/prison, /area/desert_dam/building/substation/northeast) "aNl" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/northeast) "aNm" = ( /obj/structure/machinery/conveyor{ @@ -13069,7 +10136,7 @@ icon_state = "N" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aNn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -13087,14 +10154,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "aNp" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_northwest) "aNq" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -13109,42 +10172,28 @@ /area/desert_dam/exterior/valley/valley_medical) "aNs" = ( /obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/control_room) "aNt" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/control_room) "aNu" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/control_room) "aNv" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) "aNw" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/northeast) "aNx" = ( /obj/effect/decal/sand_overlay/sand1, @@ -13152,24 +10201,21 @@ icon_state = "W" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aNy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/floodgate_control) "aNz" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aNA" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/machinery/conveyor_switch{ id = "cargo_landing" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aNB" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ @@ -13182,16 +10228,11 @@ /turf/open/floor/plating, /area/desert_dam/building/substation/northeast) "aND" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/desert_dam/building/security/lobby) "aNE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "aNF" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -13199,9 +10240,7 @@ /area/desert_dam/exterior/valley/valley_medical) "aNG" = ( /obj/structure/machinery/light, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "aNH" = ( /turf/closed/wall/r_wall/prison, @@ -13214,14 +10253,10 @@ /area/desert_dam/building/substation/northeast) "aNJ" = ( /obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "aNK" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "aNL" = ( /obj/structure/desertdam/decals/road_stop{ @@ -13236,36 +10271,25 @@ /area/desert_dam/exterior/valley/valley_northwest) "aNN" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) "aNP" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "aNQ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/substation/northeast) "aNR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/building/substation/northeast) "aNS" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) "aNT" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_medical) "aNU" = ( /obj/structure/window/framed/hangar/reinforced, @@ -13275,10 +10299,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/loading) "aNY" = ( /obj/structure/sign/safety/restrictedarea, @@ -13290,9 +10311,7 @@ /area/shuttle/trijent_shuttle/lz2) "aNZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "aOc" = ( /turf/closed/wall, @@ -13302,9 +10321,7 @@ /obj/structure/filtration/coagulation{ icon_state = "1,2" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aOe" = ( /obj/structure/desertdam/decals/road_edge{ @@ -13314,16 +10331,10 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aOf" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_wilderness) "aOg" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_wilderness) "aOh" = ( /turf/open/desert/dirt, @@ -13332,82 +10343,57 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "aOj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_wilderness) "aOk" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_wilderness) "aOl" = ( /obj/structure/filtration/flacculation_arm, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aOm" = ( -/turf/open/floor/filtrationside{ - dir = 9 - }, +/turf/open/floor/filtrationside/northwest, /area/desert_dam/exterior/valley/valley_mining) "aOn" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/floodgate_control) "aOo" = ( -/turf/open/floor/filtrationside{ - dir = 1 - }, +/turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_mining) "aOp" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,6" - }, +/turf/open/floor/coagulation/icon8_6, /area/desert_dam/exterior/valley/valley_mining) "aOq" = ( /obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside{ - dir = 1 - }, +/turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_mining) "aOr" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "aOt" = ( /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) "aOu" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aOv" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,2" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aOw" = ( /obj/structure/machinery/light{ @@ -13418,19 +10404,13 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "aOx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Floodgate Control" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/floodgate_control) "aOy" = ( /turf/closed/wall/hangar{ @@ -13446,32 +10426,21 @@ name = "\improper Filtration" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aOB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aOC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "aOD" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "2,1" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aOE" = ( /obj/structure/machinery/light{ @@ -13480,10 +10449,7 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) "aOG" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_medical) "aOH" = ( /turf/open/floor/prison, @@ -13493,34 +10459,22 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) "aOK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/building/substation/northwest) "aOL" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/dam_interior/north_tunnel) "aOM" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/north_tunnel) "aOO" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/desert_dam/building/substation/northwest) "aOP" = ( /obj/structure/floodgate, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river_mouth/southern) "aOQ" = ( /obj/structure/floodgate, @@ -13531,9 +10485,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "aOS" = ( /obj/structure/machinery/light{ @@ -13543,14 +10495,10 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) "aOT" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_wilderness) "aOU" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_wilderness) "aOV" = ( /obj/structure/floodgate, @@ -13563,101 +10511,65 @@ id = null; name = "\improper Elevator Lock" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/shuttle/trijent_shuttle/lz2) "aOY" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) "aOZ" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/desert_dam/exterior/valley/valley_mining) "aPc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aPd" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aPf" = ( -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_mining) "aPg" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_wilderness) "aPh" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/desert_dam/exterior/valley/valley_mining) "aPi" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_wilderness) "aPj" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/desert_dam/building/water_treatment_two/purification) "aPk" = ( -/turf/open/floor/filtrationside{ - dir = 8 - }, +/turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_mining) "aPl" = ( -/turf/open/floor/coagulation{ - icon_state = "1,1" - }, +/turf/open/floor/coagulation/icon1_1, /area/desert_dam/building/water_treatment_two) "aPm" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,1" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) "aPn" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, +/turf/open/floor/coagulation/icon4_8, /area/desert_dam/building/water_treatment_two/purification) "aPo" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/building/water_treatment_two/purification) "aPq" = ( /obj/structure/cargo_container/trijent/left/alt, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aPr" = ( /obj/structure/cargo_container/trijent/mid/alt, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aPs" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -13679,23 +10591,17 @@ /area/desert_dam/exterior/river/riverside_east) "aPw" = ( /obj/structure/cargo_container/trijent/right/alt, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aPx" = ( /obj/structure/cargo_container/ferret/left, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aPy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_medical) "aPz" = ( /obj/structure/desertdam/decals/road_edge{ @@ -13717,45 +10623,29 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/landing_pad_one) "aPC" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_one) "aPD" = ( /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) "aPE" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/northwest) "aPF" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/northwest) "aPG" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aPI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/substation/northwest) "aPJ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -13768,7 +10658,7 @@ icon_state = "tree_2" }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "aPL" = ( /obj/structure/machinery/shower{ dir = 1 @@ -13782,9 +10672,7 @@ layer = 2 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_two/purification) "aPN" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -13794,14 +10682,10 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "aPP" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "aPQ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -13820,9 +10704,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aPS" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/dam_interior/north_tunnel) "aPT" = ( /obj/structure/desertdam/decals/road_edge{ @@ -13836,10 +10718,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aPU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "aPV" = ( /obj/structure/machinery/light{ @@ -13853,20 +10732,13 @@ /obj/item/tool/extinguisher{ pixel_x = -10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "aPW" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/building/water_treatment_two/purification) "aPX" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_two/purification) "aPY" = ( /obj/structure/desertdam/decals/road_edge{ @@ -13876,9 +10748,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aPZ" = ( /obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aQa" = ( /obj/structure/machinery/light{ @@ -13891,9 +10761,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "aQc" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -13905,18 +10773,13 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Filtration" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aQe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_one) "aQf" = ( /obj/effect/decal/warning_stripes{ @@ -13946,17 +10809,13 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_one) "aQj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/landing_pad_one) "aQk" = ( /obj/structure/machinery/power/apc{ @@ -13964,10 +10823,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/loading) "aQl" = ( /obj/structure/filtration/collector_pipes{ @@ -13984,49 +10840,34 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) "aQn" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_labs) "aQo" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/filtration/machine_96x96{ icon_state = "disinfection" }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/building/water_treatment_two/purification) "aQp" = ( /obj/effect/blocker/toxic_water/Group_2/delay, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aQq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "aQr" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_two/purification) "aQt" = ( /obj/effect/decal/cleanable/dirt, @@ -14042,9 +10883,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aQv" = ( /obj/structure/cargo_container/ferret/right, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aQw" = ( /obj/structure/machinery/light{ @@ -14053,19 +10892,13 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) "aQx" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/desert_dam/building/water_treatment_two/purification) "aQz" = ( -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/building/water_treatment_two/purification) "aQB" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/desert_dam/building/water_treatment_two/purification) "aQC" = ( /obj/effect/decal/cleanable/dirt, @@ -14080,15 +10913,10 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aQF" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/desert_dam/building/water_treatment_two/purification) "aQG" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/northwest) "aQH" = ( /obj/structure/disposalpipe/segment{ @@ -14098,10 +10926,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) "aQI" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -14116,35 +10941,25 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aQK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/western_dam_cave) "aQL" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8" - }, +/turf/open/floor/coagulation/icon6_8, /area/desert_dam/exterior/valley/valley_mining) "aQM" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8" - }, +/turf/open/floor/coagulation/icon7_8, /area/desert_dam/exterior/valley/valley_mining) "aQN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/exterior/valley/valley_mining) "aQO" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "aQP" = ( /turf/closed/wall/hangar{ @@ -14162,9 +10977,7 @@ dir = 9 }, /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_one) "aQT" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -14176,9 +10989,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_one) "aQU" = ( /obj/effect/decal/warning_stripes{ @@ -14196,49 +11007,30 @@ /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) "aQX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_one) "aQY" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_one) "aQZ" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/landing_pad_one) "aRc" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/desert_dam/building/substation/northwest) "aRd" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/desert_dam/building/substation/northwest) "aRf" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/desert_dam/building/substation/northwest) "aRg" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/desert_dam/building/substation/northwest) "aRh" = ( /obj/structure/filtration/machine_96x96/filtration, -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, +/turf/open/floor/coagulation/icon4_8, /area/desert_dam/building/water_treatment_two/purification) "aRi" = ( /obj/structure/stairs{ @@ -14247,33 +11039,25 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_wilderness) "aRj" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_wilderness) "aRk" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_wilderness) "aRl" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aRp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ @@ -14282,31 +11066,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/north_wing_hallway) "aRq" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "aRs" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "aRt" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "aRu" = ( /obj/structure/toilet{ @@ -14315,37 +11089,25 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "aRv" = ( /turf/closed/wall, /area/desert_dam/interior/caves/east_caves) "aRw" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/interior/caves/east_caves) "aRx" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/interior/caves/east_caves) "aRy" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "aRz" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "aRA" = ( /obj/structure/flora/tree/joshua, @@ -14362,24 +11124,16 @@ /turf/open/gm/empty, /area/shuttle/trijent_shuttle/lz2) "aRC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/desert_dam/building/substation/northwest) "aRD" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/substation/northwest) "aRE" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/substation/northwest) "aRF" = ( /obj/structure/desertdam/decals/road_edge{ @@ -14392,24 +11146,18 @@ dir = 8 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_wilderness) "aRI" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/building/water_treatment_two/purification) "aRJ" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "2,7" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aRK" = ( /obj/structure/prop/dam/large_boulder/boulder2, @@ -14417,22 +11165,13 @@ /area/desert_dam/exterior/valley/valley_medical) "aRL" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/emergency_room) "aRM" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_wilderness) "aRN" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_wilderness) "aRO" = ( /obj/structure/machinery/power/apc{ @@ -14440,18 +11179,13 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "aRP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "aRQ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -14463,67 +11197,45 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "aRR" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "aRS" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/exterior/telecomm/lz1_south) "aRT" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/interior/caves/east_caves) "aRU" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "aRV" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/interior/caves/east_caves) "aRW" = ( -/turf/open/floor/coagulation{ - icon_state = "7,1" - }, +/turf/open/floor/coagulation/icon7_1, /area/desert_dam/building/water_treatment_two) "aRX" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/garage) "aRZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_one) "aSa" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/landing_pad_one) "aSb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/landing_pad_one) "aSc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -14538,46 +11250,32 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/landing_pad_one) "aSe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/desert_dam/building/substation/northwest) "aSf" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/substation/northwest) "aSg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_labs) "aSh" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "3,7" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aSi" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "aSj" = ( /obj/structure/desertdam/decals/road_edge, @@ -14587,10 +11285,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aSk" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_wilderness) "aSl" = ( /obj/effect/decal/warning_stripes{ @@ -14608,19 +11303,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "aSn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aSo" = ( /obj/structure/disposalpipe/junction{ @@ -14634,37 +11324,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aSr" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_2"; layer = 2 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_two/purification) "aSs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/garage) "aSt" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/garage) "aSu" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aSv" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_telecoms) "aSw" = ( /obj/structure/window/framed/hangar/reinforced, @@ -14687,18 +11367,13 @@ /obj/item/tool/stamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aSC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/northwest) "aSD" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -14712,28 +11387,20 @@ icon_state = "lower_2"; layer = 2 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/building/water_treatment_two/purification) "aSG" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "aSH" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_mining) "aSI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "aSJ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -14745,54 +11412,34 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) "aSL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "aSM" = ( -/turf/open/floor/coagulation{ - icon_state = "0,4" - }, +/turf/open/floor/coagulation/icon0_4, /area/desert_dam/building/water_treatment_two/purification) "aSN" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_telecoms) "aSP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/building/mining/workshop) "aSQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "aSR" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7-2" - }, +/turf/open/floor/coagulation/icon8_7_2, /area/desert_dam/building/water_treatment_two/purification) "aST" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/exterior/valley/valley_crashsite) "aSU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "aSV" = ( /obj/structure/desertdam/decals/road_stop{ @@ -14802,9 +11449,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aSW" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "aSX" = ( /obj/effect/decal/cleanable/dirt, @@ -14825,76 +11470,54 @@ /obj/structure/filtration/coagulation{ icon_state = "6,7" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aTa" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "1,5" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aTb" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,6" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aTc" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,6" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aTe" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/mining/workshop) "aTg" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/desert_dam/building/substation/northwest) "aTh" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/desert_dam/building/substation/northwest) "aTi" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_A_1" }, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/building/water_treatment_two/purification) "aTj" = ( /obj/structure/largecrate/random/secure, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "aTk" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_central_north) "aTl" = ( /obj/structure/desertdam/decals/road_edge{ @@ -14904,32 +11527,24 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aTm" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_central_north) "aTn" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/north_valley_dam) "aTo" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/building/water_treatment_two/purification) "aTp" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_A_0" }, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/building/water_treatment_two/purification) "aTq" = ( /obj/structure/cargo_container/kelland/right, @@ -14937,9 +11552,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "aTr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "aTs" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -14950,15 +11563,11 @@ /area/desert_dam/exterior/valley/valley_civilian) "aTt" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "aTu" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/desert_dam/building/water_treatment_two/purification) "aTv" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -14971,22 +11580,15 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) "aTw" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "aTx" = ( /obj/structure/largecrate, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "aTy" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "aTz" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -14994,21 +11596,14 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) "aTB" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7" - }, +/turf/open/floor/coagulation/icon7_7, /area/desert_dam/building/water_treatment_two) "aTC" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) "aTF" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "aTG" = ( /turf/closed/wall/hangar{ @@ -15016,9 +11611,7 @@ }, /area/desert_dam/building/water_treatment_two/control_room) "aTH" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_telecoms) "aTI" = ( /obj/structure/platform{ @@ -15029,24 +11622,18 @@ /area/desert_dam/interior/lab_northeast/east_lab_containment) "aTJ" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_telecoms) "aTK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_telecoms) "aTL" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) "aTM" = ( /obj/structure/window/framed/hangar, @@ -15056,10 +11643,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/mining/workshop) "aTO" = ( /obj/structure/machinery/power/apc{ @@ -15067,10 +11651,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/mining/workshop) "aTP" = ( /obj/structure/desertdam/decals/road_stop{ @@ -15081,9 +11662,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aTQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/western_dam_cave) "aTR" = ( /obj/structure/machinery/shower{ @@ -15093,15 +11672,10 @@ /turf/open/floor/plating, /area/desert_dam/building/security/staffroom) "aTS" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/building/mining/workshop) "aTU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_telecoms) "aTW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -15109,18 +11683,12 @@ name = "\improper Filtration" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aTX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/mining/workshop) "aTY" = ( /obj/structure/surface/rack, @@ -15128,10 +11696,7 @@ /obj/item/stack/sheet/plasteel{ amount = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "aTZ" = ( /turf/closed/wall/r_wall/prison, @@ -15139,16 +11704,10 @@ "aUa" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "aUb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "aUc" = ( /turf/closed/wall/hangar{ @@ -15161,20 +11720,14 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "aUe" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/courtroom) "aUf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/desert_dam/building/security/lobby) "aUg" = ( /obj/structure/prop/dam/boulder/boulder2, @@ -15196,42 +11749,30 @@ /area/desert_dam/building/substation/northwest) "aUk" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_north) "aUl" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "aUm" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "aUn" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_north) "aUo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "aUp" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/telecomm/lz1_south) "aUq" = ( /obj/structure/prop/dam/wide_boulder/boulder1, @@ -15241,10 +11782,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Courtroom" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/courtroom) "aUs" = ( /obj/structure/window/framed/hangar, @@ -15255,19 +11793,14 @@ /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) "aUu" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_telecoms) "aUv" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/building/security/lobby) "aUw" = ( /obj/structure/desertdam/decals/road_edge{ @@ -15289,10 +11822,7 @@ name = "\improper Decontamination" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/equipment) "aUA" = ( /obj/structure/desertdam/decals/road_edge{ @@ -15310,41 +11840,27 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aUC" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/landing_pad_one) "aUD" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) "aUE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_one) "aUH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) "aUK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/courtroom) "aUL" = ( /obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_northwest) "aUM" = ( /obj/effect/decal/cleanable/dirt, @@ -15354,10 +11870,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "aUN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/equipment) "aUO" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -15376,9 +11889,7 @@ /area/desert_dam/building/security/observation) "aUT" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aUU" = ( /turf/closed/wall/hangar{ @@ -15391,10 +11902,7 @@ /area/desert_dam/building/mining/workshop) "aUW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "aUX" = ( /obj/structure/surface/rack, @@ -15422,10 +11930,7 @@ /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) "aVc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/mining/workshop) "aVd" = ( /turf/closed/wall/hangar{ @@ -15440,31 +11945,23 @@ /turf/closed/wall, /area/desert_dam/building/mining/workshop_foyer) "aVg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_one) "aVh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_one) "aVi" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/landing_pad_one) "aVj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) "aVk" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) "aVm" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/office) @@ -15473,33 +11970,21 @@ /turf/open/floor/plating, /area/desert_dam/building/water_treatment_two/hallway) "aVp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "aVr" = ( /obj/structure/machinery/computer/area_atmos, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aVs" = ( /obj/structure/machinery/computer/turbine_computer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aVu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Workshop Foyer" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop_foyer) "aVw" = ( /turf/closed/wall/r_wall/prison, @@ -15508,10 +11993,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/mining/workshop) "aVB" = ( /obj/structure/window/framed/prison/reinforced, @@ -15523,20 +12005,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "aVD" = ( /obj/structure/surface/table, /obj/structure/machinery/filtration_button{ id = "filter 2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aVE" = ( /obj/structure/surface/rack, @@ -15550,23 +12026,11 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_one) "aVG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_one) -"aVH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_northwest) "aVI" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/administration/control_room) @@ -15579,16 +12043,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/desert_dam/building/administration/office) "aVL" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) "aVM" = ( /obj/structure/window/framed/prison/reinforced, @@ -15626,21 +12085,14 @@ /area/desert_dam/exterior/valley/south_valley_dam) "aVS" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "aVT" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_central_north) "aVU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "aVV" = ( /obj/structure/surface/table, @@ -15648,23 +12100,15 @@ name = "Security Cameras - Habitation"; network = list("chigusa_2") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aVW" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aVY" = ( -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, +/turf/open/asphalt/cement/cement13, /area/desert_dam/interior/dam_interior/south_tunnel) "aVZ" = ( /turf/open/asphalt, @@ -15720,60 +12164,39 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_one) "aWj" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/control_room) "aWk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/desert_dam/building/administration/control_room) "aWl" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aWm" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aWn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/control_room) "aWo" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/control_room) "aWp" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/desert_dam/building/administration/control_room) "aWq" = ( /turf/open/floor/wood, @@ -15783,10 +12206,7 @@ dir = 4; layer = 3.25 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/desert_dam/building/administration/office) "aWs" = ( /obj/structure/platform{ @@ -15796,18 +12216,13 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/valley/south_valley_dam) "aWt" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/desert_dam/building/administration/office) "aWv" = ( /obj/structure/pipes/vents/pump, @@ -15821,27 +12236,17 @@ /area/desert_dam/building/administration/office) "aWx" = ( /obj/structure/closet/l3closet/virology, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "aWy" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/exterior/telecomm/lz1_south) "aWz" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_wilderness) "aWA" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_wilderness) "aWB" = ( /obj/effect/decal/warning_stripes{ @@ -15872,42 +12277,31 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) "aWG" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "aWH" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "aWI" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "1,2" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aWJ" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,2" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aWK" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/evidence) "aWL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/equipment) "aWM" = ( /obj/structure/window/framed/colony/reinforced, @@ -15915,15 +12309,10 @@ /area/desert_dam/building/administration/control_room) "aWN" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/administration/hallway) "aWO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/administration/control_room) "aWQ" = ( /obj/structure/machinery/power/apc{ @@ -15934,22 +12323,13 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) "aWR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/desert_dam/building/administration/office) "aWS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/desert_dam/building/administration/office) "aWT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/desert_dam/building/administration/office) "aWU" = ( /obj/structure/disposalpipe/segment{ @@ -15977,18 +12357,14 @@ /area/desert_dam/building/administration/hallway) "aWZ" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_central_north) "aXa" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "aXb" = ( /obj/structure/flora/pottedplant, @@ -16008,10 +12384,7 @@ "aXf" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/garage) "aXg" = ( /obj/structure/machinery/light{ @@ -16023,58 +12396,41 @@ /area/desert_dam/building/water_treatment_two/control_room) "aXh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aXi" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aXj" = ( /obj/structure/filtration/machine_32x32{ icon_state = "filtration_catwalk" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aXk" = ( /obj/structure/filtration/machine_64x96{ icon_state = "sedimentation_1"; pixel_y = -16 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aXl" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "2,1" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aXm" = ( /obj/structure/filtration/machine_96x96{ icon_state = "sedimentation_A_1"; pixel_y = -16 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aXo" = ( /obj/structure/machinery/disposal, @@ -16093,10 +12449,7 @@ /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_B_0" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aXr" = ( /obj/structure/disposalpipe/segment, @@ -16112,49 +12465,33 @@ dir = 1; name = "\improper Colony Administration Office" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/office) "aXu" = ( /obj/structure/filtration/machine_64x96{ icon_state = "filtration_machine_A_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aXv" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_wilderness) "aXy" = ( /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_B_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aXz" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/security/lobby) "aXA" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "aXC" = ( /obj/structure/desertdam/decals/road_edge{ @@ -16166,10 +12503,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/building/security/lobby) "aXE" = ( /obj/structure/machinery/recharger, @@ -16183,24 +12517,17 @@ dir = 1; name = "\improper Colony Administration Office" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/office) "aXJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/administration/hallway) "aXK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/desert_dam/building/administration/control_room) "aXL" = ( /obj/structure/window/framed/colony/reinforced, @@ -16216,32 +12543,23 @@ /area/desert_dam/building/security/detective) "aXO" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/hallway) "aXP" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/hallway) "aXQ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/hallway) "aXR" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/hallway) "aXS" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -16254,14 +12572,10 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "aXU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_wilderness) "aXV" = ( /obj/structure/bookcase/manuals/engineering, @@ -16279,9 +12593,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/security/marshals_office) "aXY" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_wilderness) "aXZ" = ( /obj/structure/filingcabinet/security, @@ -16299,10 +12611,7 @@ "aYb" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "aYd" = ( /turf/closed/wall/r_wall/prison, @@ -16313,9 +12622,7 @@ /area/desert_dam/exterior/valley/valley_wilderness) "aYf" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_wilderness) "aYg" = ( /obj/structure/surface/rack, @@ -16325,101 +12632,66 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "aYi" = ( /obj/structure/filtration/machine_64x96{ icon_state = "filtration_machine_B_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_two/purification) "aYj" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/desert_dam/building/administration/hallway) "aYk" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aYl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/building/administration/hallway) "aYm" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/hallway) "aYn" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aYo" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/hallway) "aYp" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/hallway) "aYq" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/hallway) "aYr" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/administration/hallway) "aYs" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/administration/hallway) "aYt" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/administration/hallway) "aYu" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/administration/control_room) "aYv" = ( /obj/structure/window/reinforced/tinted{ @@ -16431,9 +12703,7 @@ /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYw" = ( /obj/structure/window/reinforced/tinted{ @@ -16445,9 +12715,7 @@ /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYx" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -16460,15 +12728,10 @@ dir = 8 }, /obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "aYz" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_wilderness) "aYD" = ( /obj/structure/surface/rack, @@ -16485,16 +12748,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aYG" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aYH" = ( /obj/structure/disposalpipe/segment{ @@ -16504,34 +12763,26 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aYI" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aYJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Restroom" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/administration/hallway) "aYK" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYL" = ( /obj/structure/window/reinforced/tinted{ @@ -16539,9 +12790,7 @@ }, /obj/structure/machinery/computer/atmos_alert, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYM" = ( /obj/structure/window/reinforced/tinted{ @@ -16549,9 +12798,7 @@ }, /obj/structure/machinery/computer/communications, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYN" = ( /obj/structure/closet/secure_closet/detective, @@ -16560,40 +12807,30 @@ "aYQ" = ( /obj/structure/filtration/coagulation_arm, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aYR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,7" - }, +/turf/open/floor/coagulation/icon8_7, /area/desert_dam/exterior/valley/valley_mining) "aYS" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 1; name = "\improper Administration Control Room" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYV" = ( /obj/structure/bed/chair/office/light{ @@ -16608,14 +12845,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "aYX" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/desert_dam/building/administration/hallway) "aYY" = ( /obj/structure/window/reinforced/tinted{ @@ -16625,9 +12858,7 @@ /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aYZ" = ( /obj/structure/window/reinforced/tinted{ @@ -16637,64 +12868,44 @@ /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aZa" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/desert_dam/building/administration/control_room) "aZb" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/administration/hallway) "aZc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/desert_dam/building/administration/hallway) "aZd" = ( /obj/structure/platform{ dir = 8 }, /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_labs) "aZe" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_north) "aZg" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_central_north) "aZh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "aZi" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,1" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/building/water_treatment_two) "aZj" = ( /obj/item/paper/courtroom{ @@ -16718,9 +12929,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "aZm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/south_tunnel) "aZn" = ( /obj/structure/bed/chair{ @@ -16742,63 +12951,43 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/security/lobby) "aZu" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aZv" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "aZw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/hallway) "aZx" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/administration/control_room) "aZy" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "aZz" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/control_room) "aZA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Administration Hallway" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "aZB" = ( /obj/structure/machinery/power/apc{ @@ -16806,10 +12995,7 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/administration/hallway) "aZC" = ( /turf/closed/wall/r_wall, @@ -16818,16 +13004,12 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_labs) "aZI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "aZJ" = ( /obj/structure/machinery/computer/cameras/wooden_tv, @@ -16847,19 +13029,14 @@ /area/desert_dam/building/security/marshals_office) "aZN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "aZO" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/control_room) "aZP" = ( /obj/structure/window/framed/colony/reinforced, @@ -16870,10 +13047,7 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/desert_dam/building/administration/lobby) "aZR" = ( /obj/structure/window/framed/colony/reinforced, @@ -16881,21 +13055,13 @@ /turf/open/floor/plating, /area/desert_dam/building/administration/hallway) "aZS" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/desert_dam/building/administration/lobby) "aZT" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "aZU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/building/administration/lobby) "aZV" = ( /obj/structure/surface/table, @@ -16911,16 +13077,12 @@ pixel_x = -3; pixel_y = -1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "aZW" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "aZX" = ( /obj/structure/machinery/power/apc{ @@ -16928,29 +13090,21 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "aZY" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "aZZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baa" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "bab" = ( /obj/structure/platform{ @@ -16968,9 +13122,7 @@ /area/desert_dam/building/water_treatment_two/hallway) "bae" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "baf" = ( /obj/structure/flora/pottedplant, @@ -16981,35 +13133,23 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) "bai" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/administration/hallway) "baj" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/control_room) "bak" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/administration/lobby) "bal" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/control_room) "bam" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -17025,25 +13165,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) "bap" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/desert_dam/building/administration/lobby) "baq" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/desert_dam/building/administration/lobby) "bar" = ( /obj/structure/machinery/power/apc{ @@ -17051,10 +13183,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/desert_dam/building/administration/lobby) "bas" = ( /obj/structure/disposalpipe/segment{ @@ -17064,9 +13193,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "bat" = ( /obj/structure/surface/table, @@ -17078,49 +13205,36 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "bau" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "bav" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baw" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "bax" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baz" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_telecoms) "baA" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -17132,9 +13246,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "baC" = ( /obj/structure/surface/table/reinforced, @@ -17151,55 +13263,38 @@ pixel_x = -6 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/lobby) "baD" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/desert_dam/building/administration/lobby) "baE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/desert_dam/building/administration/lobby) "baF" = ( /obj/structure/surface/table, /obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baG" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baH" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baI" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_northwest) "baL" = ( /obj/structure/machinery/light{ @@ -17232,39 +13327,28 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/hallway) "baQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/desert_dam/building/administration/control_room) "baR" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/administration/control_room) "baS" = ( /obj/structure/surface/table, /obj/item/tool/stamp{ icon_state = "stamp-ce" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baV" = ( /obj/structure/surface/table, /obj/item/paper, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "baW" = ( /obj/structure/desertdam/decals/road_edge{ @@ -17275,29 +13359,20 @@ icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "baX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "baZ" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/central_tunnel) "bba" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/dam_interior/south_tunnel) "bbb" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/desert_dam/building/administration/control_room) "bbc" = ( /obj/structure/surface/table, @@ -17305,68 +13380,46 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/desert_dam/building/administration/lobby) "bbd" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/desert_dam/building/administration/lobby) "bbe" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/desert_dam/building/administration/lobby) "bbf" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bbg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/administration/hallway) "bbh" = ( /obj/structure/surface/table, /obj/item/tool/stamp, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/desert_dam/building/administration/lobby) "bbi" = ( /obj/structure/surface/table, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/desert_dam/building/administration/lobby) "bbj" = ( /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/desert_dam/building/administration/lobby) "bbk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/desert_dam/building/administration/lobby) "bbl" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -17375,26 +13428,20 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/archives) "bbm" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; name = "\improper Colony Archives" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/archives) "bbn" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Administration Lobby" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "bbo" = ( /obj/structure/window/framed/prison/reinforced, @@ -17408,28 +13455,20 @@ /area/desert_dam/exterior/valley/valley_northwest) "bbs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "bbv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_wilderness) "bbw" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_wilderness) "bbx" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/dam_interior/central_tunnel) "bby" = ( /obj/structure/machinery/light{ @@ -17437,16 +13476,10 @@ }, /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/desert_dam/building/mining/workshop_foyer) "bbz" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_telecoms) "bbA" = ( /obj/structure/disposalpipe/segment, @@ -17456,9 +13489,7 @@ "bbB" = ( /obj/effect/decal/sand_overlay/sand2/corner2, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/western_dam_cave) "bbC" = ( /turf/closed/wall/r_wall, @@ -17470,9 +13501,7 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bbE" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -17487,31 +13516,23 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_telecoms) "bbH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_northwest) "bbI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bbK" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "bbL" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -17549,9 +13570,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bbT" = ( /obj/structure/desertdam/decals/road_edge{ @@ -17563,9 +13582,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bbV" = ( /obj/structure/machinery/door_control{ @@ -17581,23 +13598,17 @@ dir = 1; name = "\improper Administration Hallway" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bbX" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/administration/hallway) "bbY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_northwest) "bbZ" = ( /obj/structure/stairs{ @@ -17609,9 +13620,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bca" = ( /obj/structure/platform_decoration{ @@ -17623,9 +13632,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bcb" = ( /obj/structure/disposalpipe/segment{ @@ -17634,9 +13641,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bcc" = ( /obj/structure/disposalpipe/segment{ @@ -17645,85 +13650,61 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bck" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_telecoms) "bcn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "bco" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "bcp" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_northwest) "bcq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/desert_dam/building/administration/hallway) "bcr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Breakroom" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/meetingrooom) "bcs" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "bct" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "bcu" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "bcv" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_northwest) "bcy" = ( /obj/structure/flora/bush/desert/cactus{ @@ -17735,9 +13716,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) "bcA" = ( /obj/structure/surface/table/reinforced, @@ -17752,10 +13731,7 @@ name = "Security Cameras - Habitation"; network = list("chigusa_2") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "bcC" = ( /obj/structure/desertdam/decals/road_edge{ @@ -17763,21 +13739,17 @@ }, /obj/structure/desertdam/decals/road_stop, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "bcD" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_northwest) "bcE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/meetingrooom) "bcF" = ( /obj/structure/platform_decoration{ @@ -17786,33 +13758,23 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "bcH" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, +/turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/dam_interior/south_tunnel) "bcI" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bcJ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Holding" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/holding) "bcK" = ( /obj/structure/window/framed/hangar/reinforced, @@ -17827,10 +13789,7 @@ /area/desert_dam/building/security/prison) "bcO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bcQ" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -17850,17 +13809,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/administration/hallway) "bcW" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/engine_east_wing) "bcX" = ( /obj/structure/platform{ @@ -17869,22 +13822,15 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "bcY" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "bda" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bdb" = ( /obj/structure/machinery/light{ @@ -17902,18 +13848,12 @@ dir = 1 }, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "bde" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "bdf" = ( /turf/closed/wall/r_wall, @@ -17924,16 +13864,11 @@ /area/desert_dam/building/administration/overseer_office) "bdh" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northwest, /area/desert_dam/building/medical/chemistry) "bdi" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) "bdj" = ( /turf/open/floor/wood, @@ -17966,15 +13901,11 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "bdt" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) "bdw" = ( /obj/structure/surface/table/reinforced, @@ -17982,10 +13913,7 @@ dir = 1 }, /obj/item/storage/donut_box, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "bdz" = ( /obj/structure/surface/table/reinforced, @@ -17997,18 +13925,13 @@ health = 80 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "bdA" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_northwest) "bdB" = ( /obj/structure/closet/secure_closet/personal, @@ -18026,16 +13949,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "bdE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "bdF" = ( /obj/structure/disposalpipe/trunk{ @@ -18046,17 +13964,12 @@ /area/desert_dam/building/administration/overseer_office) "bdG" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) "bdH" = ( /obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "bdI" = ( /obj/structure/pipes/vents/pump{ @@ -18073,9 +13986,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "bdK" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_north) "bdM" = ( /obj/item/ashtray/bronze, @@ -18087,10 +13998,7 @@ /obj/structure/surface/table, /obj/item/tool/wirecutters, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bdO" = ( /obj/effect/decal/warning_stripes{ @@ -18115,10 +14023,7 @@ /obj/structure/surface/table, /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bdT" = ( /obj/structure/surface/table/woodentable/fancy, @@ -18133,80 +14038,54 @@ /area/desert_dam/building/security/detective) "bdV" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "bdW" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "bdX" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "bdY" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/desert_dam/building/administration/overseer_office) "bdZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/desert_dam/building/administration/overseer_office) "bec" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_medical) "bed" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) "bee" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 9 - }, +/turf/open/floor/carpet/edge/northwest, /area/desert_dam/building/administration/meetingrooom) "bef" = ( -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/desert_dam/building/administration/meetingrooom) "beg" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/desert_dam/building/administration/meetingrooom) "beh" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/desert_dam/building/administration/meetingrooom) "bei" = ( -/turf/open/floor/carpet/edge{ - dir = 5 - }, +/turf/open/floor/carpet/edge/northeast, /area/desert_dam/building/administration/meetingrooom) "bej" = ( /obj/structure/flora/grass/desert/heavygrass_3, @@ -18217,22 +14096,14 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_north) "bel" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/interior/caves/central_caves) "bem" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/mining/workshop_foyer) "ben" = ( /obj/structure/machinery/floodlight/landing, @@ -18240,9 +14111,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_one) "beo" = ( /obj/structure/machinery/light{ @@ -18254,21 +14123,15 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "beq" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "ber" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "bes" = ( /obj/structure/bed/chair/comfy/black, @@ -18279,15 +14142,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) "beu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/desert_dam/building/administration/meetingrooom) "bev" = ( /obj/structure/bed/chair/wood/normal{ @@ -18307,9 +14166,7 @@ /turf/open/floor/carpet, /area/desert_dam/building/administration/meetingrooom) "bey" = ( -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/desert_dam/building/administration/meetingrooom) "bez" = ( /obj/structure/machinery/light{ @@ -18318,10 +14175,7 @@ /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) "beB" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/interior/caves/central_caves) "beC" = ( /turf/open/desert/rock, @@ -18340,26 +14194,18 @@ /obj/structure/bed/chair/comfy/beige{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/desert_dam/building/administration/overseer_office) "beG" = ( /obj/structure/disposalpipe/segment, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "beH" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/desert_dam/building/administration/overseer_office) "beI" = ( /obj/structure/machinery/light{ @@ -18372,9 +14218,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) "beK" = ( /obj/structure/disposalpipe/segment{ @@ -18387,42 +14231,28 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/desert_dam/building/administration/meetingrooom) "beM" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/interior/caves/central_caves) "beN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "beO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "beP" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "beQ" = ( /obj/structure/surface/table, /obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "beS" = ( /obj/structure/machinery/power/apc{ @@ -18450,23 +14280,16 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_northwest) "beX" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_northwest) "beY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/desert_dam/building/administration/overseer_office) "beZ" = ( /obj/structure/platform{ @@ -18476,21 +14299,14 @@ /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "bfa" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/desert_dam/building/administration/overseer_office) "bfb" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) "bfc" = ( -/turf/open/floor/carpet/edge{ - dir = 10 - }, +/turf/open/floor/carpet/edge/southwest, /area/desert_dam/building/administration/meetingrooom) "bfd" = ( /turf/open/floor/carpet/edge, @@ -18507,10 +14323,7 @@ network = list("chigusa_1") }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/desert_dam/building/administration/lobby) "bfg" = ( /obj/structure/prop/dam/large_boulder{ @@ -18519,24 +14332,16 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) "bfh" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/interior/caves/central_caves) "bfi" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/interior/caves/central_caves) "bfj" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/north_tunnel) "bfk" = ( /obj/item/restraint/handcuffs, @@ -18549,10 +14354,7 @@ dir = 2; name = "\improper East Filtration" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bfm" = ( /turf/closed/wall/hangar{ @@ -18574,9 +14376,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_one) "bfp" = ( /obj/structure/flora/grass/desert/heavygrass_9, @@ -18589,10 +14389,7 @@ "bfr" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bfs" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -18608,9 +14405,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "bfu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_telecoms) "bfw" = ( /obj/structure/machinery/photocopier, @@ -18641,18 +14436,14 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_northwest) "bfC" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_northwest) "bfD" = ( /obj/structure/filtration/machine_64x128{ @@ -18666,9 +14457,7 @@ /area/desert_dam/building/water_treatment_two/purification) "bfG" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_telecoms) "bfH" = ( /obj/structure/prop/dam/large_boulder/boulder2, @@ -18678,9 +14467,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_northwest) "bfK" = ( /obj/structure/platform_decoration{ @@ -18692,50 +14479,38 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_northwest) "bfM" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_northwest) "bfN" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "bfO" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) "bfP" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) "bfQ" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bfR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -18743,10 +14518,7 @@ name = "\improper East Filtration" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bfS" = ( /obj/effect/decal/cleanable/blood, @@ -18756,17 +14528,13 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bfU" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bfV" = ( /obj/structure/platform{ @@ -18775,9 +14543,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/west_tunnel) "bfX" = ( /obj/effect/decal/cleanable/dirt, @@ -18811,26 +14577,19 @@ /area/desert_dam/building/water_treatment_one/breakroom) "bge" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) "bgf" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_northwest) "bgg" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bgh" = ( /obj/structure/platform_decoration{ @@ -18842,14 +14601,10 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bgj" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bgk" = ( /obj/structure/curtain/open/shower, @@ -18878,9 +14633,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "bgq" = ( /obj/structure/machinery/shower{ @@ -18890,9 +14643,7 @@ /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/equipment) "bgr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/valley/valley_wilderness) "bgs" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -18907,56 +14658,39 @@ name = "\improper Treatment Hallway" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/hallway) "bgu" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "2,7" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "bgx" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/south_tunnel) "bgy" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "3,7" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "bgz" = ( /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) "bgA" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/north_valley_dam) "bgC" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "bgD" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/water_treatment_two/lobby) "bgE" = ( /obj/effect/decal/cleanable/dirt, @@ -18969,9 +14703,7 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/purification) "bgH" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/exterior/valley/valley_wilderness) "bgI" = ( /obj/structure/surface/table, @@ -18981,16 +14713,12 @@ /area/desert_dam/building/water_treatment_two/control_room) "bgJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "bgL" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "bgM" = ( /obj/structure/machinery/light{ @@ -19000,9 +14728,7 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "bgN" = ( /obj/effect/decal/warning_stripes{ @@ -19015,39 +14741,24 @@ /area/desert_dam/exterior/landing_pad_one) "bgO" = ( /obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/north_valley_dam) "bgP" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/north_valley_dam) "bgQ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/north_valley_dam) "bgR" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/north_valley_dam) "bgT" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bgU" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) "bgV" = ( /obj/structure/machinery/power/apc{ @@ -19058,10 +14769,7 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) "bgW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "bgZ" = ( /obj/structure/surface/rack, @@ -19077,10 +14785,7 @@ "bhb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/equipment) "bhc" = ( /obj/structure/platform, @@ -19091,53 +14796,38 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/landing_pad_one) "bhf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/landing_pad_one) "bhg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/landing_pad_one) "bhh" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_one) "bhi" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/north_valley_dam) "bhj" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/north_valley_dam) "bhk" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "bhl" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "bhn" = ( /obj/structure/machinery/power/apc{ @@ -19150,14 +14840,16 @@ pixel_x = 11 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "bho" = ( /obj/structure/surface/table, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) +"bhp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "bhq" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/control_room) @@ -19172,10 +14864,7 @@ name = "Security Cameras - Habitation"; network = list("chigusa_2") }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/building/water_treatment_two/lobby) "bht" = ( /turf/closed/wall/r_wall/bunker{ @@ -19191,15 +14880,11 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) "bhw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) "bhx" = ( /obj/structure/bed/chair{ @@ -19209,65 +14894,43 @@ /area/desert_dam/building/security/office) "bhy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "bhz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "bhA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "bhC" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_northwest) "bhD" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/north_valley_dam) "bhE" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/north_valley_dam) "bhF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/north_valley_dam) "bhG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/north_valley_dam) "bhH" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/north_valley_dam) "bhI" = ( /obj/structure/machinery/power/apc{ @@ -19278,108 +14941,72 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) "bhL" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/desert_dam/building/substation/northwest) "bhM" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/south_tunnel) "bhN" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bhO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/hanger) "bhP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "bhQ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/desert_dam/interior/dam_interior/hanger) "bhR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/desert_dam/interior/dam_interior/hanger) "bhS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/hanger) "bhT" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bhV" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_northwest) "bhW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bhX" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_northwest) "bhY" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_northwest) "bhZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/north_valley_dam) "bia" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/north_valley_dam) "bib" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/north_valley_dam) "bic" = ( /obj/structure/stairs{ @@ -19388,25 +15015,19 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) "bie" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bif" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "big" = ( /obj/structure/bed/chair, @@ -19414,54 +15035,37 @@ /area/desert_dam/building/water_treatment_two/lobby) "bih" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/lobby) "bii" = ( /obj/structure/platform, /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bij" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) "bik" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bil" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/hanger) "bim" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/hanger) "bin" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bio" = ( /obj/structure/desertdam/decals/road_stop{ @@ -19472,17 +15076,13 @@ /area/desert_dam/exterior/valley/valley_northwest) "bip" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_northwest) "biq" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_northwest) "bir" = ( /obj/structure/desertdam/decals/road_edge{ @@ -19497,18 +15097,14 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) "bit" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/north_valley_dam) "biu" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) "biw" = ( /obj/structure/machinery/colony_floodlight, @@ -19535,29 +15131,20 @@ dir = 8 }, /obj/item/evidencebag, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "biC" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) "biD" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hanger) "biE" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f6" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "biF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19567,23 +15154,14 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f10" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "biH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hanger) "biI" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "biJ" = ( /obj/structure/disposalpipe/segment{ @@ -19642,23 +15220,16 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "biT" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/north_valley_dam) "biV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "biW" = ( /obj/structure/window/framed/hangar/reinforced, @@ -19668,32 +15239,22 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Treatment Controlroom" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/control_room) "biY" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/water_treatment_two/lobby) "biZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bjd" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bje" = ( /obj/effect/decal/warning_stripes{ @@ -19715,10 +15276,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "bjj" = ( /obj/structure/surface/table/reinforced, @@ -19728,10 +15286,7 @@ }, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "bjk" = ( /turf/closed/shuttle{ @@ -19740,9 +15295,7 @@ /area/desert_dam/interior/dam_interior/hanger) "bjn" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bjo" = ( /obj/structure/desertdam/decals/road_edge{ @@ -19774,23 +15327,17 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/north_valley_dam) "bjt" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/north_valley_dam) "bju" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/north_valley_dam) "bjv" = ( /obj/effect/decal/cleanable/blood, @@ -19801,10 +15348,7 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/building/water_treatment_two/lobby) "bjy" = ( /turf/closed/shuttle{ @@ -19828,17 +15372,13 @@ /area/desert_dam/interior/dam_interior/hanger) "bjE" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "bjF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/north_valley_dam) "bjG" = ( /obj/structure/desertdam/decals/road_edge, @@ -19847,10 +15387,7 @@ "bjH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/lobby) "bjI" = ( /obj/structure/bed/chair{ @@ -19862,17 +15399,13 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bjK" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bjL" = ( /obj/structure/platform{ @@ -19881,14 +15414,10 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "bjM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/north_valley_dam) "bjN" = ( /obj/structure/desertdam/decals/road_edge{ @@ -19916,16 +15445,12 @@ /obj/item/tool/pen/blue{ pixel_x = -6 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/water_treatment_two/lobby) "bjQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "bjR" = ( /obj/structure/bed/chair{ @@ -19943,33 +15468,22 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_mining) "bjZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/lobby) "bka" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) "bkb" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_mining) "bkc" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "bkf" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/north_valley_dam) "bkg" = ( /obj/structure/prop/dam/boulder/boulder2, @@ -19979,9 +15493,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/north_valley_dam) "bki" = ( /obj/effect/decal/warning_stripes{ @@ -20002,16 +15514,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/water_treatment_two/lobby) "bkm" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_mining) "bkn" = ( /turf/closed/shuttle{ @@ -20019,22 +15525,14 @@ }, /area/desert_dam/interior/dam_interior/hanger) "bkt" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/north_valley_dam) "bku" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/north_valley_dam) "bkv" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/north_valley_dam) "bkw" = ( /obj/structure/flora/bush/desert/cactus, @@ -20054,17 +15552,11 @@ /area/desert_dam/interior/dam_interior/west_tunnel) "bkC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/building/water_treatment_two/lobby) "bkD" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/lobby) "bkE" = ( /obj/effect/decal/warning_stripes{ @@ -20103,46 +15595,30 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "bkM" = ( /obj/structure/surface/table, /obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/desert_dam/building/water_treatment_two/lobby) "bkN" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/building/water_treatment_two/lobby) "bkO" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/desert_dam/building/water_treatment_two/lobby) "bkP" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_mining) "bkR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hanger) "bkS" = ( /obj/structure/shuttle/engine/heater, @@ -20154,10 +15630,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hanger) "bkU" = ( /turf/closed/wall/r_wall/bunker{ @@ -20167,9 +15640,7 @@ "bkV" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "bkW" = ( /turf/open/asphalt, @@ -20181,20 +15652,13 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bkY" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/north_valley_dam) "bkZ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/north_valley_dam) "bla" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/security/lobby) "blb" = ( /obj/structure/machinery/power/apc{ @@ -20202,24 +15666,16 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/desert_dam/building/mining/workshop_foyer) "blc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop_foyer) "bld" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/observation) "ble" = ( /obj/structure/cargo_container/hd/left, @@ -20234,9 +15690,7 @@ dir = 4 }, /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) "blh" = ( /obj/structure/desertdam/decals/road_edge{ @@ -20260,10 +15714,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Treatment Lobby" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/lobby) "bln" = ( /obj/structure/cargo_container/hd/mid, @@ -20274,42 +15725,31 @@ /obj/structure/filtration/coagulation{ icon_state = "6,7" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "blq" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "2,7" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "blr" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "3,7" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "blt" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_mining) "blv" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,7" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "blx" = ( /turf/closed/shuttle{ @@ -20331,10 +15771,7 @@ name = "Security Cameras - Operations"; network = list("chigusa_1") }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "blC" = ( /obj/structure/window/framed/bunker/reinforced, @@ -20344,9 +15781,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_one) "blE" = ( /obj/structure/desertdam/decals/road_edge, @@ -20368,9 +15803,7 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) "blI" = ( /turf/open/desert/rock/deep, @@ -20379,9 +15812,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/north_valley_dam) "blK" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -20390,14 +15821,10 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/north_valley_dam) "blL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/north_valley_dam) "blM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "blN" = ( /obj/effect/decal/warning_stripes{ @@ -20406,36 +15833,28 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) "blO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/south_valley_dam) "blQ" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "1,5" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "blR" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,6" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "blS" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,6" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "blT" = ( /obj/structure/disposalpipe/segment{ @@ -20448,18 +15867,14 @@ /obj/structure/filtration/coagulation{ icon_state = "1,5" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "blV" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,6" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "blW" = ( /obj/structure/surface/table/reinforced, @@ -20468,10 +15883,7 @@ }, /obj/structure/machinery/light, /obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "blX" = ( /obj/structure/surface/table/reinforced, @@ -20481,16 +15893,10 @@ }, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/building/security/lobby) "blY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/building/security/lobby) "blZ" = ( /turf/closed/wall/r_wall/bunker{ @@ -20500,24 +15906,16 @@ "bma" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bmb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bmc" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bmd" = ( /obj/structure/surface/table/reinforced, @@ -20532,23 +15930,17 @@ name = "Security Desk" }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bme" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,6" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "bmf" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) "bmg" = ( /obj/structure/desertdam/decals/road_edge{ @@ -20567,18 +15959,14 @@ /obj/structure/filtration/coagulation{ icon_state = "1,2" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "bmj" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,2" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "bmk" = ( /obj/structure/bed/chair{ @@ -20589,29 +15977,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/observation) "bml" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/observation) "bmm" = ( /obj/structure/dispenser, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/desert_dam/interior/dam_interior/tech_storage) "bmn" = ( /obj/structure/dispenser, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/interior/dam_interior/tech_storage) "bmo" = ( /obj/structure/safe, @@ -20620,10 +15998,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/interior/dam_interior/tech_storage) "bmp" = ( /obj/structure/surface/rack, @@ -20633,56 +16008,39 @@ /obj/item/stack/sheet/plasteel{ amount = 15 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/interior/dam_interior/tech_storage) "bmq" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/plasteel{ amount = 15 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/desert_dam/interior/dam_interior/tech_storage) "bmr" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bms" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bmu" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "bmv" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "bmw" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/north_valley_dam) "bmx" = ( /obj/structure/window/framed/prison/reinforced, @@ -20692,19 +16050,14 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/western_dam_cave) "bmz" = ( /obj/structure/cargo_container/hd/right, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) "bmA" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/exterior/valley/valley_crashsite) "bmB" = ( /obj/structure/cargo_container/kelland/left, @@ -20712,9 +16065,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "bmC" = ( /obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_medical) "bmD" = ( /turf/closed/shuttle{ @@ -20723,101 +16074,70 @@ /area/desert_dam/interior/dam_interior/hanger) "bmE" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/desert_dam/interior/dam_interior/tech_storage) "bmF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/desert_dam/interior/dam_interior/tech_storage) "bmG" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "bmI" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/desert_dam/interior/dam_interior/tech_storage) "bmJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) "bmK" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "bmL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/north_valley_dam) "bmN" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "1,2" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "bmQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/mining/workshop_foyer) "bmR" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "7,2" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "bmS" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "2,1" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "bmT" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,1" }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "bmV" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/interrogation) "bmW" = ( /obj/structure/machinery/power/apc{ @@ -20849,35 +16169,24 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "bnf" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "bng" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bnh" = ( /obj/structure/cargo_container/kelland/right, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/hanger) "bni" = ( /turf/closed/wall/r_wall/bunker{ @@ -20886,35 +16195,23 @@ /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bnj" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/desert_dam/interior/dam_interior/tech_storage) "bnl" = ( /obj/structure/surface/rack, /obj/item/circuitboard/computer/crew, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/desert_dam/interior/dam_interior/tech_storage) "bnm" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bnp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bnr" = ( /obj/structure/desertdam/decals/road_edge{ @@ -20937,9 +16234,7 @@ /area/desert_dam/exterior/valley/north_valley_dam) "bnu" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "bnv" = ( /obj/structure/flora/bush/desert/cactus{ @@ -20948,19 +16243,14 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) "bnw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/mining/workshop_foyer) "bnx" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "2,1" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "bny" = ( /obj/structure/flora/grass/desert/lightgrass_8, @@ -20970,39 +16260,28 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "bnA" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bnB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) "bnC" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bnD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Security Office Space" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/office) "bnF" = ( /turf/closed/wall/r_wall/prison, @@ -21018,60 +16297,40 @@ /area/desert_dam/interior/dam_interior/hanger) "bnI" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hanger) "bnJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/hanger) "bnK" = ( /obj/effect/blocker/toxic_water, /obj/structure/filtration/coagulation{ icon_state = "6,1" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "bnL" = ( /obj/structure/surface/table, /obj/item/tool/lighter/zippo, /obj/item/tool/lighter/zippo, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bnM" = ( /obj/structure/surface/table, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bnN" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bnO" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bnP" = ( /obj/structure/machinery/power/apc{ @@ -21079,17 +16338,11 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/interior/dam_interior/tech_storage) "bnQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/building/administration/control_room) "bnT" = ( /obj/structure/surface/rack, @@ -21111,31 +16364,20 @@ /obj/item/circuitboard/airlock, /obj/item/circuitboard/airlock, /obj/item/circuitboard/airlock, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/interior/dam_interior/tech_storage) "bnX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bnZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bob" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/north_valley_dam) "boc" = ( /obj/structure/disposalpipe/segment{ @@ -21147,32 +16389,23 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/north_valley_dam) "boe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "bof" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "bog" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/south_valley_dam) "boh" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -21180,51 +16413,33 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bom" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bop" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/desert_dam/building/mining/workshop_foyer) "boq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "bor" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Showers" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "bos" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshal Checkpoint" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bot" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21232,34 +16447,23 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bou" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bov" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Detectives Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/detective) "bow" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/western_dam_cave) "box" = ( /obj/structure/machinery/power/apc{ @@ -21267,9 +16471,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/interrogation) "boy" = ( /turf/closed/shuttle{ @@ -21280,29 +16482,18 @@ /obj/structure/surface/table, /obj/item/cell/high/empty, /obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "boA" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "boB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "boC" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/trackimp, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/interior/dam_interior/tech_storage) "boD" = ( /obj/structure/disposalpipe/segment{ @@ -21314,9 +16505,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "boF" = ( /obj/structure/surface/rack, @@ -21326,10 +16515,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/interior/dam_interior/tech_storage) "boG" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -21341,15 +16527,11 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "boI" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/north_valley_dam) "boJ" = ( /turf/closed/wall/hangar{ @@ -21359,34 +16541,25 @@ "boK" = ( /obj/structure/filtration/flacculation_arm, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/desert_dam/exterior/river/filtration_a) "boL" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "boM" = ( /obj/structure/machinery/colony_floodlight, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "boN" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Marshals Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/marshals_office) "boO" = ( /obj/structure/window/framed/colony/reinforced, @@ -21399,47 +16572,34 @@ /area/desert_dam/building/warehouse/breakroom) "boQ" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "boR" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "boS" = ( /obj/structure/machinery/colony_floodlight, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "boT" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/north_valley_dam) "boV" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) "boW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/desert_dam/building/security/northern_hallway) "boX" = ( /obj/structure/disposalpipe/segment{ @@ -21450,39 +16610,24 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "bpa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/desert_dam/building/security/northern_hallway) "bpb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/building/security/northern_hallway) "bpe" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/desert_dam/building/security/northern_hallway) "bpf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/building/security/northern_hallway) "bpg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bph" = ( /obj/structure/machinery/power/apc{ @@ -21490,27 +16635,18 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/desert_dam/building/security/northern_hallway) "bpi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/desert_dam/building/security/northern_hallway) "bpj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bpk" = ( /obj/structure/barricade/sandbags{ @@ -21522,68 +16658,47 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bpl" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/desert_dam/exterior/valley/valley_telecoms) "bpq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/building/security/northern_hallway) "bpr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_mining) "bps" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/exterior/valley/valley_telecoms) "bpt" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "bpu" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_one) "bpv" = ( /obj/structure/surface/table, /obj/item/trash/kepler, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bpw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21594,29 +16709,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "bpx" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bpy" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/interior/dam_interior/tech_storage) "bpz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21627,9 +16734,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bpA" = ( /obj/structure/surface/rack, @@ -21638,10 +16743,7 @@ /area/desert_dam/interior/dam_interior/tech_storage) "bpB" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/interior/dam_interior/tech_storage) "bpC" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -21666,9 +16768,7 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel) "bpL" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/north_tunnel) "bpM" = ( /turf/closed/wall/r_wall/bunker{ @@ -21676,31 +16776,21 @@ }, /area/desert_dam/interior/dam_interior/engine_west_wing) "bpN" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bpO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bpP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bpQ" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_one) "bpR" = ( /obj/structure/surface/table, @@ -21712,45 +16802,32 @@ icon_state = "pipe-c" }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/smes_main) "bpS" = ( /obj/structure/filtration/coagulation_arm, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/shallow/toxic, /area/desert_dam/exterior/river/filtration_a) "bpT" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_one) "bpU" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 15 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/smes_main) "bpV" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal{ amount = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/smes_main) "bpW" = ( /obj/structure/surface/table, @@ -21760,19 +16837,13 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 15 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/smes_main) "bpX" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/desert_dam/exterior/valley/valley_telecoms) "bpY" = ( /obj/structure/window/framed/colony/reinforced, @@ -21780,28 +16851,19 @@ /area/desert_dam/building/warehouse/breakroom) "bqa" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/interior/caves/central_caves) "bqc" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) "bqd" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) "bqe" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/north_tunnel) "bqf" = ( /obj/structure/platform{ @@ -21810,71 +16872,49 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/north_tunnel) "bqg" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/western_dam_cave) "bqh" = ( /obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bqi" = ( /obj/structure/barricade/sandbags{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bqk" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_one) "bql" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqp" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_mining) "bqq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21882,10 +16922,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21893,19 +16930,13 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqw" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -21914,10 +16945,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21927,10 +16955,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21939,10 +16964,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21954,47 +16976,30 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bqH" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bqI" = ( /obj/structure/surface/rack, /obj/item/cell/high/empty, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bqJ" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/lights/mixed, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/interior/dam_interior/tech_storage) "bqK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "bqL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/interior/dam_interior/tech_storage) "bqM" = ( /obj/structure/platform{ @@ -22007,80 +17012,49 @@ /area/desert_dam/interior/dam_interior/north_tunnel) "bqN" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bqO" = ( /obj/structure/platform, /obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bqP" = ( /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bqQ" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bqU" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bqV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_west_wing) "bqW" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bqX" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_west_wing) "bqY" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/smes_main) "bqZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bra" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "brb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/smes_main) "brc" = ( /turf/closed/wall/hangar{ @@ -22091,23 +17065,14 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Break Room" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "bre" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "brf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "brg" = ( /turf/closed/wall/r_wall, @@ -22121,28 +17086,18 @@ /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/building/substation/northwest) "brj" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_mining) "brm" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "brn" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/holding) "bro" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -22152,25 +17107,16 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "brp" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "brq" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/exterior/valley/valley_telecoms) "brr" = ( /turf/open/floor/plating, @@ -22180,41 +17126,27 @@ dir = 1; name = "\improper Marshal Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "brt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bru" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "brz" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_mining) "brA" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/mining/workshop) "brB" = ( /obj/structure/machinery/light{ @@ -22223,27 +17155,19 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "brC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/desert_dam/interior/dam_interior/hanger) "brD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/desert_dam/interior/dam_interior/hanger) "brE" = ( /obj/structure/machinery/power/apc{ @@ -22251,9 +17175,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "brF" = ( /turf/closed/wall/hangar{ @@ -22263,26 +17185,17 @@ "brG" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "brH" = ( /obj/structure/surface/rack, /obj/item/cell/high/empty, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "brI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/holding) "brK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22292,38 +17205,26 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "brL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "brM" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/interior/dam_interior/tech_storage) "brN" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/desert_dam/interior/dam_interior/tech_storage) "brO" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "brP" = ( /obj/structure/desertdam/decals/road_edge{ @@ -22353,27 +17254,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_west_wing) "brV" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_west_wing) "brW" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_one) "brX" = ( /turf/open/floor/greengrid, @@ -22385,105 +17278,67 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bsa" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/desert_dam/building/substation/northwest) "bsb" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/building/security/northern_hallway) "bsc" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bsd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/engine_east_wing) "bse" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/engine_east_wing) "bsf" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/engine_east_wing) "bsg" = ( /obj/structure/coatrack, /turf/open/floor/wood, /area/desert_dam/building/warehouse/breakroom) "bsh" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/desert_dam/building/security/northern_hallway) "bsi" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bsj" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/north_tunnel) "bsk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/northern_hallway) "bsl" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/desert_dam/building/security/northern_hallway) "bsm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/building/security/northern_hallway) "bsn" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/building/security/northern_hallway) "bso" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/desert_dam/building/security/northern_hallway) "bsp" = ( /obj/structure/window/framed/prison/reinforced, @@ -22496,45 +17351,28 @@ name = "\improper Marshal Office" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/southern_hallway) "bsr" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bss" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/hanger) "bst" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/hanger) "bsu" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/hanger) "bsw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/hanger) "bsy" = ( /obj/structure/surface/table, @@ -22543,18 +17381,12 @@ pixel_x = -24 }, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bsz" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bsA" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -22562,9 +17394,7 @@ name = "\improper Secure Tech Storage" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "bsC" = ( /obj/effect/decal/warning_stripes{ @@ -22574,36 +17404,23 @@ /area/desert_dam/interior/dam_interior/north_tunnel) "bsE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bsF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bsG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/smes_main) "bsH" = ( /obj/structure/pipes/vents/pump/on, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bsJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bsK" = ( /obj/structure/machinery/power/terminal{ @@ -22618,9 +17435,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bsM" = ( /obj/structure/closet/radiation, @@ -22630,34 +17445,21 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bsN" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bsO" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_east_wing) "bsP" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) "bsQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/security/southern_hallway) "bsR" = ( /obj/structure/filingcabinet, @@ -22665,10 +17467,7 @@ /turf/open/floor/wood, /area/desert_dam/building/warehouse/breakroom) "bsS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/southern_hallway) "bsT" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22683,59 +17482,36 @@ "btf" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/staffroom) "bth" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bti" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "btj" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/northwest, /area/desert_dam/interior/dam_interior/hanger) "btk" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "btl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3/north, /area/desert_dam/interior/dam_interior/hanger) "btm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3/east, /area/desert_dam/interior/dam_interior/hanger) "btp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "btq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "btr" = ( /obj/structure/machinery/power/apc{ @@ -22743,45 +17519,27 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bts" = ( /obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "btt" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "btu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "btv" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "btw" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "btx" = ( /obj/structure/closet/secure_closet/engineering_electrical, @@ -22789,10 +17547,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bty" = ( /turf/closed/wall/r_wall, @@ -22813,26 +17568,16 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "btD" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/north_tunnel) "btE" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/caves/east_caves) "btF" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "btG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/engine_west_wing) "btH" = ( /obj/structure/disposalpipe/segment{ @@ -22841,37 +17586,26 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "btI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "btJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/administration/hallway) "btK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/administration/hallway) "btL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/desert_dam/building/administration/hallway) "btM" = ( /obj/structure/disposalpipe/segment, @@ -22879,18 +17613,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "btP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Administration Hallway" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "btQ" = ( /turf/closed/wall/hangar{ @@ -22899,52 +17629,35 @@ /area/desert_dam/interior/dam_interior/engine_room) "btR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_mining) "btS" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; name = "\improper Engine Room" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_room) "btT" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "btU" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "btV" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_east_wing) "btW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/holding) "btX" = ( /turf/open/floor/prison, @@ -22954,10 +17667,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) "btZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/southern_hallway) "bua" = ( /obj/structure/closet/secure_closet/personal, @@ -22968,9 +17678,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/valley/valley_telecoms) "buc" = ( /turf/open/floor/wood, @@ -22985,38 +17693,26 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/holding) "buf" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/exterior/valley/valley_telecoms) "bug" = ( /obj/structure/closet/secure_closet/security, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/staffroom) "buh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_mining) "bui" = ( /obj/structure/closet/bombclosetsecurity, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/staffroom) "buj" = ( /turf/open/asphalt/cement, @@ -23029,19 +17725,13 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "bul" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_mining) "bum" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "but" = ( /obj/structure/window/framed/wood/reinforced, @@ -23052,29 +17742,19 @@ pixel_x = -32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/staffroom) "buv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "8,4" - }, +/turf/open/floor/coagulation/icon8_4, /area/desert_dam/exterior/valley/valley_mining) "bux" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_mining) "buz" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "buA" = ( /obj/structure/reagent_dispensers/fueltank, @@ -23088,10 +17768,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "buC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23100,10 +17777,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "buD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -23112,10 +17786,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "buI" = ( /obj/structure/machinery/door_control{ @@ -23128,9 +17799,7 @@ /area/desert_dam/interior/dam_interior/hanger) "buJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "buK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23139,49 +17808,32 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "buM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/administration/hallway) "buN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "buO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/desert_dam/building/administration/hallway) "buP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "buQ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "buR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -23207,18 +17859,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "buX" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "buY" = ( /obj/structure/disposalpipe/segment{ @@ -23226,32 +17874,21 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "buZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/administration/hallway) "bva" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/building/administration/hallway) "bvb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bvc" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -23261,62 +17898,41 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bvd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bve" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bvh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_northwest) "bvi" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bvj" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bvk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bvl" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bvm" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23324,28 +17940,20 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bvn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bvo" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_east_wing) "bvp" = ( /obj/structure/bed/chair/wood/normal{ @@ -23358,10 +17966,7 @@ amount = 10 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "bvr" = ( /obj/structure/stairs{ @@ -23370,27 +17975,19 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bvu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/building/mining/workshop) "bvv" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/mining/workshop) "bvw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/desert_dam/building/mining/workshop_foyer) "bvx" = ( /turf/open/floor/prison, @@ -23399,15 +17996,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/southern_hallway) "bvz" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_mining) "bvA" = ( /turf/closed/wall/hangar{ @@ -23419,9 +18011,7 @@ /obj/structure/machinery/computer/objective{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "bvD" = ( /turf/open/floor/prison, @@ -23430,10 +18020,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/staffroom) "bvF" = ( /obj/structure/disposalpipe/trunk{ @@ -23441,10 +18028,7 @@ icon_state = "pipe-u" }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/staffroom) "bvG" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23453,83 +18037,52 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/building/security/southern_hallway) "bvH" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/southern_hallway) "bvJ" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bvK" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/staffroom) "bvL" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/staffroom) "bvM" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/staffroom) "bvS" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/staffroom) "bvT" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/staffroom) "bvU" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bvV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "bvW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "bvX" = ( /obj/structure/disposalpipe/segment{ @@ -23537,15 +18090,10 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bvY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bwa" = ( /obj/structure/disposalpipe/junction{ @@ -23555,57 +18103,40 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bwb" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bwc" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bwd" = ( /obj/structure/platform, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bwe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/north_tunnel) "bwf" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher/mini, /obj/item/circuitboard/airlock, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwg" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwh" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwi" = ( /obj/structure/surface/table, @@ -23614,10 +18145,7 @@ }, /obj/item/storage/toolbox/emergency, /obj/item/circuitboard/firealarm, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwj" = ( /obj/structure/surface/table, @@ -23626,19 +18154,13 @@ /obj/item/device/assembly/igniter, /obj/item/device/assembly/signaller, /obj/item/circuitboard/airlock, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwk" = ( /obj/structure/surface/table, /obj/item/device/assembly/infra, /obj/item/device/assembly/voice, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwl" = ( /obj/structure/machinery/power/apc{ @@ -23646,105 +18168,64 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwn" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/engine_west_wing) "bwo" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/smes_main) "bwp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bwr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper SMES" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/dam_interior/smes_main) "bwt" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/desert_dam/interior/dam_interior/engine_room) "bwu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/dam_interior/engine_room) "bwv" = ( -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "bww" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, +/turf/open/floor/warning/northeast, /area/desert_dam/interior/dam_interior/engine_room) "bwx" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bwy" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bwz" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bwA" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_east_wing) "bwB" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/engine_east_wing) "bwD" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/staffroom) "bwE" = ( /obj/structure/bed/chair, @@ -23756,29 +18237,21 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/security/courtroom) "bwH" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/observation) "bwI" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/observation) "bwK" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/interrogation) "bwL" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/interrogation) "bwM" = ( /obj/structure/machinery/power/apc{ @@ -23786,15 +18259,11 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bwO" = ( /obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bwQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -23809,73 +18278,49 @@ /turf/open/floor/prison, /area/desert_dam/building/security/holding) "bwT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bwU" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bwV" = ( /obj/structure/machinery/light, /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bwW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3/west, /area/desert_dam/interior/dam_interior/hanger) "bwX" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3, /area/desert_dam/interior/dam_interior/hanger) "bwY" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bwZ" = ( /obj/structure/largecrate/random/barrel/white, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bxa" = ( /obj/structure/largecrate/random/barrel/blue, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bxb" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bxc" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3/west, /area/desert_dam/interior/dam_interior/hanger) "bxd" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bxe" = ( /obj/structure/disposalpipe/segment{ @@ -23886,43 +18331,29 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bxf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bxg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bxh" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bxi" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bxj" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_one) "bxk" = ( /obj/structure/surface/table, @@ -23933,17 +18364,13 @@ /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bxl" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bxm" = ( /obj/structure/disposalpipe/segment{ @@ -23952,16 +18379,11 @@ }, /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bxn" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bxo" = ( /obj/effect/decal/warning_stripes{ @@ -23975,9 +18397,7 @@ }, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bxr" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bxs" = ( /obj/structure/stairs{ @@ -23986,30 +18406,21 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bxt" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bxu" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bxv" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/custom/metal_foam, /obj/item/explosive/grenade/custom/metal_foam, /obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bxy" = ( /obj/structure/disposalpipe/junction{ @@ -24019,9 +18430,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bxz" = ( /obj/structure/machinery/power/apc{ @@ -24029,78 +18438,51 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/smes_main) "bxB" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/smes_main) "bxD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/desert_dam/interior/dam_interior/engine_room) "bxF" = ( /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) "bxJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, +/turf/open/floor/warning/east, /area/desert_dam/interior/dam_interior/engine_room) "bxK" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/item/device/radio, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bxL" = ( /obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bxM" = ( /obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/engine_east_wing) "bxN" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_east_wing) "bxQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bxR" = ( /obj/structure/barricade/sandbags, /obj/structure/barricade/sandbags{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bxS" = ( /obj/structure/platform{ @@ -24110,9 +18492,7 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "bxT" = ( /obj/structure/platform{ @@ -24122,9 +18502,7 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_east) "bxU" = ( /obj/structure/platform{ @@ -24134,18 +18512,14 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "bxV" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "bxW" = ( /obj/structure/platform{ @@ -24164,9 +18538,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bxZ" = ( /obj/structure/disposalpipe/segment, @@ -24176,23 +18548,16 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "byb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/southern_hallway) "bym" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/east_caves) "byn" = ( /turf/closed/wall/r_wall/bunker{ @@ -24207,19 +18572,13 @@ "byp" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/desert_dam/building/administration/overseer_office) "byq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Hangar" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "byr" = ( /obj/structure/machinery/door_control{ @@ -24234,24 +18593,15 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "byt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "byu" = ( /obj/structure/surface/table, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "byv" = ( /obj/structure/machinery/light{ @@ -24260,29 +18610,21 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "byw" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "byx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "byy" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "byz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -24292,9 +18634,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "byA" = ( /obj/structure/disposalpipe/junction{ @@ -24304,18 +18644,14 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "byB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "byC" = ( /obj/structure/window/framed/hangar, @@ -24327,50 +18663,35 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "byE" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "byL" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_room) "byP" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/substation/northwest) "byQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/staffroom) "byR" = ( /obj/structure/closet/secure_closet/marshal, /obj/item/clothing/suit/storage/CMB, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/staffroom) "byS" = ( /obj/structure/disposalpipe/segment{ @@ -24382,9 +18703,7 @@ /area/desert_dam/interior/dam_interior/engine_east_wing) "byT" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) "byU" = ( /obj/structure/window/framed/colony/reinforced, @@ -24392,15 +18711,11 @@ /area/desert_dam/building/security/staffroom) "byV" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_mining) "byW" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_mining) "byX" = ( /obj/structure/machinery/light{ @@ -24413,14 +18728,10 @@ dir = 1 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "byZ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "bza" = ( /obj/structure/surface/table, @@ -24454,14 +18765,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bzi" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bzj" = ( /obj/structure/machinery/power/apc{ @@ -24469,70 +18776,44 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bzk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hangar_storage) "bzl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bzm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bzn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hangar_storage) "bzo" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bzp" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bzq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzt" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzu" = ( /turf/closed/wall/hangar{ @@ -24541,35 +18822,25 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzv" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzw" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzx" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzy" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzz" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzA" = ( /obj/structure/desertdam/decals/road_edge, @@ -24582,40 +18853,28 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Tool Storage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bzE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/north_tunnel) "bzF" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bzG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bzH" = ( /turf/closed/wall/hangar{ @@ -24629,10 +18888,7 @@ /obj/effect/decal/warning_stripes{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/control_room) "bzJ" = ( /obj/structure/disposalpipe/segment, @@ -24642,9 +18898,7 @@ name = "\improper Colony Overseer's Office" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/overseer_office) "bzK" = ( /obj/structure/machinery/power/apc{ @@ -24652,65 +18906,43 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bzL" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/interior/dam_interior/control_room) "bzM" = ( /obj/structure/surface/table, /obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/interior/dam_interior/control_room) "bzN" = ( /obj/structure/machinery/computer3/powermonitor, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/interior/dam_interior/control_room) "bzO" = ( /obj/structure/machinery/computer/atmos_alert, /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/control_room) "bzP" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "bzQ" = ( /obj/structure/surface/table, /obj/item/storage/box/lights/mixed, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bzR" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "bzS" = ( /obj/structure/prop/dam/boulder/boulder3, @@ -24718,21 +18950,14 @@ /area/desert_dam/exterior/valley/valley_wilderness) "bzT" = ( /obj/structure/closet/crate/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/mining/workshop_foyer) "bzU" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/desert_dam/building/substation/northwest) "bzV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/valley/valley_wilderness) "bzW" = ( /obj/effect/landmark/survivor_spawner, @@ -24741,9 +18966,7 @@ "bzX" = ( /obj/structure/surface/table, /obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/interrogation) "bzY" = ( /turf/open/asphalt/cement_sunbleached, @@ -24755,9 +18978,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bAa" = ( /obj/structure/machinery/power/apc{ @@ -24765,16 +18986,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/staffroom) "bAb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/staffroom) "bAc" = ( /obj/structure/bed/chair, @@ -24782,9 +18997,7 @@ /area/desert_dam/building/security/staffroom) "bAh" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bAm" = ( /obj/structure/window/framed/hangar, @@ -24795,9 +19008,7 @@ icon_state = "gib6" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "bAp" = ( /obj/structure/machinery/power/apc{ @@ -24805,9 +19016,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bAq" = ( /obj/effect/decal/warning_stripes{ @@ -24825,63 +19034,41 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bAt" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bAv" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bAw" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/east_caves) "bAy" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bAz" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/engine_west_wing) "bAA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/engine_west_wing) "bAB" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/engine_west_wing) "bAC" = ( /obj/structure/machinery/pipedispenser, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/engine_west_wing) "bAD" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/engine_west_wing) "bAE" = ( /obj/structure/disposalpipe/segment{ @@ -24896,22 +19083,16 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/landing_pad_one) "bAG" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/control_room) "bAH" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/control_room) "bAI" = ( /obj/structure/disposalpipe/segment{ @@ -24921,10 +19102,7 @@ /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) "bAJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/control_room) "bAK" = ( /turf/open/floor/greengrid, @@ -24932,95 +19110,64 @@ "bAM" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bAN" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) "bAO" = ( /obj/structure/stairs, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) "bAP" = ( /obj/structure/stairs, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/valley/valley_wilderness) "bAR" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) "bAS" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "bAY" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/exterior/valley/valley_mining) "bAZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/desert_dam/exterior/valley/valley_mining) "bBb" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bBc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/building/security/holding) "bBd" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/southwest, /area/desert_dam/building/security/holding) "bBe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/southern_hallway) "bBf" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/desert_dam/exterior/valley/valley_telecoms) "bBg" = ( /obj/structure/bed/chair, @@ -25030,25 +19177,17 @@ "bBh" = ( /obj/structure/powerloader_wreckage, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bBi" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/desert_dam/building/administration/overseer_office) "bBj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bBk" = ( /obj/structure/machinery/power/apc{ @@ -25070,19 +19209,13 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bBp" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bBq" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/north_tunnel) "bBr" = ( /obj/structure/platform_decoration{ @@ -25103,10 +19236,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bBv" = ( /obj/structure/machinery/power/apc{ @@ -25114,19 +19244,14 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/control_room) "bBw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bBx" = ( /obj/structure/surface/table/reinforced, @@ -25134,10 +19259,7 @@ id = "dam_checkpoint_northwest"; name = "Checkpoint Lockdown" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bBy" = ( /obj/effect/decal/cleanable/dirt, @@ -25146,59 +19268,42 @@ /area/desert_dam/building/security/staffroom) "bBD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/north_tunnel) "bBF" = ( /obj/structure/surface/table, /obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/engine_east_wing) "bBG" = ( /obj/structure/surface/table, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/engine_east_wing) "bBH" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/engine_east_wing) "bBI" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/engine_east_wing) "bBL" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/deathrow) "bBM" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/mining/workshop_foyer) "bBO" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "bBP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) "bBQ" = ( /obj/structure/platform{ @@ -25207,15 +19312,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bBR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/mining/workshop_foyer) "bBS" = ( /obj/structure/bed/chair, @@ -25233,16 +19333,11 @@ /area/desert_dam/building/security/staffroom) "bCe" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bCf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/interior/dam_interior/tech_storage) "bCg" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -25259,9 +19354,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bCj" = ( /obj/structure/platform_decoration, @@ -25283,33 +19376,25 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bCn" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bCo" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bCp" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bCq" = ( /obj/structure/machinery/power/apc{ @@ -25320,15 +19405,11 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bCr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bCs" = ( /obj/structure/window/framed/hangar, @@ -25336,36 +19417,21 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) "bCt" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/lobby) "bCu" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/lobby) "bCv" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bCw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bCx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/lobby) "bCy" = ( /obj/structure/window/framed/hangar, @@ -25373,48 +19439,31 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) "bCz" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/control_room) "bCA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "bCB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/control_room) "bCD" = ( /obj/structure/surface/table, /obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_east_wing) "bCH" = ( /obj/structure/cargo_container/grant/left, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bCI" = ( /obj/structure/cargo_container/grant/rightmid, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bCJ" = ( /obj/structure/cargo_container/grant/right, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bCK" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -25424,16 +19473,12 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/interrogation) "bCN" = ( /obj/structure/surface/table/reinforced, /obj/item/evidencebag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bCO" = ( /obj/effect/decal/cleanable/dirt, @@ -25444,48 +19489,34 @@ /area/desert_dam/exterior/valley/valley_hydro) "bCP" = ( /obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bCQ" = ( /obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bCR" = ( /obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bCS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bCT" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bCU" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "bCV" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bCW" = ( /obj/structure/stairs{ @@ -25500,14 +19531,10 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/north_tunnel) "bCY" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bCZ" = ( /obj/structure/platform_decoration{ @@ -25525,9 +19552,7 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bDb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bDc" = ( /obj/structure/disposalpipe/segment{ @@ -25546,17 +19571,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bDg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bDh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25565,16 +19586,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bDi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bDj" = ( /obj/structure/surface/rack, @@ -25586,10 +19602,7 @@ icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/hanger) "bDl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25599,40 +19612,26 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bDm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bDn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bDo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bDp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bDu" = ( /obj/structure/machinery/power/apc{ @@ -25640,9 +19639,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "bDw" = ( /obj/structure/machinery/power/apc{ @@ -25650,10 +19647,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/engine_east_wing) "bDx" = ( /turf/closed/wall/r_wall/bunker{ @@ -25661,23 +19655,15 @@ }, /area/desert_dam/interior/dam_interior/atmos_storage) "bDy" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/east_caves) "bDz" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/interior/dam_interior/atmos_storage) "bDA" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/interior/dam_interior/atmos_storage) "bDB" = ( /obj/structure/machinery/power/apc{ @@ -25685,39 +19671,25 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/interior/dam_interior/atmos_storage) "bDC" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/interior/dam_interior/atmos_storage) "bDD" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/desert_dam/interior/dam_interior/atmos_storage) "bDE" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "bDI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/southern_hallway) "bDJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25732,15 +19704,10 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) "bDL" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) "bDM" = ( /obj/structure/pipes/vents/pump{ @@ -25755,9 +19722,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) "bDR" = ( /obj/structure/window/framed/hangar, @@ -25785,9 +19750,7 @@ /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_civilian) "bDZ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -25803,46 +19766,32 @@ dir = 2; name = "\improper Workshop" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "bEc" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/desert_dam/building/dorms/restroom) "bEd" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bEe" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bEf" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bEg" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bEh" = ( /obj/structure/stairs, @@ -25855,46 +19804,34 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/north_tunnel) "bEj" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bEk" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bEl" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bEo" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bEp" = ( /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bEq" = ( /obj/structure/stairs{ @@ -25906,9 +19843,7 @@ "bEr" = ( /obj/structure/platform, /obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bEu" = ( /obj/structure/platform_decoration, @@ -25936,17 +19871,11 @@ /area/desert_dam/interior/dam_interior/tech_storage) "bEz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hanger) "bEA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bEB" = ( /obj/effect/decal/warning_stripes{ @@ -25954,17 +19883,11 @@ }, /obj/item/tool/warning_cone, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/hanger) "bEC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/desert_dam/interior/dam_interior/tech_storage) "bED" = ( /obj/effect/decal/warning_stripes{ @@ -25984,25 +19907,16 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bEF" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bEG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bEH" = ( /obj/structure/disposalpipe/segment{ @@ -26012,10 +19926,7 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bEI" = ( /obj/structure/disposalpipe/segment{ @@ -26025,19 +19936,13 @@ dir = 2; name = "\improper Engineering Hallway" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bEJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bEK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26046,10 +19951,7 @@ /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bEL" = ( /obj/effect/decal/cleanable/dirt, @@ -26067,17 +19969,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bEO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/hanger) "bEP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -26090,10 +19986,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bEQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26102,9 +19995,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/dam_interior/engine_room) "bER" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26113,9 +20004,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "bES" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -26124,9 +20013,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "bET" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26139,10 +20026,7 @@ dir = 2; name = "\improper Engine Room" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bEU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26151,10 +20035,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bEV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -26164,27 +20045,17 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bFa" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) "bFb" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/interior/dam_interior/atmos_storage) "bFc" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/caves/east_caves) "bFd" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -26193,49 +20064,34 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bFe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bFf" = ( /obj/structure/surface/table, /obj/item/restraint/handcuffs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/desert_dam/building/security/holding) "bFg" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_one) "bFi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) "bFk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) "bFl" = ( /obj/structure/machinery/power/apc{ @@ -26243,36 +20099,25 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) "bFm" = ( /obj/structure/surface/table, /obj/item/device/taperecorder, /obj/item/clothing/glasses/sunglasses, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/holding) "bFn" = ( /obj/structure/surface/table, /obj/item/storage/donut_box, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/holding) "bFo" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/holding) "bFp" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/holding) "bFq" = ( /obj/structure/surface/rack, @@ -26281,36 +20126,23 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/substation/northwest) "bFr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/southern_hallway) "bFs" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/southern_hallway) "bFt" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/exterior/valley/valley_telecoms) "bFu" = ( /obj/structure/target, /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/exterior/valley/valley_telecoms) "bFv" = ( /obj/structure/surface/table, @@ -26327,16 +20159,11 @@ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/holding) "bFx" = ( /obj/structure/closet/secure_closet/brig, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "bFy" = ( /obj/structure/surface/table, @@ -26347,9 +20174,7 @@ "bFA" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "bFB" = ( /obj/structure/machinery/landinglight/ds1{ @@ -26357,50 +20182,37 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"bFD" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"bFC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"bFD" = ( +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/mining/workshop_foyer) "bFF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_mining) "bFG" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bFH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hangar_storage) "bFI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/hanger) "bFJ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3/north, /area/desert_dam/interior/dam_interior/hangar_storage) "bFK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/north, /area/desert_dam/interior/dam_interior/hangar_storage) "bFL" = ( /obj/structure/platform{ @@ -26415,9 +20227,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/north_tunnel) "bFN" = ( /obj/structure/platform_decoration{ @@ -26427,15 +20237,11 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bFO" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/north_tunnel) "bFP" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bFQ" = ( /obj/structure/disposalpipe/segment{ @@ -26443,55 +20249,34 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bFR" = ( /obj/structure/pipes/vents/pump/on, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bFS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/lobby) "bFT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bFU" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/lobby) "bFV" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/control_room) "bFW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/control_room) "bFX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bFY" = ( /obj/structure/machinery/power/smes/buildable{ @@ -26502,25 +20287,19 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_main) "bFZ" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/control_room) "bGa" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/control_room) "bGb" = ( /obj/structure/surface/table, /obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/control_room) "bGc" = ( /obj/structure/window/framed/colony/reinforced, @@ -26530,79 +20309,53 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_mining) "bGg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "bGh" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bGi" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "bGj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Atmospheric Storage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) "bGk" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) "bGn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/south_tunnel) "bGp" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/caves/east_caves) "bGs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_mining) "bGt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/mining/workshop_foyer) "bGu" = ( /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "bGv" = ( /obj/structure/surface/table, @@ -26617,9 +20370,7 @@ /area/desert_dam/building/security/staffroom) "bGx" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "bGy" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -26690,10 +20441,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/building/security/southern_hallway) "bGJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -26706,9 +20454,7 @@ dir = 1; name = "\improper Observation" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/observation) "bGL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -26718,10 +20464,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/southern_hallway) "bGO" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -26731,20 +20474,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/building/security/southern_hallway) "bGP" = ( /obj/structure/machinery/computer/med_data, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/chemistry) "bGQ" = ( /obj/structure/machinery/power/terminal{ @@ -26757,18 +20494,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bGT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bGU" = ( /obj/structure/desertdam/decals/road_edge{ @@ -26802,25 +20534,16 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Engineering Central" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bHa" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bHb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Engineering Central" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bHc" = ( /turf/closed/wall/hangar{ @@ -26852,19 +20575,14 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/southern_hallway) "bHh" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/lobby) "bHi" = ( /obj/structure/machinery/power/apc{ @@ -26872,20 +20590,14 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/lobby) "bHl" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/lobby) "bHm" = ( /turf/closed/wall/hangar{ @@ -26901,31 +20613,21 @@ name = "\improper Backup SMES" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "bHp" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "bHq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bHr" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bHs" = ( /obj/structure/prop/dam/boulder/boulder3, @@ -26936,40 +20638,26 @@ /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) "bHv" = ( -/turf/open/floor{ - dir = 7; - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/dam_interior/engine_room) "bHw" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, +/turf/open/floor/warning/southeast, /area/desert_dam/interior/dam_interior/engine_room) "bHx" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bHy" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/engine_east_wing) "bHz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/desert_dam/interior/dam_interior/atmos_storage) "bHB" = ( /obj/structure/closet/crate, @@ -26986,32 +20674,23 @@ }, /obj/item/storage/briefcase/inflatable, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/interior/dam_interior/atmos_storage) "bHD" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/interior/caves/central_caves) "bHE" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/interior/caves/east_caves) "bHF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) "bHG" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, +/turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/caves/east_caves) "bHI" = ( /obj/structure/surface/table, @@ -27039,26 +20718,17 @@ /area/desert_dam/building/security/staffroom) "bHM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/staffroom) "bHN" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/building/security/staffroom) "bHQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Cargo Bay" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bHR" = ( /obj/structure/stairs{ @@ -27078,34 +20748,20 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bHT" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bHV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bHW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bHX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bHY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bHZ" = ( /obj/structure/surface/rack, @@ -27120,18 +20776,12 @@ /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bIb" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bIc" = ( /obj/structure/closet/secure_closet/engineering_welding, @@ -27139,16 +20789,10 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bId" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bIe" = ( /obj/item/reagent_container/glass/bucket/mopbucket, @@ -27164,19 +20808,13 @@ /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bIh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3/north, /area/desert_dam/interior/dam_interior/hanger) "bIl" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/lobby) "bIm" = ( /obj/structure/machinery/power/apc{ @@ -27184,74 +20822,46 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/smes_backup) "bIn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bIq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/smes_backup) "bIr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/smes_backup) "bIs" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/dam_interior/smes_backup) "bIt" = ( /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_backup) "bIu" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_room) "bIv" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) "bIw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/engine_east_wing) "bIx" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) "bIy" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/interior/dam_interior/atmos_storage) "bIz" = ( /obj/structure/surface/rack, @@ -27263,28 +20873,19 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/interior/dam_interior/atmos_storage) "bIA" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/interior/dam_interior/atmos_storage) "bIB" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/interior/dam_interior/atmos_storage) "bIC" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/desert_dam/interior/dam_interior/atmos_storage) "bID" = ( /turf/closed/wall/r_wall/bunker{ @@ -27320,19 +20921,13 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/southern_hallway) "bIU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/desert_dam/exterior/valley/valley_telecoms) "bIV" = ( /obj/structure/surface/table/woodentable, @@ -27340,30 +20935,21 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) "bIW" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/southern_hallway) "bIX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/southern_hallway) "bIY" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/interrogation) "bIZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/building/security/southern_hallway) "bJa" = ( /obj/effect/decal/cleanable/dirt, @@ -27371,31 +20957,21 @@ /area/desert_dam/building/security/southern_hallway) "bJb" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bJc" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bJd" = ( /obj/structure/cargo_container/arious/right, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bJe" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3, /area/desert_dam/interior/dam_interior/hangar_storage) "bJf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3, /area/desert_dam/interior/dam_interior/hangar_storage) "bJg" = ( /obj/structure/platform_decoration{ @@ -27413,21 +20989,15 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/north_tunnel) "bJj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/north_tunnel) "bJk" = ( /obj/structure/platform, /obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "bJl" = ( /obj/structure/surface/table/reinforced, @@ -27436,25 +21006,17 @@ }, /obj/item/clothing/glasses/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bJm" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bJn" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/smes_main) "bJo" = ( /obj/structure/surface/table, @@ -27466,15 +21028,10 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bJq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/lobby) "bJr" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/lobby) "bJs" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -27482,10 +21039,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "bJt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27495,18 +21049,12 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "bJv" = ( /obj/structure/bed/stool, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/smes_backup) "bJx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27516,16 +21064,10 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bJz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "bJB" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -27542,15 +21084,10 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) "bJF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/south_tunnel) "bJH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/southwest, /area/desert_dam/building/security/southern_hallway) "bJI" = ( /obj/structure/bed/chair{ @@ -27563,51 +21100,33 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/southern_hallway) "bJK" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/building/security/southern_hallway) "bJL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/desert_dam/building/security/southern_hallway) "bJM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/southern_hallway) "bJN" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "bJO" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/southwest, /area/desert_dam/building/security/staffroom) "bJP" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/staffroom) "bJQ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -27621,21 +21140,13 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/desert_dam/building/security/southern_hallway) "bJS" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/staffroom) "bJT" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/staffroom) "bJU" = ( /turf/closed/wall/r_wall/prison, @@ -27649,24 +21160,18 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/western_dam_cave) "bKc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/western_dam_cave) "bKe" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Evidence" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/evidence) "bKf" = ( /obj/structure/bed/chair, @@ -27678,10 +21183,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/southern_hallway) "bKj" = ( /obj/item/stack/sheet/wood, @@ -27703,22 +21205,16 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bKn" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bKo" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bKp" = ( /obj/structure/surface/table/almayer, @@ -27726,9 +21222,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bKq" = ( /obj/structure/desertdam/decals/road_edge{ @@ -27750,9 +21244,7 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bKt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) "bKv" = ( /obj/structure/platform_decoration{ @@ -27764,10 +21256,7 @@ /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/technology_scanner, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bKx" = ( /obj/structure/disposalpipe/segment{ @@ -27777,17 +21266,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bKy" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bKz" = ( /obj/structure/machinery/light, @@ -27805,10 +21288,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/lobby) "bKC" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -27821,35 +21301,21 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "bKE" = ( /obj/structure/machinery/power/terminal, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/desert_dam/interior/dam_interior/smes_backup) "bKF" = ( /obj/structure/machinery/power/terminal, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/desert_dam/interior/dam_interior/smes_backup) "bKG" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "bKH" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/interior/dam_interior/smes_backup) "bKI" = ( /obj/structure/machinery/colony_floodlight, @@ -27863,10 +21329,7 @@ /area/desert_dam/building/security/courtroom) "bKK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/southern_hallway) "bKL" = ( /obj/structure/window/framed/hangar, @@ -27884,33 +21347,24 @@ /obj/structure/machinery/door/window/brigdoor/eastleft{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/warden) "bKP" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Visitation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/southern_hallway) "bKQ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/desert_dam/building/security/staffroom) "bKR" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/staffroom) "bKZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -27919,32 +21373,21 @@ /area/desert_dam/building/security/courtroom) "bLa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/southern_hallway) "bLb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/southern_hallway) "bLc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/southwest, /area/desert_dam/building/security/southern_hallway) "bLd" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/security/southern_hallway) "bLe" = ( /obj/structure/surface/table/woodentable, @@ -27967,10 +21410,7 @@ }, /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bLh" = ( /obj/structure/desertdam/decals/road_edge{ @@ -27982,20 +21422,14 @@ /obj/structure/surface/table/reinforced, /obj/item/device/lightreplacer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bLk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bLl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -28003,44 +21437,29 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bLm" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/table/reinforced, /obj/item/device/radio, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bLn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/building/mining/workshop) "bLo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bLp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/smes_main) "bLq" = ( /turf/closed/wall/r_wall/bunker{ @@ -28057,44 +21476,28 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/lobby) "bLu" = ( /obj/structure/closet/secure_closet/medical_doctor, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/chemistry) "bLv" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/lobby) "bLw" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/lobby) "bLx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "bLy" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/lobby) "bLz" = ( /obj/structure/window/framed/hangar/reinforced, @@ -28105,10 +21508,7 @@ capacity = 1e+006; dir = 1 }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "bLC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -28116,21 +21516,13 @@ name = "\improper Tool Storage" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bLD" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/smes_backup) "bLE" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/smes_backup) "bLF" = ( /obj/structure/platform{ @@ -28145,25 +21537,19 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "bLK" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "bLL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/security/southern_hallway) "bLM" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/security/southern_hallway) "bLN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -28172,39 +21558,26 @@ /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) "bLO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/southern_hallway) "bLP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/southern_hallway) "bLQ" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/building/security/staffroom) "bLR" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) "bLS" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "bLT" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/staffroom) "bLU" = ( /turf/closed/wall/r_wall/bunker{ @@ -28215,32 +21588,22 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bLW" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bLX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/workshop) "bLY" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/workshop) "bLZ" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bMa" = ( /obj/structure/closet/toolcloset, @@ -28248,9 +21611,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bMb" = ( /turf/closed/wall/hangar{ @@ -28259,10 +21620,7 @@ /area/desert_dam/interior/dam_interior/workshop) "bMc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bMd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -28273,29 +21631,20 @@ "bMe" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMi" = ( /obj/structure/surface/table/reinforced, @@ -28303,10 +21652,7 @@ dir = 4 }, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMj" = ( /obj/structure/surface/table/reinforced, @@ -28314,32 +21660,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMk" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bMl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "bMm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bMn" = ( /obj/structure/machinery/disposal, @@ -28349,24 +21683,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "bMo" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/smes_backup) "bMp" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/smes_backup) "bMq" = ( /obj/structure/surface/rack, @@ -28376,52 +21703,37 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/smes_backup) "bMr" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/building/security/warden) "bMs" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/warden) "bMt" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "bMu" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_north) "bMv" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_north) "bMw" = ( /obj/structure/window/framed/hangar/reinforced, @@ -28433,34 +21745,24 @@ name = "Security Cameras - Habitation"; network = list("chigusa_2") }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/warden) "bMD" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bME" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bMG" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bMH" = ( /obj/effect/decal/warning_stripes{ @@ -28478,68 +21780,45 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) "bML" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/central_tunnel) "bMM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMP" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bMQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/south_valley_dam) "bMT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_mining) "bMW" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) "bMX" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/building/security/southern_hallway) "bMY" = ( /obj/structure/machinery/light{ @@ -28550,9 +21829,7 @@ "bMZ" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/security/courtroom) "bNa" = ( /obj/structure/machinery/light{ @@ -28564,16 +21841,12 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "bNc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) "bNd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -28584,10 +21857,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/southern_hallway) "bNe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28599,10 +21869,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) "bNf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/building/security/southern_hallway) "bNg" = ( /obj/structure/machinery/door_control{ @@ -28614,10 +21881,7 @@ "bNh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/southern_hallway) "bNi" = ( /turf/open/floor/prison, @@ -28650,32 +21914,22 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bNo" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/garage) "bNp" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bNq" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/south_valley_dam) "bNr" = ( /obj/structure/platform{ @@ -28685,27 +21939,21 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "bNs" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "bNt" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_central_north) "bNu" = ( /obj/effect/landmark/xeno_spawn, @@ -28713,10 +21961,7 @@ /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) "bNv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/warden) "bNw" = ( /turf/closed/wall/r_wall/prison, @@ -28732,9 +21977,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bNE" = ( /turf/closed/wall/r_wall/prison, @@ -28764,10 +22007,7 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/desert_dam/building/security/warden) "bNJ" = ( /obj/structure/bed/chair/office/dark{ @@ -28779,63 +22019,43 @@ /obj/structure/stairs{ dir = 8 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/security/courtroom) "bNL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/southern_hallway) "bNM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/southern_hallway) "bNN" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/security/courtroom) "bNO" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/security/courtroom) "bNP" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/security/warden) "bNQ" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/warden) "bNS" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/building/security/armory) "bNT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/armory) "bNY" = ( /turf/closed/wall/r_wall/bunker, @@ -28843,15 +22063,11 @@ "bNZ" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bOa" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bOb" = ( /obj/structure/platform{ @@ -28859,7 +22075,6 @@ }, /obj/structure/platform, /obj/structure/machinery/light, -/obj/structure/machinery/light, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bOc" = ( @@ -28867,15 +22082,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) "bOf" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) "bOh" = ( /obj/structure/platform_decoration{ @@ -28895,20 +22106,13 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bOk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOl" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOm" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOn" = ( /obj/structure/surface/table/reinforced, @@ -28916,38 +22120,26 @@ /obj/item/stack/sheet/glass{ amount = 30 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOo" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/constructable_frame, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bOs" = ( /obj/structure/surface/table/reinforced, @@ -28955,17 +22147,12 @@ amount = 30 }, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOt" = ( /obj/structure/surface/table/reinforced, /obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bOu" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -28981,9 +22168,7 @@ "bOw" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "bOx" = ( /obj/structure/platform, @@ -28994,9 +22179,7 @@ /obj/structure/stairs{ dir = 4 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/security/courtroom) "bOB" = ( /obj/structure/bed/chair/wood/normal{ @@ -29018,10 +22201,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/prison) "bOG" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29032,10 +22212,7 @@ "bOH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/southern_hallway) "bOI" = ( /obj/effect/decal/cleanable/dirt, @@ -29043,10 +22220,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/prison) "bOJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/prison) "bOK" = ( /obj/structure/machinery/power/apc{ @@ -29054,31 +22228,22 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/armory) "bOM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bON" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3, /area/desert_dam/interior/dam_interior/hanger) "bOO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/workshop) "bOP" = ( /turf/closed/wall/r_wall/bunker, @@ -29095,9 +22260,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/west_tunnel) "bOU" = ( /obj/structure/desertdam/decals/road_edge, @@ -29113,18 +22276,14 @@ /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/central_tunnel) "bOY" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bOZ" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/north_tunnel) "bPa" = ( /obj/structure/stairs{ @@ -29133,9 +22292,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "bPb" = ( /turf/closed/wall/hangar{ @@ -29146,10 +22303,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bPe" = ( /obj/structure/machinery/disposal, @@ -29157,16 +22311,11 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bPf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bPg" = ( /obj/structure/machinery/power/apc{ @@ -29174,19 +22323,13 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bPh" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bPi" = ( /obj/structure/platform{ @@ -29196,48 +22339,36 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "bPj" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "bPk" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_north) "bPl" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_wilderness) "bPm" = ( /obj/structure/machinery/colony_floodlight, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "bPn" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "bPv" = ( /obj/structure/window/framed/hangar, @@ -29249,25 +22380,19 @@ /area/desert_dam/interior/dam_interior/primary_tool_storage) "bPz" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bPA" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bPB" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bPC" = ( /obj/structure/surface/table, @@ -29275,9 +22400,7 @@ name = "Security Cameras - Habitation"; network = list("chigusa_2") }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bPD" = ( /obj/structure/surface/table/reinforced, @@ -29285,24 +22408,16 @@ dir = 8; health = 80 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bPE" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) "bPF" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) "bPG" = ( /obj/structure/bed/chair{ @@ -29322,9 +22437,7 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bPJ" = ( /obj/structure/machinery/disposal, @@ -29332,29 +22445,20 @@ dir = 2; icon_state = "pipe-u" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) "bPK" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bPL" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bPM" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bPN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -29371,15 +22475,11 @@ amount = 10 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bPQ" = ( /obj/structure/machinery/mill, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bPR" = ( /obj/structure/machinery/power/apc{ @@ -29387,23 +22487,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bPT" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bPU" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bPV" = ( /obj/structure/desertdam/decals/road_edge, @@ -29419,32 +22513,23 @@ /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/briefcase, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/desert_dam/building/administration/overseer_office) "bPX" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bPY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/central_tunnel) "bPZ" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bQa" = ( /obj/structure/stairs{ @@ -29453,9 +22538,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "bQb" = ( /turf/open/asphalt/cement, @@ -29464,9 +22547,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bQd" = ( /obj/structure/machinery/power/monitor{ @@ -29475,16 +22556,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/CE_office) "bQe" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/CE_office) "bQf" = ( /obj/structure/machinery/light{ @@ -29495,38 +22570,23 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/CE_office) "bQg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bQh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bQj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bQk" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bQl" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -29534,57 +22594,43 @@ /area/desert_dam/interior/dam_interior/primary_tool_storage) "bQm" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/south_valley_dam) "bQn" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bQo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bQp" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bQq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/south_valley_dam) "bQr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/south_valley_dam) "bQs" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/south_valley_dam) "bQt" = ( /turf/open/asphalt, @@ -29594,10 +22640,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/prison) "bQv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/desert_dam/building/security/prison) "bQw" = ( /obj/structure/closet/l3closet/security, @@ -29605,16 +22648,12 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked, /area/desert_dam/building/security/armory) "bQx" = ( /obj/structure/closet/l3closet/security, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked, /area/desert_dam/building/security/armory) "bQy" = ( /obj/structure/machinery/power/apc{ @@ -29622,30 +22661,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/building/warehouse/breakroom) "bQz" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked, /area/desert_dam/building/security/armory) "bQA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/desert_dam/building/security/southern_hallway) "bQB" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/warehouse/breakroom) "bQC" = ( /obj/structure/surface/table, @@ -29654,24 +22682,16 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/desert_dam/building/security/warden) "bQE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/southern_hallway) "bQF" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_north) "bQG" = ( /obj/effect/landmark/corpsespawner/security/marshal, @@ -29688,10 +22708,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/warden) "bQM" = ( /obj/structure/disposalpipe/trunk{ @@ -29701,30 +22718,20 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/warden) "bQN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/north, /area/desert_dam/exterior/valley/valley_telecoms) "bQO" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/interior/dam_interior/western_dam_cave) "bQP" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/dam_interior/western_dam_cave) "bQQ" = ( /obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_medical) "bQR" = ( /obj/structure/machinery/power/apc{ @@ -29735,14 +22742,10 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/western_dam_cave) "bQS" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/western_dam_cave) "bQT" = ( /obj/structure/machinery/light{ @@ -29751,37 +22754,27 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bQU" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bQV" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bQW" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bQY" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bQZ" = ( /obj/structure/machinery/power/apc{ @@ -29789,29 +22782,21 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRb" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRc" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRd" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bRe" = ( /obj/effect/decal/warning_stripes{ @@ -29826,23 +22811,16 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) "bRg" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, +/turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/exterior/valley/valley_wilderness) "bRh" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bRi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/CE_office) "bRj" = ( /obj/structure/window/framed/hangar/reinforced, @@ -29853,10 +22831,7 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/office) "bRl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/CE_office) "bRn" = ( /obj/effect/landmark/static_comms/net_one, @@ -29869,9 +22844,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "bRq" = ( /obj/structure/desertdam/decals/road_edge{ @@ -29898,24 +22871,17 @@ /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) "bRv" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/northeast, /area/desert_dam/exterior/valley/valley_telecoms) "bRw" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bRx" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/security/prison) "bRy" = ( /obj/structure/window/framed/hangar/reinforced, @@ -29923,17 +22889,11 @@ /area/desert_dam/interior/dam_interior/CE_office) "bRz" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/desert_dam/building/security/prison) "bRA" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) "bRB" = ( /obj/structure/machinery/door_control{ @@ -29950,25 +22910,16 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) "bRD" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) "bRE" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/armory) "bRF" = ( /turf/open/floor/prison, @@ -29986,14 +22937,10 @@ /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/interior/dam_interior/western_dam_cave) "bRJ" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/interior/dam_interior/western_dam_cave) "bRK" = ( -/turf/open/desert/cave/cave_shore{ - dir = 5 - }, +/turf/open/desert/cave/cave_shore/northeast, /area/desert_dam/interior/dam_interior/western_dam_cave) "bRL" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -30011,10 +22958,7 @@ /obj/item/clothing/head/welding, /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "bRO" = ( /obj/structure/window/framed/hangar, @@ -30022,16 +22966,11 @@ /area/desert_dam/interior/dam_interior/smes_backup) "bRQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/engine_west_wing) "bRR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bRS" = ( /obj/structure/pipes/vents/pump{ @@ -30042,35 +22981,26 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bRT" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bRU" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRW" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30078,14 +23008,10 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRX" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRY" = ( /obj/structure/surface/table, @@ -30093,31 +23019,21 @@ /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bRZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bSa" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) "bSb" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) "bSc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -30128,10 +23044,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bSd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30141,10 +23054,7 @@ dir = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bSe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -30152,40 +23062,26 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bSf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bSg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bSh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bSi" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bSj" = ( /obj/structure/surface/rack, @@ -30212,27 +23108,18 @@ "bSm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/southern_hallway) "bSn" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) "bSo" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/desert_dam/building/security/prison) "bSs" = ( /obj/structure/machinery/power/apc{ @@ -30240,144 +23127,90 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/desert_dam/building/security/prison) "bSu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/armory) "bSv" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/northwest, /area/desert_dam/exterior/valley/valley_telecoms) "bSw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bSx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/armory) "bSy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/armory) "bSz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bSA" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/building/security/armory) "bSB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/warden) "bSG" = ( /obj/structure/holohoop{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/desert_dam/exterior/valley/valley_telecoms) "bSH" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/exterior/valley/valley_telecoms) "bSI" = ( /obj/structure/holohoop{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/east, /area/desert_dam/exterior/valley/valley_telecoms) "bSJ" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/western_dam_cave) "bSK" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bSL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/engine_west_wing) "bSM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bSO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bSP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bSQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/workshop) "bSR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/engine_west_wing) "bSS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30387,25 +23220,19 @@ /area/desert_dam/interior/dam_interior/workshop) "bST" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/control_room) "bSU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/workshop) "bSV" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bSW" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -30414,15 +23241,10 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "bSX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/desert_dam/building/security/prison) "bSY" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -30430,9 +23252,7 @@ /area/desert_dam/exterior/river/riverside_central_north) "bSZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/CE_office) "bTa" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30440,59 +23260,43 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bTb" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/control_room) "bTc" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bTd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bTe" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bTf" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bTh" = ( /obj/structure/bed, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "bTi" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -30500,10 +23304,7 @@ /area/desert_dam/exterior/river/riverside_central_north) "bTj" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "bTk" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -30519,23 +23320,14 @@ /turf/open/floor/plating, /area/desert_dam/building/security/prison) "bTm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/desert_dam/building/security/prison) "bTn" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bTo" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bTp" = ( /obj/structure/pipes/vents/pump{ @@ -30543,29 +23335,20 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bTq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/southern_hallway) "bTr" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cell 1" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "bTs" = ( /obj/structure/machinery/squeezer, @@ -30583,9 +23366,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/southern_hallway) "bTw" = ( /obj/structure/disposalpipe/segment, @@ -30593,42 +23374,29 @@ /turf/open/floor/prison, /area/desert_dam/building/security/warden) "bTz" = ( -/turf/open/desert/cave/cave_shore{ - dir = 4 - }, +/turf/open/desert/cave/cave_shore/east, /area/desert_dam/interior/dam_interior/western_dam_cave) "bTA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bTB" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/western_dam_cave) "bTC" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bTD" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bTE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bTF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -30638,9 +23406,7 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bTG" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/west_tunnel) "bTH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30654,23 +23420,16 @@ /area/desert_dam/interior/dam_interior/west_tunnel) "bTJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/central_tunnel) "bTL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/interior/dam_interior/CE_office) "bTM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/workshop) "bTN" = ( /obj/structure/machinery/light{ @@ -30680,17 +23439,11 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/CE_office) "bTO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bTP" = ( /obj/structure/machinery/light{ @@ -30698,10 +23451,7 @@ }, /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/primary_tool_storage) "bTR" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -30711,14 +23461,10 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bTV" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_mining) "bTW" = ( /turf/open/asphalt, @@ -30733,54 +23479,37 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) "bUa" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/building/mining/workshop) "bUb" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/building/mining/workshop) "bUd" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/interior/dam_interior/western_dam_cave) "bUe" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/interior/dam_interior/western_dam_cave) "bUf" = ( -/turf/open/desert/cave/cave_shore{ - dir = 6 - }, +/turf/open/desert/cave/cave_shore/southeast, /area/desert_dam/interior/dam_interior/western_dam_cave) "bUg" = ( /turf/open/desert/cave/cave_shore, /area/desert_dam/interior/dam_interior/western_dam_cave) "bUj" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bUk" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bUl" = ( /obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bUm" = ( /obj/effect/decal/cleanable/dirt, @@ -30789,9 +23518,7 @@ "bUo" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/workshop) "bUp" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30807,24 +23534,17 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bUr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/west_tunnel) "bUs" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Tool Storage" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bUt" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -30858,27 +23578,21 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/south_valley_dam) "bUB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bUC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bUD" = ( /obj/structure/disposalpipe/segment{ @@ -30887,25 +23601,19 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bUE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/south_valley_dam) "bUF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/south_valley_dam) "bUG" = ( /obj/structure/desertdam/decals/road_edge, @@ -30942,10 +23650,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "bUM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/warden) "bUN" = ( /obj/structure/platform, @@ -30954,39 +23659,24 @@ /area/desert_dam/exterior/river/riverside_east) "bUQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bUR" = ( -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/desert_dam/exterior/valley/valley_telecoms) "bUS" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southeast, /area/desert_dam/exterior/valley/valley_telecoms) "bUT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bUU" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "bUV" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "bUW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -30996,36 +23686,26 @@ /area/desert_dam/building/security/prison) "bUX" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bUY" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bUZ" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bVa" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "bVb" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bVc" = ( /obj/structure/machinery/light, @@ -31033,32 +23713,24 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bVd" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bVe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bVf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/workshop) "bVg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -31066,51 +23738,37 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bVh" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bVj" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bVk" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bVl" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bVm" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bVn" = ( /obj/structure/machinery/power/apc{ @@ -31118,24 +23776,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bVo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hangar_storage) "bVp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "bVq" = ( /turf/closed/wall/r_wall/bunker{ @@ -31168,24 +23819,18 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_south) "bVx" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_south) "bVy" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "bVz" = ( /obj/structure/platform{ @@ -31196,10 +23841,7 @@ /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) "bVA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/desert_dam/building/security/prison) "bVD" = ( /turf/closed/wall/r_wall, @@ -31209,15 +23851,11 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) "bVF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/south_valley_dam) "bVG" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/south_valley_dam) "bVI" = ( /obj/structure/machinery/power/apc{ @@ -31225,16 +23863,10 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/warden) "bVJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/armory) "bVK" = ( /obj/structure/barricade/sandbags{ @@ -31243,42 +23875,29 @@ /obj/structure/barricade/sandbags{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bVN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/armory) "bVO" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bVP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bVQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "bVR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31290,9 +23909,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) "bVS" = ( /obj/structure/stairs{ @@ -31319,17 +23936,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/west_tunnel) "bVV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/central_tunnel) "bVW" = ( /obj/structure/platform_decoration{ @@ -31338,9 +23951,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "bVX" = ( /obj/structure/stairs{ @@ -31359,9 +23970,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "bVZ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31370,9 +23979,7 @@ /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bWa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/north_tunnel) "bWb" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -31380,24 +23987,18 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bWc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bWe" = ( /obj/structure/machinery/flasher/portable, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked, /area/desert_dam/building/security/armory) "bWf" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -31421,9 +24022,7 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) "bWh" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "bWi" = ( /obj/structure/flora/grass/desert/heavygrass_5, @@ -31441,22 +24040,16 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_south) "bWn" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "bWo" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "bWq" = ( /obj/structure/platform{ @@ -31472,9 +24065,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "bWt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31508,9 +24099,7 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "bWA" = ( /obj/structure/pipes/vents/pump{ @@ -31530,9 +24119,7 @@ /area/desert_dam/building/security/warden) "bWD" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_mining) "bWE" = ( /obj/structure/desertdam/decals/road_stop{ @@ -31548,23 +24135,17 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) "bWH" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_mining) "bWI" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bWJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bWK" = ( /obj/structure/desertdam/decals/road_edge{ @@ -31581,10 +24162,7 @@ "bWM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bWN" = ( /obj/structure/disposalpipe/segment{ @@ -31592,10 +24170,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bWO" = ( /obj/item/reagent_container/food/drinks/flask/detflask, @@ -31608,24 +24183,17 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "bWR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/west_tunnel) "bWS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hangar_storage) "bWT" = ( /obj/structure/stairs{ @@ -31641,15 +24209,11 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/west_tunnel) "bWV" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/west_tunnel) "bWW" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "bWX" = ( /obj/structure/stairs{ @@ -31661,14 +24225,10 @@ "bWY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bXa" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "bXc" = ( /obj/structure/flora/grass/desert/lightgrass_4, @@ -31683,69 +24243,51 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "bXf" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "bXg" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_central_north) "bXh" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_north) "bXi" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "bXj" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_north) "bXk" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "bXl" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_central_north) "bXm" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_north) "bXn" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -31755,25 +24297,19 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bXp" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bXq" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bXr" = ( /obj/structure/platform, @@ -31781,9 +24317,7 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_north) "bXs" = ( /obj/structure/platform, @@ -31793,9 +24327,7 @@ "bXt" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "bXu" = ( /obj/structure/platform, @@ -31828,21 +24360,15 @@ "bXz" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_north) "bXA" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_north) "bXB" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_mining) "bXC" = ( /obj/structure/desertdam/decals/road_edge{ @@ -31860,10 +24386,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bXF" = ( /obj/structure/desertdam/decals/road_edge{ @@ -31873,10 +24396,7 @@ /area/desert_dam/exterior/valley/valley_mining) "bXG" = ( /obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_mining) "bXH" = ( /obj/structure/desertdam/decals/road_edge, @@ -31906,9 +24426,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bXN" = ( /obj/structure/desertdam/decals/road_edge, @@ -31923,17 +24441,12 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bXP" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bXQ" = ( /turf/closed/wall/r_wall/bunker{ @@ -31957,9 +24470,7 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/west_tunnel) "bXU" = ( /obj/structure/disposalpipe/segment{ @@ -31970,21 +24481,15 @@ /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bXV" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bXW" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bXX" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bXY" = ( /obj/structure/platform{ @@ -31998,27 +24503,19 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) "bYa" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "bYb" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_central_south) "bYc" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) "bYd" = ( /obj/effect/decal/warning_stripes{ @@ -32043,9 +24540,7 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "bYg" = ( /obj/effect/decal/cleanable/dirt, @@ -32082,16 +24577,11 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) "bYl" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/desert_dam/building/security/prison) "bYm" = ( /obj/structure/bed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "bYo" = ( /obj/structure/surface/rack, @@ -32138,10 +24628,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/deathrow) "bYt" = ( /turf/open/floor/prison, @@ -32149,10 +24636,7 @@ "bYv" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/deathrow) "bYw" = ( /obj/structure/desertdam/decals/road_edge{ @@ -32179,34 +24663,25 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bYB" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/north, /area/desert_dam/interior/dam_interior/disposals) "bYC" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/west_tunnel) "bYD" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bYE" = ( /turf/closed/wall/hangar{ @@ -32215,9 +24690,7 @@ /area/desert_dam/interior/dam_interior/break_room) "bYF" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_north) "bYG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -32231,9 +24704,7 @@ /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bYH" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "bYI" = ( /obj/structure/platform{ @@ -32274,22 +24745,15 @@ /area/desert_dam/exterior/valley/valley_mining) "bYN" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_mining) "bYO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/building/mining/workshop_foyer) "bYP" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/blood, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "bYQ" = ( /obj/structure/surface/rack, @@ -32301,27 +24765,18 @@ /turf/open/floor/prison, /area/desert_dam/building/security/armory) "bYR" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southwest, /area/desert_dam/exterior/valley/valley_telecoms) "bYS" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bYT" = ( /obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bYV" = ( /obj/structure/desertdam/decals/road_edge{ @@ -32335,10 +24790,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bYX" = ( /obj/structure/machinery/conveyor{ @@ -32370,20 +24822,13 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bZb" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/disposals) "bZc" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/west_tunnel) "bZd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -32394,10 +24839,7 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bZe" = ( /turf/closed/wall/r_wall/bunker{ @@ -32406,9 +24848,7 @@ /area/desert_dam/interior/dam_interior/break_room) "bZf" = ( /obj/structure/toilet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "bZg" = ( /obj/structure/machinery/power/apc{ @@ -32416,16 +24856,10 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northwest, /area/desert_dam/interior/dam_interior/break_room) "bZh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/desert_dam/interior/dam_interior/break_room) "bZi" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -32433,28 +24867,20 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "bZj" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "bZk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "bZl" = ( /obj/structure/machinery/disposal, @@ -32464,54 +24890,36 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/interior/dam_interior/break_room) "bZm" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/interior/dam_interior/break_room) "bZn" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/interior/dam_interior/break_room) "bZo" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/desert_dam/interior/dam_interior/break_room) "bZp" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "bZq" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_south) "bZr" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_central_south) "bZs" = ( /obj/structure/platform{ @@ -32532,16 +24940,10 @@ /area/desert_dam/exterior/river/riverside_central_north) "bZu" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/deathrow) "bZv" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/desert_dam/exterior/valley/valley_telecoms) "bZw" = ( /turf/closed/wall/r_wall/prison, @@ -32552,39 +24954,27 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "bZy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "bZz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/north_wing_hallway) "bZA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/north_wing_hallway) "bZC" = ( /obj/effect/decal/cleanable/dirt, @@ -32618,19 +25008,13 @@ "bZG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bZH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/security/prison) "bZI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -32638,20 +25022,14 @@ name = "\improper Rec Yard" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "bZJ" = ( /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) "bZK" = ( /obj/structure/target, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/exterior/valley/valley_telecoms) "bZL" = ( /obj/structure/machinery/power/apc{ @@ -32701,68 +25079,47 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "bZU" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bZV" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "bZW" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/break_room) "bZX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "bZY" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "bZZ" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_south) "cac" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "cad" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/caves/central_caves) "cae" = ( /obj/structure/desertdam/decals/road_stop{ @@ -32787,51 +25144,31 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) "cai" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/desert_dam/building/security/prison) "caj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/southwest, /area/desert_dam/building/mining/workshop_foyer) "cak" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/desert_dam/building/security/prison) "cal" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "cam" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cell 2" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "can" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/exterior/valley/valley_telecoms) "cao" = ( /obj/structure/bed/chair, @@ -32841,32 +25178,20 @@ /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) "cap" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/desert_dam/exterior/valley/valley_telecoms) "caq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/building/security/deathrow) "car" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/desert_dam/building/security/deathrow) "cat" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) "cau" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -32875,9 +25200,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "cav" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -32886,16 +25209,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "caw" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) "cax" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -32904,9 +25222,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "cay" = ( /obj/structure/machinery/conveyor{ @@ -32916,22 +25232,16 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) "caB" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) "caC" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "caD" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "caF" = ( /obj/effect/decal/cleanable/dirt, @@ -32939,14 +25249,10 @@ /area/desert_dam/interior/dam_interior/northeastern_tunnel) "caG" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_central_south) "caH" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "caI" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -32966,18 +25272,14 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "caM" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "caO" = ( /obj/structure/surface/rack, @@ -32998,18 +25300,12 @@ /area/desert_dam/building/security/prison) "caR" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/desert_dam/building/security/prison) "caS" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/desert_dam/building/security/prison) "caT" = ( /obj/structure/barricade/sandbags, @@ -33017,9 +25313,7 @@ dir = 4 }, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "caU" = ( /obj/effect/landmark/crap_item, @@ -33080,9 +25374,7 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbg" = ( /obj/structure/window/framed/hangar, @@ -33094,9 +25386,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "cbi" = ( /obj/structure/sink{ @@ -33104,9 +25394,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "cbj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33116,9 +25404,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbk" = ( /obj/structure/surface/table, @@ -33128,21 +25414,14 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "cbl" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbn" = ( /obj/structure/disposalpipe/segment, @@ -33155,10 +25434,7 @@ name = "\improper Engineering Hallway" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbq" = ( /obj/structure/disposalpipe/segment{ @@ -33166,10 +25442,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "cbr" = ( /obj/structure/disposalpipe/segment{ @@ -33177,10 +25450,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "cbs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33191,28 +25461,21 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "cbt" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_central_south) "cbu" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_central_south) "cbv" = ( /obj/structure/platform{ @@ -33240,9 +25503,7 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "cbz" = ( /obj/structure/platform{ @@ -33250,9 +25511,7 @@ }, /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) "cbA" = ( /obj/structure/window/framed/prison/cell, @@ -33267,18 +25526,13 @@ /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/north_wing_hallway) "cbD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "cbE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -33288,31 +25542,22 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "cbF" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "cbG" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "cbH" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "cbI" = ( /obj/structure/disposalpipe/trunk{ @@ -33320,9 +25565,7 @@ }, /obj/structure/machinery/disposal, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/desert_dam/building/security/prison) "cbJ" = ( /obj/structure/machinery/light{ @@ -33337,9 +25580,7 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/western_dam_cave) "cbM" = ( /obj/structure/machinery/light{ @@ -33366,18 +25607,13 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "cbR" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "cbS" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -33385,29 +25621,20 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "cbT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/north_tunnel) "cbU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbW" = ( /obj/structure/surface/table, @@ -33416,62 +25643,43 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "cbY" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbZ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "cca" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "ccc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ccd" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_south) "cce" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_central_south) "ccf" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_south) "ccg" = ( /obj/structure/platform{ @@ -33503,9 +25711,7 @@ }, /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_north) "cck" = ( /obj/effect/decal/warning_stripes{ @@ -33515,34 +25721,21 @@ id = "hangar_dam_2"; name = "\improper Hangar Shutters" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "ccl" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/dam_interior/engine_room) "ccm" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_telecoms) "ccn" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/dam_interior/engine_room) "cco" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/caves/central_caves) "ccp" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -33553,37 +25746,26 @@ /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/engine_room) "ccs" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/desert_dam/building/security/prison) "cct" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/desert_dam/building/security/prison) "ccu" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "ccv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/deathrow) "ccw" = ( /turf/open/floor, /area/desert_dam/interior/dam_interior/western_dam_cave) "ccx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/western_dam_cave) "ccy" = ( /turf/open/floor/plating, @@ -33591,10 +25773,7 @@ "ccz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) "ccA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -33602,48 +25781,33 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "ccB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "ccC" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southwest, /area/desert_dam/interior/dam_interior/break_room) "ccD" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) "ccE" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) "ccF" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) "ccG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33653,83 +25817,58 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "ccH" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) "ccI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ccJ" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "ccK" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/central_caves) "ccL" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_south) "ccM" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "ccN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "ccO" = ( /obj/structure/platform, /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "ccP" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "ccQ" = ( /obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "ccR" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "ccY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/deathrow) "ccZ" = ( /obj/structure/desertdam/decals/road_edge, @@ -33759,23 +25898,15 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/deathrow) "cdf" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/desert_dam/building/warehouse/warehouse) "cdg" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/warden) "cdh" = ( /turf/closed/wall/r_wall/bunker, @@ -33783,17 +25914,13 @@ "cdi" = ( /obj/structure/machinery/computer/station_alert, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "cdj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_telecoms) "cdk" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -33814,16 +25941,12 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "cdo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "cdp" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -33833,9 +25956,7 @@ /area/desert_dam/interior/dam_interior/south_tunnel) "cdq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "cdr" = ( /obj/structure/machinery/power/apc{ @@ -33845,9 +25966,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "cds" = ( /obj/effect/decal/cleanable/blood, @@ -33862,16 +25981,10 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/desert_dam/building/security/prison) "cdv" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_medical) "cdw" = ( /turf/open/desert/dirt, @@ -33880,9 +25993,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cdy" = ( /obj/structure/stairs{ @@ -33891,9 +26002,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "cdz" = ( /obj/structure/stairs{ @@ -33902,24 +26011,18 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "cdA" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cdB" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cdC" = ( /turf/open/asphalt, @@ -33928,28 +26031,19 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cdE" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_medical) "cdF" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_medical) "cdG" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) "cdH" = ( /obj/structure/closet/secure_closet/injection, @@ -33968,9 +26062,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) "cdK" = ( /obj/structure/desertdam/decals/road_edge, @@ -33981,23 +26073,17 @@ /area/desert_dam/exterior/valley/valley_civilian) "cdL" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "cdN" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) "cdO" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) "cdP" = ( /obj/structure/platform{ @@ -34007,9 +26093,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/west_tunnel) "cdQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34018,9 +26102,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) "cdR" = ( /obj/structure/platform{ @@ -34060,38 +26142,28 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) "cdX" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, +/turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/caves/central_caves) "cdY" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "cdZ" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "cea" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ceb" = ( /obj/structure/surface/table/woodentable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "cec" = ( /obj/structure/machinery/vending/coffee, @@ -34109,9 +26181,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "cef" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_central_south) "ceg" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -34122,15 +26192,11 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "cei" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_south) "cej" = ( /obj/structure/flora/grass/desert/lightgrass_6, @@ -34140,14 +26206,10 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cel" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "cen" = ( /turf/closed/wall/r_wall, @@ -34165,15 +26227,10 @@ "ceq" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/valley_medical) "cer" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_medical) "cet" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34188,16 +26245,11 @@ /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/chemistry) "cev" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_south) "cew" = ( /obj/structure/platform_decoration{ @@ -34206,9 +26258,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "cex" = ( /obj/structure/stairs{ @@ -34217,23 +26267,16 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "cey" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "cez" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_telecoms) "ceA" = ( /turf/open/desert/dirt, @@ -34242,24 +26285,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "ceC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/western_dam_cave) "ceD" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_telecoms) "ceF" = ( /obj/structure/machinery/vending/cola, @@ -34267,10 +26303,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) "ceG" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_telecoms) "ceH" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -34283,9 +26316,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/west_tunnel) "ceJ" = ( /obj/structure/machinery/disposal, @@ -34302,53 +26333,38 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ceM" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ceN" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ceO" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ceP" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ceQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel) "ceR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) "ceS" = ( /obj/structure/desertdam/decals/road_edge, @@ -34359,45 +26375,30 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "ceT" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_central_south) "ceU" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "ceV" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/desert_dam/building/dorms/pool) "ceW" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_medical) "ceX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "ceY" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_medical) "ceZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cfa" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -34410,25 +26411,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_medical) "cfd" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_cargo) "cfe" = ( -/turf/open/desert/rock/edge1{ - dir = 4 - }, +/turf/open/desert/rock/edge1/east, /area/desert_dam/exterior/valley/valley_telecoms) "cff" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_telecoms) "cfg" = ( /obj/structure/desertdam/decals/road_edge{ @@ -34460,61 +26453,43 @@ "cfm" = ( /obj/structure/machinery/computer/atmos_alert, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "cfn" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_south) "cfo" = ( /obj/structure/platform_decoration, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "cfp" = ( /obj/structure/stairs{ dir = 8 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "cfq" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "cfr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "cfs" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "cft" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_medical) "cfv" = ( /obj/structure/desertdam/decals/road_edge{ @@ -34580,22 +26555,16 @@ dir = 8 }, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river_mouth/southern) "cfE" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/rock/edge1{ - dir = 4 - }, +/turf/open/desert/rock/edge1/east, /area/desert_dam/exterior/valley/valley_telecoms) "cfG" = ( -/turf/open/desert/rock/edge1{ - dir = 4 - }, +/turf/open/desert/rock/edge1/east, /area/desert_dam/exterior/valley/valley_cargo) "cfH" = ( /obj/effect/blocker/toxic_water, @@ -34605,16 +26574,12 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/bar_valley_dam) "cfN" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/warden) "cfP" = ( /obj/effect/decal/warning_stripes{ @@ -34627,9 +26592,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/south_tunnel) "cfR" = ( /obj/structure/disposalpipe/segment{ @@ -34666,9 +26629,7 @@ }, /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_central_south) "cga" = ( /obj/structure/platform_decoration{ @@ -34681,14 +26642,10 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) "cgc" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_medical) "cgd" = ( /obj/structure/desertdam/decals/road_edge, @@ -34711,15 +26668,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "cgh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/landing_pad_two) "cgi" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "cgj" = ( /obj/structure/platform{ @@ -34728,9 +26681,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "cgk" = ( /obj/structure/platform{ @@ -34742,24 +26693,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "cgm" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/building/substation/west) "cgn" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/west) "cgo" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river_mouth/southern) "cgp" = ( /obj/structure/surface/table, @@ -34777,9 +26721,7 @@ dir = 8 }, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river_mouth/southern) "cgs" = ( /obj/structure/platform{ @@ -34806,15 +26748,11 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) "cgB" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/south_tunnel) "cgC" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_south) "cgD" = ( /obj/structure/disposalpipe/segment, @@ -34833,9 +26771,7 @@ /turf/open/floor/plating, /area/desert_dam/building/substation/west) "cgK" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_medical) "cgL" = ( /obj/effect/decal/warning_stripes{ @@ -34872,29 +26808,19 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor{ - icon_state = "neutral" - }, +/turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) "cgY" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/desert_dam/building/substation/west) "cgZ" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/building/substation/west) "cha" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/desert_dam/building/substation/west) "chb" = ( /obj/structure/reagent_dispensers/fueltank, @@ -34904,9 +26830,7 @@ /obj/structure/urinal{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) "che" = ( /obj/structure/desertdam/decals/road_edge{ @@ -34950,9 +26874,7 @@ /area/desert_dam/building/bar/bar) "chl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/east_caves) "chm" = ( /obj/structure/platform{ @@ -34963,9 +26885,7 @@ /area/desert_dam/exterior/river/riverside_south) "chn" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "cho" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -34973,9 +26893,7 @@ /area/desert_dam/exterior/river/riverside_south) "chp" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "chq" = ( /obj/structure/desertdam/decals/road_edge{ @@ -35022,17 +26940,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "chy" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "chz" = ( /obj/structure/platform{ @@ -35069,9 +26983,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "chD" = ( /obj/effect/decal/warning_stripes{ @@ -35087,9 +26999,7 @@ /area/desert_dam/interior/caves/temple) "chG" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "chJ" = ( /obj/effect/decal/sand_overlay/sand2, @@ -35125,15 +27035,11 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_south) "chU" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_south) "chV" = ( /obj/structure/platform{ @@ -35150,50 +27056,33 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "chX" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_south) "chY" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "chZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "cia" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "cib" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "cic" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/west) "cid" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "cie" = ( /obj/structure/platform{ @@ -35244,33 +27133,25 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/west_tunnel) "cin" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/west_tunnel) "cio" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/west_tunnel) "cip" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/west_tunnel) "cir" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -35286,16 +27167,12 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "civ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "ciw" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) "cix" = ( /obj/structure/desertdam/decals/road_edge{ @@ -35323,9 +27200,7 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "ciE" = ( /obj/structure/platform{ @@ -35359,19 +27234,14 @@ amount = 50 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/west) "ciK" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) "ciL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35380,9 +27250,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/deathrow) "ciM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/central_tunnel) "ciN" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -35392,15 +27260,11 @@ /area/desert_dam/interior/dam_interior/south_tunnel) "ciO" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "ciP" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_south) "ciQ" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -35415,15 +27279,10 @@ /area/desert_dam/building/medical/chemistry) "ciT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "ciU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) "ciV" = ( /turf/closed/wall/r_wall, @@ -35450,34 +27309,26 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/bar_valley_dam) "cji" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "cjj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "cjk" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_south) "cjl" = ( /obj/structure/platform{ @@ -35492,47 +27343,30 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "cjn" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/desert_dam/building/medical/chemistry) "cjo" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/stamp, /obj/item/paper_bin, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/desert_dam/building/medical/chemistry) "cjp" = ( /obj/structure/surface/table/reinforced, /obj/item/packageWrap, /obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/desert_dam/building/medical/chemistry) "cjq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/desert_dam/building/medical/chemistry) "cjr" = ( /obj/structure/closet/secure_closet/chemical, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/desert_dam/building/medical/chemistry) "cjs" = ( /obj/structure/window/framed/colony/reinforced, @@ -35542,19 +27376,13 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "cju" = ( /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/lobby) "cjv" = ( /turf/closed/wall/r_wall, @@ -35565,16 +27393,10 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "cjx" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "cjy" = ( /turf/closed/wall, @@ -35584,37 +27406,22 @@ dir = 1 }, /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/medical/break_room) "cjA" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/medical/break_room) "cjB" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/medical/break_room) "cjC" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/medical/break_room) "cjD" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/building/medical/break_room) "cjE" = ( /obj/structure/machinery/power/apc{ @@ -35647,14 +27454,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cjO" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "cjP" = ( /obj/structure/machinery/power/apc{ @@ -35662,16 +27465,11 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel) "cjQ" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "cjR" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -35679,86 +27477,56 @@ /area/desert_dam/exterior/river/riverside_south) "cjS" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "cjT" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "cjU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/north, /area/desert_dam/building/medical/chemistry) "cjV" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/chemistry) "cjW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/west_wing_hallway) "cjX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/west_wing_hallway) "cjY" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/lobby) "cjZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "cka" = ( /turf/closed/wall, /area/desert_dam/building/medical/morgue) "ckb" = ( /obj/structure/morgue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "ckc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "ckd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/lobby) "cke" = ( /obj/structure/surface/table, /obj/item/bodybag, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "ckf" = ( /obj/structure/machinery/power/apc{ @@ -35766,27 +27534,18 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "ckg" = ( /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "ckh" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/lobby) "cki" = ( /turf/open/floor/prison, @@ -35796,39 +27555,27 @@ /turf/open/floor/prison, /area/desert_dam/building/medical/break_room) "ckk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/medical/break_room) "ckm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/smes_backup) "ckn" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "cko" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "ckp" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_cargo) "ckq" = ( /obj/effect/landmark/survivor_spawner, @@ -35840,16 +27587,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cks" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) "ckt" = ( /obj/effect/decal/warning_stripes{ @@ -35858,9 +27600,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cku" = ( /obj/structure/showcase{ @@ -35869,58 +27609,38 @@ /turf/open/floor/greengrid, /area/desert_dam/building/substation/west) "ckv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/west) "ckw" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cell 3" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) "ckx" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "cky" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) "ckA" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/chemistry) "ckB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/chemistry) "ckC" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/chemistry) "ckD" = ( /turf/closed/wall, @@ -35931,34 +27651,25 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "ckF" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "ckG" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "ckH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "ckI" = ( /obj/structure/pipes/vents/pump{ @@ -35967,9 +27678,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "ckJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35978,15 +27687,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "ckL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "ckM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35996,62 +27701,39 @@ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/west_wing_hallway) "ckN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "ckO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "ckP" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "ckQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "ckR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "ckS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/building/medical/break_room) "ckT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "ckU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36062,23 +27744,15 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "ckW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/lobby) "ckX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/lobby) "ckY" = ( /obj/structure/reagent_dispensers/watertank, @@ -36095,9 +27769,7 @@ dir = 9 }, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "clb" = ( /obj/structure/largecrate/random/barrel, @@ -36119,18 +27791,14 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "clf" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "clg" = ( /obj/structure/platform{ @@ -36140,24 +27808,18 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_south) "clh" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "cli" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_central_south) "clj" = ( /turf/open/floor/plating, @@ -36165,9 +27827,7 @@ "clk" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "cll" = ( /obj/structure/platform{ @@ -36179,15 +27839,11 @@ /area/desert_dam/exterior/river/riverside_central_south) "clm" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river_mouth/southern) "cln" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river_mouth/southern) "clo" = ( /obj/structure/platform{ @@ -36213,30 +27869,20 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Lab Maintenance" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "clr" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Restroom" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "clt" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "clw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/building/substation/west) "clz" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -36245,9 +27891,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/prison) "clA" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/mining/workshop_foyer) "clB" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -36255,10 +27899,7 @@ /area/desert_dam/exterior/river/riverside_central_south) "clC" = ( /obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) "clD" = ( /obj/structure/platform{ @@ -36269,9 +27910,7 @@ /area/desert_dam/exterior/river/riverside_south) "clE" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "clF" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -36283,21 +27922,13 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Office" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/chemistry) "clH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/chemistry) "clI" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "clJ" = ( /obj/structure/surface/table/reinforced, @@ -36307,68 +27938,47 @@ pixel_y = 3 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "clK" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/glass/beaker/large, /obj/item/reagent_container/glass/beaker/large, /obj/item/reagent_container/glass/beaker, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "clL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; name = "\improper Medical Chemistry" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "clM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "clN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "clO" = ( /obj/structure/surface/table, /obj/item/device/autopsy_scanner, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "clP" = ( /obj/structure/machinery/optable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "clQ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/medical/break_room) "clR" = ( /obj/structure/disposalpipe/segment{ @@ -36381,9 +27991,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/lobby) "clT" = ( /obj/structure/surface/table/reinforced, @@ -36391,39 +27999,28 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/desert_dam/interior/dam_interior/lobby) "clU" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "clV" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "clW" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "clX" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "clY" = ( /obj/structure/desertdam/decals/road_edge, @@ -36444,9 +28041,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "cmc" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cmf" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -36454,10 +28049,7 @@ id = "dam_shutter_hangar"; name = "\improper Hangar Lock" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hanger) "cmg" = ( /obj/structure/platform{ @@ -36473,30 +28065,22 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "cmi" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cmj" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cmk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cml" = ( /turf/open/floor/greengrid, @@ -36515,74 +28099,48 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "cms" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "cmt" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/chemistry) "cmu" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/chemistry) "cmv" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/pillbottles, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "cmw" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "cmx" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/west_wing_hallway) "cmB" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "cmC" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/medical/break_room) "cmD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/lobby) "cmE" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36619,23 +28177,16 @@ /turf/open/floor/carpet, /area/desert_dam/building/warehouse/breakroom) "cmM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_civilian) "cmN" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "cmO" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/warehouse) "cmP" = ( /obj/structure/bed/chair/office/light{ @@ -36654,17 +28205,13 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) "cmR" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_civilian) "cmS" = ( /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) "cmU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_civilian) "cmV" = ( /obj/structure/machinery/light, @@ -36679,34 +28226,24 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cmY" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) "cmZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/building/substation/west) "cna" = ( /obj/structure/sink{ dir = 1; pixel_y = -10 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "cnb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/building/warehouse/breakroom) "cnc" = ( /obj/structure/pipes/vents/pump, @@ -36714,19 +28251,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "cne" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "cnf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -36736,20 +28267,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "cng" = ( /obj/effect/landmark/crap_item, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) "cni" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/desert_dam/building/substation/west) "cnp" = ( /obj/structure/disposalpipe/segment{ @@ -36770,10 +28295,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "cnu" = ( /obj/structure/surface/table/woodentable, @@ -36791,23 +28313,17 @@ /obj/structure/surface/table, /obj/structure/machinery/light, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/lobby) "cnx" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "cny" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "cnz" = ( /obj/structure/bed/chair/comfy/beige{ @@ -36823,7 +28339,7 @@ dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "cnB" = ( /obj/structure/platform{ dir = 8 @@ -36839,9 +28355,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cnE" = ( /obj/structure/prop/dam/wide_boulder/boulder1, @@ -36853,31 +28367,21 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "cnG" = ( -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/desert_dam/building/medical/chemistry) "cnH" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/desert_dam/building/medical/chemistry) "cnI" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "cnJ" = ( /obj/structure/machinery/smartfridge/chemistry, @@ -36887,40 +28391,25 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/west_wing_hallway) "cnL" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "cnN" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "cnO" = ( /obj/structure/surface/table, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/desert_dam/building/medical/break_room) "cnP" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/building/medical/break_room) "cnQ" = ( /obj/structure/machinery/light, @@ -36933,10 +28422,7 @@ "cnS" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/landing/console2) "cnT" = ( /obj/effect/decal/warning_stripes{ @@ -36958,55 +28444,35 @@ /area/desert_dam/building/warehouse/warehouse) "cnW" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "cnX" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "cnZ" = ( /obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) "coa" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) "cob" = ( /obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) "coc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "cod" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "coe" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/desert_dam/building/warehouse/warehouse) "cof" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -37023,10 +28489,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/warehouse/breakroom) "coj" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -37036,15 +28499,10 @@ id = "dam_shutter_hangar"; name = "\improper Hangar Lock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "cok" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) "col" = ( /obj/structure/bed/chair{ @@ -37054,24 +28512,16 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "com" = ( /obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside{ - dir = 4 - }, +/turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_hydro) "con" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "coo" = ( /obj/effect/blocker/toxic_water, @@ -37079,22 +28529,16 @@ /area/desert_dam/exterior/river_mouth/southern) "cop" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river_mouth/southern) "cos" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "cou" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/building/warehouse/breakroom) "cov" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -37124,40 +28568,29 @@ "coB" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/warehouse) "coC" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) "coE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) "coF" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_south) "coG" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_medical) "coH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) "coI" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -37171,9 +28604,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_medical) "coL" = ( /obj/structure/desertdam/decals/road_edge, @@ -37184,50 +28615,36 @@ /area/desert_dam/exterior/valley/valley_medical) "coM" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered, /area/desert_dam/building/medical/chemistry) "coN" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered, /area/desert_dam/building/medical/chemistry) "coO" = ( /obj/structure/machinery/chem_master, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "coP" = ( -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "coQ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "coR" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "coS" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/northleft{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "coT" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -37235,10 +28652,7 @@ name = "\improper Morgue" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "coU" = ( /obj/structure/window/framed/colony, @@ -37246,10 +28660,7 @@ /area/desert_dam/building/medical/break_room) "coV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) "coW" = ( /obj/structure/cargo_container/grant/rightmid, @@ -37277,29 +28688,19 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cpc" = ( /obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/warehouse/warehouse) "cpd" = ( /obj/structure/platform_decoration, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river_mouth/southern) "cpf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) "cpg" = ( /obj/structure/machinery/power/apc{ @@ -37307,31 +28708,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/desert_dam/building/warehouse/warehouse) "cph" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/warehouse/warehouse) "cpi" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/desert_dam/building/warehouse/warehouse) "cpj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/desert_dam/building/bar/bar) "cpm" = ( /obj/structure/machinery/light{ @@ -37344,32 +28733,22 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/bar_valley_dam) "cpp" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/building/warehouse/breakroom) "cpq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/desert_dam/building/bar/bar) "cps" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/warehouse/breakroom) "cpu" = ( /obj/structure/flora/grass/desert/lightgrass_3, @@ -37380,73 +28759,49 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "cpw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "cpx" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northwest, /area/desert_dam/building/medical/office1) "cpy" = ( /obj/structure/closet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northeast, /area/desert_dam/building/medical/office1) "cpz" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northwest, /area/desert_dam/building/medical/office2) "cpA" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "cpB" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "cpC" = ( /obj/structure/machinery/reagentgrinder, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "cpD" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "cpE" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/dam_interior/smes_backup) "cpF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -37454,47 +28809,29 @@ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "cpG" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/west_wing_hallway) "cpH" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/medical/north_wing_hallway) "cpI" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "cpJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/north_wing_hallway) "cpL" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/north_wing_hallway) "cpM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "cpN" = ( /obj/structure/machinery/power/apc{ @@ -37502,18 +28839,13 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "cpP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "cpQ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -37542,48 +28874,35 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) "cpV" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_central_south) "cpW" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cpX" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) "cpY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cpZ" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_civilian) "cqa" = ( /turf/open/asphalt/cement, @@ -37592,75 +28911,51 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/warehouse/breakroom) "cqc" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/building/warehouse/breakroom) "cqd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/desert_dam/building/substation/west) "cqf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "cqg" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/building/warehouse/breakroom) "cqh" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/building/warehouse/breakroom) "cqj" = ( /obj/structure/surface/table, /obj/item/restraint/handcuffs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/warden) "cqk" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/shotgun/slugs, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/warden) "cql" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) "cqm" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/warden) "cqn" = ( /turf/closed/wall/r_wall/bunker{ @@ -37671,9 +28966,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "cqq" = ( /obj/structure/flora/grass/desert/lightgrass_6, @@ -37684,26 +28977,18 @@ /obj/structure/machinery/door/window/brigdoor/northleft{ dir = 2 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "cqt" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "cqu" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cqv" = ( /obj/structure/machinery/disposal, @@ -37719,10 +29004,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/west_wing_hallway) "cqx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37731,18 +29013,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "cqy" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cqA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -37751,42 +29027,28 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "cqC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/lobby) "cqE" = ( /obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cqF" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/glasses/welding, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cqG" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "cqH" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -37800,18 +29062,12 @@ /obj/item/folder, /obj/item/device/assembly/signaller, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cqJ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cqK" = ( /obj/structure/machinery/light, @@ -37825,19 +29081,14 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_wilderness) "cqT" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) "cqU" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_civilian) "cra" = ( /obj/structure/platform{ @@ -37855,16 +29106,12 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "crd" = ( /obj/structure/machinery/computer/telecomms/traffic, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "crg" = ( /obj/structure/surface/table, @@ -37873,25 +29120,19 @@ pixel_y = 2 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "crh" = ( /obj/structure/surface/table, /obj/item/device/analyzer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cri" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "crj" = ( /obj/structure/showcase{ @@ -37900,10 +29141,7 @@ /turf/open/floor/greengrid, /area/desert_dam/building/substation/west) "crk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/building/substation/west) "crl" = ( /obj/structure/surface/table, @@ -37913,19 +29151,14 @@ pixel_y = 2 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/west) "crm" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "crn" = ( /obj/effect/decal/warning_stripes{ @@ -37934,9 +29167,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "cro" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -37946,15 +29177,10 @@ /turf/open/floor/prison, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "crq" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_cargo) "crr" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_cargo) "cru" = ( /obj/structure/flora/grass/desert/lightgrass_3, @@ -37989,34 +29215,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/lobby) "crC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/lobby) "crD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "crE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/lobby) "crF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/lobby) "crG" = ( /obj/structure/machinery/power/apc{ @@ -38024,10 +29235,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/lobby) "crH" = ( /obj/structure/window/framed/colony, @@ -38035,28 +29243,20 @@ /area/desert_dam/building/medical/lobby) "crI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/lobby) "crK" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/west_wing_hallway) "crL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; name = "\improper Medical Hallway" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "crM" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "crN" = ( /obj/structure/machinery/power/smes/buildable{ @@ -38064,18 +29264,13 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/desert_dam/interior/dam_interior/smes_backup) "crO" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_telecoms) "crP" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -38083,39 +29278,26 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/north_wing_hallway) "crQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/workshop) "crR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/north_wing_hallway) "crS" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "crV" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/desert_dam/building/mining/workshop_foyer) "crW" = ( /obj/structure/desertdam/decals/road_edge{ @@ -38155,14 +29337,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/workshop) "csf" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_civilian) "csg" = ( /obj/structure/platform{ @@ -38172,30 +29350,20 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) "csh" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/desert_dam/building/security/prison) "csi" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_civilian) "csj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "csl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/desert_dam/building/security/prison) "csm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38219,9 +29387,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "csp" = ( /obj/structure/machinery/power/apc{ @@ -38229,26 +29395,17 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/west) "css" = ( /obj/structure/surface/table, /obj/item/device/analyzer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/west) "cst" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/west) "csu" = ( /obj/structure/stairs, @@ -38256,10 +29413,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "csw" = ( /obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/building/substation/west) "csx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38268,10 +29422,7 @@ /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) "csy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/desert_dam/building/bar/bar) "csz" = ( /obj/structure/desertdam/decals/road_edge, @@ -38283,27 +29434,16 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "csA" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_cargo) "csB" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "csC" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_cargo) "csD" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_cargo) "csE" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -38328,35 +29468,23 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "csI" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/lobby) "csJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/lobby) "csK" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/lobby) "csL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "csM" = ( /obj/effect/spawner/random/toolbox, @@ -38366,10 +29494,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "csN" = ( /obj/structure/surface/table/reinforced, @@ -38378,65 +29503,41 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "csO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/west_wing_hallway) "csP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "csQ" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/west_wing_hallway) "csR" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "csS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/north_wing_hallway) "csT" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/north_wing_hallway) "csU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/north_wing_hallway) "csV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/north_wing_hallway) "csW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -38448,16 +29549,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/workshop) "csY" = ( /obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/workshop) "csZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -38465,21 +29562,15 @@ name = "\improper Workshop" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/workshop) "cta" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "ctb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/west_tunnel) "ctc" = ( /obj/structure/disposalpipe/segment{ @@ -38488,123 +29579,80 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/west_tunnel) "ctd" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "cte" = ( /obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/west) "ctf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/west_tunnel) "ctg" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/west_tunnel) "cth" = ( /obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/west) "cti" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/west_tunnel) "ctj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ctl" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ctm" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_civilian) "ctn" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_civilian) "cto" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) "ctp" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_civilian) "ctq" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_civilian) "cts" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ctt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ctu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ctv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ctw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/west) "ctz" = ( /obj/structure/platform{ @@ -38613,40 +29661,28 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "ctA" = ( /obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/west) "ctB" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/desert_dam/building/substation/west) "ctD" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northeastern_tunnel) "ctE" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "ctF" = ( /obj/effect/decal/warning_stripes{ @@ -38665,29 +29701,21 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "ctL" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_medical) "ctM" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) "ctN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "ctO" = ( /obj/structure/desertdam/decals/road_stop{ @@ -38701,36 +29729,23 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "ctQ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/lobby) "ctR" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/lobby) "ctS" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/lobby) "ctT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; name = "\improper Medical Lobby" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/lobby) "ctV" = ( /obj/structure/surface/table/reinforced, @@ -38741,10 +29756,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "ctW" = ( /turf/closed/wall, @@ -38760,16 +29772,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Observation" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgury_observation) "cua" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgury_observation) "cub" = ( /obj/structure/window/framed/colony, @@ -38779,18 +29785,12 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical Hallway" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "cud" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "cue" = ( /turf/closed/wall, @@ -38813,9 +29813,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "cuk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38827,9 +29825,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "cul" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38840,9 +29836,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "cum" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38852,9 +29846,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/central_tunnel) "cun" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38864,49 +29856,35 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/central_tunnel) "cuo" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/central_tunnel) "cup" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cuq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/central_tunnel) "cur" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/central_tunnel) "cus" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/central_tunnel) "cut" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/central_tunnel) "cuu" = ( /obj/structure/platform{ @@ -38915,37 +29893,25 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "cuv" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "cuw" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_civilian) "cux" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_civilian) "cuy" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_telecoms) "cuz" = ( /obj/structure/desertdam/decals/road_edge{ @@ -38957,27 +29923,20 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) "cuA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/desert_dam/building/substation/west) "cuB" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/desert_dam/building/substation/west) "cuH" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_cargo) "cuI" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/south_tunnel) "cuJ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -38992,9 +29951,7 @@ /obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/south_tunnel) "cuL" = ( /obj/structure/desertdam/decals/road_edge{ @@ -39031,15 +29988,11 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cuQ" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "cuR" = ( /obj/structure/platform{ @@ -39050,18 +30003,14 @@ }, /obj/effect/blocker/toxic_water/Group_2, /obj/item/clothing/head/soft/ferret, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_central_south) "cuS" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_south) "cuT" = ( /obj/structure/platform{ @@ -39070,73 +30019,46 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "cuU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "cuV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/lobby) "cuW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/smes_backup) "cuX" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "cuY" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northwest, /area/desert_dam/building/medical/primary_storage) "cuZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/primary_storage) "cva" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northeast, /area/desert_dam/building/medical/primary_storage) "cvb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/surgury_observation) "cvc" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/surgury_observation) "cvd" = ( /obj/structure/machinery/power/apc{ @@ -39144,31 +30066,20 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/surgury_observation) "cve" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "cvf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "cvg" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "cvh" = ( /obj/structure/closet/secure_closet/medical_doctor, @@ -39184,10 +30095,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "cvk" = ( /obj/structure/machinery/computer/crew, @@ -39201,21 +30109,14 @@ /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/south_tunnel) "cvn" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) "cvo" = ( /obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) "cvp" = ( /obj/effect/decal/cleanable/dirt, @@ -39225,10 +30126,7 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/bar_valley_dam) "cvq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/desert_dam/building/bar/bar) "cvr" = ( /obj/effect/decal/cleanable/dirt, @@ -39249,70 +30147,48 @@ /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) "cvv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/south_tunnel) "cvw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) "cvx" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) "cvz" = ( /obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/south_tunnel) "cvA" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/south_tunnel) "cvB" = ( /obj/structure/surface/table, /obj/item/folder/black_random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/building/substation/west) "cvC" = ( /obj/structure/surface/table, /obj/item/folder/yellow, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/substation/west) "cvD" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "cvE" = ( /obj/structure/surface/table, /obj/item/device/encryptionkey, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/building/substation/west) "cvF" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/desert_dam/building/substation/west) "cvG" = ( /obj/effect/decal/warning_stripes{ @@ -39321,10 +30197,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) "cvH" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "cvI" = ( /obj/structure/desertdam/decals/road_stop{ @@ -39341,15 +30214,11 @@ /area/desert_dam/exterior/valley/valley_cargo) "cvK" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_south) "cvL" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_south) "cvM" = ( /turf/closed/wall/r_wall, @@ -39361,10 +30230,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/lobby) "cvO" = ( /obj/structure/surface/table/reinforced, @@ -39375,20 +30241,14 @@ dir = 8; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cvP" = ( /obj/structure/machinery/computer/med_data, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cvQ" = ( /obj/structure/machinery/computer/crew, @@ -39398,73 +30258,47 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cvS" = ( /obj/structure/cargo_container/trijent/mid/alt, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) "cvT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/primary_storage) "cvU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/primary_storage) "cvV" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cvW" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/surgury_observation) "cvZ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Observation" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgury_observation) "cwb" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cwc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cwd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/east_wing_hallway) "cwf" = ( /obj/structure/bed/chair/office/light{ @@ -39486,21 +30320,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/building/substation/west) "cwl" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_telecoms) "cwm" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_telecoms) "cwn" = ( /obj/effect/decal/cleanable/dirt, @@ -39508,18 +30335,13 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "cwo" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_civilian) "cwp" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cwq" = ( /obj/structure/desertdam/decals/road_edge{ @@ -39536,10 +30358,7 @@ id = "dam_shutter_hangar"; name = "\improper Hangar Lock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "cws" = ( /obj/structure/disposalpipe/segment{ @@ -39548,39 +30367,25 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) "cwu" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_civilian) "cww" = ( /obj/structure/surface/table, /obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/west) "cwx" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/southwest, /area/desert_dam/building/substation/west) "cwy" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/substation/west) "cwz" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_cargo) "cwA" = ( /obj/structure/desertdam/decals/road_edge{ @@ -39592,17 +30397,12 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) "cwB" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_cargo) "cwC" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) "cwD" = ( /obj/structure/disposalpipe/segment{ @@ -39634,10 +30434,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/lobby) "cwI" = ( /obj/structure/surface/table/reinforced, @@ -39645,106 +30442,68 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cwJ" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cwK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cwL" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cwM" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/pillbottles, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "cwN" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/primary_storage) "cwO" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/primary_storage) "cwP" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "cwQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/surgury_observation) "cwR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/surgury_observation) "cwS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "cwT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cwU" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cwV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39753,10 +30512,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cwW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39768,10 +30524,7 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper CMO's Officer" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/CMO) "cwX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39814,9 +30567,7 @@ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/south_tunnel) "cxf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -39838,14 +30589,10 @@ "cxj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/western_dam_cave) "cxk" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_telecoms) "cxl" = ( /obj/item/stack/sheet/wood, @@ -39856,25 +30603,17 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) "cxm" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_civilian) "cxn" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_telecoms) "cxo" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/building/substation/west) "cxq" = ( /obj/structure/platform{ @@ -39883,18 +30622,13 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cxr" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_cargo) "cxt" = ( /obj/structure/platform{ @@ -39909,17 +30643,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cxv" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) "cxw" = ( /obj/structure/desertdam/decals/road_edge{ @@ -39948,9 +30678,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "cxA" = ( /obj/structure/surface/table/reinforced, @@ -39960,25 +30688,17 @@ }, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cxB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whiteredcorner" - }, +/turf/open/floor/prison/whiteredcorner/east, /area/desert_dam/building/medical/primary_storage) "cxC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Workshop" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/workshop) "cxD" = ( /obj/structure/surface/table, @@ -39989,10 +30709,7 @@ /obj/item/storage/pill_bottle/inaprovaline{ pixel_x = 7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "cxE" = ( /obj/structure/window/framed/colony, @@ -40004,15 +30721,10 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cxH" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/east_wing_hallway) "cxI" = ( /obj/structure/disposalpipe/segment, @@ -40020,10 +30732,7 @@ /area/desert_dam/building/medical/CMO) "cxJ" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/west) "cxK" = ( /obj/structure/machinery/autolathe, @@ -40037,10 +30746,7 @@ /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) "cxN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/west) "cxP" = ( /obj/structure/platform{ @@ -40059,34 +30765,23 @@ /area/desert_dam/exterior/valley/valley_cargo) "cxR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/desert_dam/building/substation/west) "cxS" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_cargo) "cxT" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "cxU" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_cargo) "cxV" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_cargo) "cxW" = ( /obj/structure/platform{ @@ -40094,28 +30789,20 @@ }, /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "cxY" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cxZ" = ( /obj/structure/window/reinforced, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "cyb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -40125,10 +30812,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "cyc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40138,10 +30822,7 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/west_wing_hallway) "cyd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40150,10 +30831,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/primary_storage) "cye" = ( /obj/structure/pipes/vents/pump{ @@ -40163,10 +30841,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/primary_storage) "cyf" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -40180,16 +30855,10 @@ /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northwest, /area/desert_dam/building/medical/surgery_room_one) "cyh" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/surgery_room_one) "cyj" = ( /obj/structure/closet/secure_closet/medical2, @@ -40198,10 +30867,7 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northeast, /area/desert_dam/building/medical/surgery_room_one) "cyk" = ( /turf/closed/wall, @@ -40210,23 +30876,14 @@ /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northwest, /area/desert_dam/building/medical/surgery_room_two) "cym" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/surgery_room_two) "cyn" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/surgery_room_two) "cyo" = ( /obj/structure/closet/secure_closet/medical2, @@ -40235,10 +30892,7 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northeast, /area/desert_dam/building/medical/surgery_room_two) "cyp" = ( /turf/closed/wall, @@ -40264,10 +30918,7 @@ /area/desert_dam/building/medical/CMO) "cyt" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/desert_dam/building/mining/workshop) "cyv" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -40276,60 +30927,43 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) "cyw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/desert_dam/building/mining/workshop_foyer) "cyx" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/mining/workshop_foyer) "cyB" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_cargo) "cyC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_cargo) "cyD" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "cyE" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_cargo) "cyG" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_cargo) "cyH" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/armory) "cyL" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cyN" = ( /obj/structure/flora/grass/desert/lightgrass_11, @@ -40346,42 +30980,31 @@ "cyR" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "cyS" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "cyU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/workshop) "cyV" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/west_wing_hallway) "cyW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Medical Storage" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/primary_storage) "cyX" = ( /obj/structure/surface/table, @@ -40390,40 +31013,23 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "cyY" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_one) "cyZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_one) "cza" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/mining/workshop_foyer) "czb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_two) "czc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_two) "czd" = ( /obj/item/tool/surgery/surgicaldrill, @@ -40432,19 +31038,13 @@ /obj/item/tool/surgery/FixOVein, /obj/item/stack/nanopaste, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_two) "cze" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "czf" = ( /turf/closed/wall, @@ -40456,9 +31056,7 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/mining/workshop_foyer) "czj" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -40466,31 +31064,22 @@ /area/desert_dam/exterior/river/riverside_central_south) "czk" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "czn" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/mining/workshop_foyer) "czq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) "czt" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/rock/edge1{ - dir = 4 - }, +/turf/open/desert/rock/edge1/east, /area/desert_dam/exterior/valley/valley_cargo) "czv" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -40500,10 +31089,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_cargo) "czx" = ( /obj/structure/flora/grass/desert/lightgrass_8, @@ -40511,30 +31097,19 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "czy" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "czz" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) "czA" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_cargo) +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_two) "czB" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "czC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -40543,16 +31118,11 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "czD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/CE_office) "czE" = ( /obj/structure/surface/table, @@ -40569,27 +31139,18 @@ pixel_x = -5; pixel_y = -5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whiteredcorner" - }, +/turf/open/floor/prison/whiteredcorner/west, /area/desert_dam/building/medical/primary_storage) "czF" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "czG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_one) "czH" = ( /obj/item/tool/surgery/scalpel, @@ -40599,19 +31160,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_one) "czI" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_two) "czJ" = ( /obj/item/tool/surgery/scalpel, @@ -40621,32 +31176,20 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_two) "czL" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/central) "czM" = ( /obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/central) "czN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/central) "czO" = ( /turf/closed/wall/r_wall, @@ -40673,9 +31216,7 @@ /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "czS" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_south) "czT" = ( /obj/structure/platform{ @@ -40685,17 +31226,13 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "czU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "czV" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -40703,32 +31240,23 @@ /area/desert_dam/exterior/river/riverside_south) "czW" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) "czX" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_south) "czY" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_cargo) "czZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_cargo) "cAa" = ( /obj/structure/platform{ @@ -40763,110 +31291,80 @@ }, /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "cAf" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_south) "cAg" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "cAh" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "cAi" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "cAj" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "cAk" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "cAl" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "cAm" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "cAn" = ( /obj/structure/surface/table, /obj/item/bodybag/cryobag, /obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/primary_storage) "cAo" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "cAp" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_one) "cAq" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cAr" = ( /obj/item/tool/surgery/retractor, @@ -40877,27 +31375,18 @@ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_one) "cAs" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_two) "cAt" = ( /obj/structure/machinery/optable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_two) "cAu" = ( /obj/item/tool/surgery/retractor, @@ -40908,10 +31397,7 @@ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_two) "cAv" = ( /obj/structure/machinery/power/apc{ @@ -40919,10 +31405,7 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/central) "cAx" = ( /obj/structure/machinery/power/terminal{ @@ -40940,33 +31423,22 @@ "cAC" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/northeast, /area/desert_dam/building/medical/office2) "cAD" = ( /obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/office1) "cAE" = ( /obj/structure/closet/secure_closet/medical_doctor, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/office1) "cAF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "cAG" = ( /turf/closed/wall, @@ -40983,32 +31455,20 @@ }, /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/emergency_room) "cAI" = ( /obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/office2) "cAJ" = ( /obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/office2) "cAK" = ( /obj/structure/disposalpipe/segment, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/emergency_room) "cAL" = ( /obj/structure/flora/grass/desert/lightgrass_8, @@ -41050,9 +31510,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) "cAR" = ( /obj/structure/platform_decoration{ @@ -41061,9 +31519,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) "cAT" = ( /obj/structure/desertdam/decals/road_edge{ @@ -41075,10 +31531,7 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) "cAU" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/desert_dam/building/bar/bar) "cAV" = ( /obj/structure/desertdam/decals/road_edge{ @@ -41098,36 +31551,26 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "cAY" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "cAZ" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "cBa" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "cBb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_medical) "cBc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -41146,53 +31589,36 @@ }, /obj/structure/machinery/light, /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/lobby) "cBe" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "cBf" = ( /obj/effect/decal/medical_decals{ dir = 4; icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/lobby) "cBg" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/lobby) "cBh" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/west_wing_hallway) "cBi" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "cBj" = ( /obj/effect/decal/medical_decals{ @@ -41200,19 +31626,13 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "cBk" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "cBl" = ( /obj/structure/surface/table, @@ -41221,10 +31641,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/primary_storage) "cBm" = ( /obj/structure/machinery/power/apc{ @@ -41232,27 +31649,18 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_one) "cBo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cBp" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_one) "cBq" = ( /obj/structure/machinery/power/apc{ @@ -41260,55 +31668,37 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/surgery_room_two) "cBr" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/west) "cBs" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_two) "cBt" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_two) "cBu" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/central) "cBx" = ( /turf/open/floor/prison, /area/desert_dam/building/substation/central) "cBy" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/central) "cBz" = ( /turf/open/floor/plating, @@ -41317,74 +31707,50 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/office1) "cBC" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/office1) "cBD" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/office1) "cBF" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/office2) "cBG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/office2) "cBH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/office2) "cBI" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 10 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/south_tunnel) "cBJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "cBL" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) "cBN" = ( /obj/effect/decal/cleanable/dirt, @@ -41409,16 +31775,12 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "cBS" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_two) "cBT" = ( /obj/structure/machinery/light, /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "cBU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -41430,9 +31792,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_cargo) "cBW" = ( /obj/structure/flora/bush/desert/cactus{ @@ -41443,10 +31803,7 @@ "cBX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/desert_dam/building/bar/bar) "cBY" = ( /obj/structure/flora/grass/desert/lightgrass_5, @@ -41461,10 +31818,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "cCa" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "cCb" = ( /obj/structure/platform{ @@ -41496,15 +31850,10 @@ "cCh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "cCi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "cCj" = ( /obj/structure/window/framed/colony/reinforced, @@ -41514,114 +31863,70 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Emergency Room" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/emergency_room) "cCl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/emergency_room) "cCm" = ( /obj/item/device/defibrillator, /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/southwest, /area/desert_dam/building/medical/primary_storage) "cCn" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered, /area/desert_dam/building/medical/primary_storage) "cCo" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/southeast, /area/desert_dam/building/medical/primary_storage) "cCp" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/southwest, /area/desert_dam/building/medical/surgery_room_one) "cCq" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whiteredcorner" - }, +/turf/open/floor/prison/whiteredcorner/west, /area/desert_dam/building/medical/surgery_room_one) "cCr" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_one) "cCs" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_one) "cCt" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/southwest, /area/desert_dam/building/medical/surgery_room_two) "cCu" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whiteredcorner" - }, +/turf/open/floor/prison/whiteredcorner/west, /area/desert_dam/building/medical/surgery_room_two) "cCv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_two) "cCw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_two) "cCx" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/central) "cCy" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/central) "cCz" = ( /obj/structure/surface/rack, @@ -41631,10 +31936,7 @@ /turf/open/floor/plating, /area/desert_dam/building/substation/central) "cCA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/office1) "cCC" = ( /obj/structure/bed, @@ -41643,10 +31945,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/office1) "cCE" = ( /obj/structure/bed, @@ -41655,19 +31954,14 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/office2) "cCF" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/east_wing_hallway) "cCG" = ( /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "cCH" = ( /obj/structure/desertdam/decals/road_edge{ @@ -41689,102 +31983,73 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_telecoms) "cCL" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_cargo) "cCM" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "cCO" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_cargo) "cCP" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cCQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cCR" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_north) "cCS" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_central_north) "cCT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "cCU" = ( /obj/structure/platform_decoration{ dir = 1 }, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_cargo) "cCW" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/mining/workshop_foyer) -"cCY" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/rock) "cCZ" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_two) "cDb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_two) "cDc" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -41801,10 +32066,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/building/medical/garage) "cDf" = ( /turf/open/floor/plating, @@ -41813,15 +32075,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/medical/garage) "cDh" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cDi" = ( /obj/structure/pipes/portables_connector{ @@ -41831,10 +32088,7 @@ /obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) "cDj" = ( /obj/structure/machinery/light{ @@ -41843,16 +32097,11 @@ /obj/structure/pipes/standard/simple/hidden{ dir = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/emergency_room) "cDk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cDl" = ( /obj/structure/machinery/cryo_cell, @@ -41860,19 +32109,13 @@ icon_state = "cryotop" }, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "cDm" = ( /obj/structure/pipes/unary/freezer{ icon_state = "freezer_1" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "cDn" = ( /obj/effect/decal/medical_decals{ @@ -41880,10 +32123,7 @@ }, /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "cDo" = ( /obj/structure/surface/table/almayer, @@ -41892,30 +32132,18 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "cDp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/emergency_room) "cDq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/emergency_room) "cDr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/emergency_room) "cDs" = ( /obj/structure/window/framed/colony, @@ -41927,10 +32155,7 @@ dir = 1; name = "\improper Operating Theatre 1" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_one) "cDu" = ( /obj/structure/window/framed/colony, @@ -41942,10 +32167,7 @@ dir = 1; name = "\improper Operating Theatre 2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_two) "cDy" = ( /obj/structure/window/framed/colony, @@ -41956,10 +32178,7 @@ dir = 1; name = "\improper Examination Room" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/office1) "cDA" = ( /obj/structure/window/framed/colony, @@ -41970,62 +32189,41 @@ dir = 1; name = "\improper Examination Room" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/office2) "cDC" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "cDD" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "cDE" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "cDF" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "cDK" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_two) "cDL" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) "cDM" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_two) "cDN" = ( /turf/open/desert/rock/deep/transition, @@ -42035,55 +32233,41 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "cDQ" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "cDR" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "cDT" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/kpack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cDU" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cDV" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) "cDX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) "cDY" = ( /turf/open/floor/plating, @@ -42101,23 +32285,15 @@ /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/desert_dam/building/bar/bar) "cEc" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) "cEd" = ( /obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) "cEe" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -42128,24 +32304,16 @@ /turf/open/floor/plating, /area/desert_dam/building/medical/garage) "cEg" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/building/medical/garage) "cEh" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/medical/garage) "cEi" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cEj" = ( /obj/structure/pipes/portables_connector{ @@ -42155,17 +32323,11 @@ /obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/emergency_room) "cEk" = ( /obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) "cEl" = ( /obj/effect/decal/sand_overlay/sand2{ @@ -42175,26 +32337,18 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/western_dam_cave) "cEn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "cEo" = ( /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, /obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/emergency_room) "cEp" = ( /obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "cEq" = ( /obj/effect/decal/medical_decals{ @@ -42203,16 +32357,10 @@ /obj/structure/pipes/standard/simple/hidden{ dir = 9 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) "cEr" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) "cEs" = ( /obj/effect/decal/cleanable/dirt, @@ -42229,29 +32377,18 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/emergency_room) "cEv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "cEy" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cEz" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cEA" = ( /obj/structure/machinery/iv_drip, @@ -42260,44 +32397,26 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/treatment_room) "cEB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/treatment_room) "cEC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/treatment_room) "cED" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/treatment_room) "cEE" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/treatment_room) "cEF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/treatment_room) "cEG" = ( /obj/structure/window/framed/colony, @@ -42308,10 +32427,7 @@ dir = 4; icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/east_wing_hallway) "cEI" = ( /obj/structure/machinery/power/apc{ @@ -42319,52 +32435,31 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "cEJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/east_wing_hallway) "cEM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "cEN" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "cEO" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/east_wing_hallway) "cEP" = ( /obj/structure/machinery/light, /obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) "cEQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/desert_dam/interior/dam_interior/south_tunnel) "cES" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_two) "cET" = ( /obj/effect/decal/warning_stripes{ @@ -42384,14 +32479,10 @@ /area/desert_dam/exterior/valley/valley_civilian) "cEW" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "cEX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/south_tunnel) "cEY" = ( /obj/structure/desertdam/decals/road_edge{ @@ -42405,9 +32496,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_two) "cFa" = ( /obj/docking_port/stationary/marine_dropship/lz2, @@ -42417,34 +32506,26 @@ /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/landing_pad_two) "cFc" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) "cFd" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) "cFe" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_two) "cFf" = ( /obj/structure/platform{ @@ -42457,9 +32538,7 @@ /obj/effect/decal/medical_decals{ icon_state = "docdecal1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cFh" = ( /obj/effect/decal/medical_decals{ @@ -42470,9 +32549,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cFi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -42484,23 +32561,15 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/workshop) "cFj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/south_tunnel) "cFk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/CE_office) "cFl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/emergency_room) "cFm" = ( /obj/structure/barricade/wooden, @@ -42511,18 +32580,12 @@ /turf/open/floor/plating, /area/desert_dam/building/medical/emergency_room) "cFp" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/treatment_room) "cFq" = ( /obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/treatment_room) "cFr" = ( /obj/structure/bed/chair/office/dark{ @@ -42530,9 +32593,7 @@ layer = 3.25 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cFs" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -42541,16 +32602,11 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/bar_valley_dam) "cFt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/desert_dam/building/bar/bar) "cFu" = ( /obj/structure/bed/chair{ @@ -42560,9 +32616,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cFv" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -42573,9 +32627,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/interior/dam_interior/CE_office) "cFw" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -42588,10 +32640,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/CE_office) "cFx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -42601,10 +32650,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cFy" = ( /obj/structure/disposalpipe/segment{ @@ -42615,10 +32661,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cFA" = ( /obj/structure/disposalpipe/segment{ @@ -42626,10 +32669,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cFC" = ( /obj/structure/disposalpipe/segment{ @@ -42653,9 +32693,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "cFF" = ( /obj/structure/surface/table/woodentable, @@ -42687,9 +32725,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) "cFJ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -42737,37 +32773,26 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_two) "cFR" = ( /obj/structure/cargo_container/grant/right, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/warehouse/warehouse) "cFS" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) "cFT" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal2" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cFV" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/emergency_room) "cFY" = ( /obj/structure/disposalpipe/segment{ @@ -42775,42 +32800,30 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cFZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cGa" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_two) "cGb" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "cGc" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) "cGe" = ( /obj/effect/decal/medical_decals{ @@ -42823,10 +32836,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "cGf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -42835,10 +32845,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "cGg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -42847,23 +32854,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/treatment_room) "cGh" = ( /obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cGi" = ( /obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_cargo) "cGj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -42922,34 +32921,23 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "cGq" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "cGr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/central_tunnel) "cGs" = ( /obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cGt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -42958,30 +32946,21 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "cGu" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_two) "cGv" = ( /obj/structure/flora/bush/desert, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_cargo) "cGw" = ( /obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) "cGx" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -42991,59 +32970,42 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/workshop) "cGz" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "cGA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/CE_office) "cGB" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "cGC" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/east_wing_hallway) "cGD" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) "cGF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_cargo) "cGG" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) "cGH" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -43056,17 +33018,13 @@ dir = 1 }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cGJ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_civilian) "cGK" = ( /obj/structure/prop/dam/boulder/boulder1, @@ -43080,9 +33038,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cGN" = ( /obj/structure/machinery/door_control{ @@ -43094,37 +33050,25 @@ }, /area/desert_dam/building/warehouse/warehouse) "cGO" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_hydro) "cGP" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/armory) "cGQ" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_two) "cGR" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) "cGS" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_two) "cGT" = ( /obj/structure/platform{ @@ -43137,162 +33081,106 @@ /obj/effect/decal/medical_decals{ icon_state = "docdecal3" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cGV" = ( /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cGW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; name = "\improper Emergency Room" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/emergency_room) "cGX" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/emergency_room) "cGY" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "cGZ" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/emergency_room) "cHa" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal2" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "cHb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; name = "\improper Surgery" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "cHc" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) "cHd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/treatment_room) "cHe" = ( /obj/item/reagent_container/hypospray, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) "cHf" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/treatment_room) "cHg" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/treatment_room) "cHh" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/east_wing_hallway) "cHi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cHj" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "cHk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/east_wing_hallway) "cHl" = ( /obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cHn" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_two) "cHo" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) "cHp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) "cHr" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/armory) "cHs" = ( /obj/structure/cargo_container/hd/left, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) "cHt" = ( /obj/structure/cargo_container/hd/mid, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) "cHu" = ( /obj/structure/platform_decoration{ @@ -43301,9 +33189,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) "cHv" = ( /obj/structure/platform_decoration{ @@ -43312,38 +33198,26 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "cHx" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/building/medical/garage) "cHy" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal4" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cHz" = ( /obj/structure/surface/table/reinforced, /obj/item/device/defibrillator, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "cHA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/emergency_room) "cHB" = ( /obj/effect/decal/warning_stripes{ @@ -43388,27 +33262,17 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopright" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "cHI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/treatment_room) "cHJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/treatment_room) "cHK" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) "cHL" = ( /turf/closed/wall, @@ -43430,54 +33294,37 @@ /area/desert_dam/building/medical/virology_wing) "cHP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) "cHQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) "cHR" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Patient Room 1" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cHS" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Patient Room 2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cHT" = ( /obj/structure/cargo_container/hd/right, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) "cHU" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Patient Room 3" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cHV" = ( /obj/structure/flora/grass/tallgrass/desert/corner, @@ -43497,9 +33344,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "cIa" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/covered/north, /area/desert_dam/exterior/river/riverside_east) "cIc" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -43520,9 +33365,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) "cIh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_cargo) "cIi" = ( /obj/structure/desertdam/decals/road_edge{ @@ -43532,17 +33375,13 @@ /area/desert_dam/exterior/valley/valley_cargo) "cIk" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "cIl" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) "cIo" = ( /obj/structure/machinery/door_control{ @@ -43554,38 +33393,26 @@ }, /area/desert_dam/building/warehouse/warehouse) "cIp" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/loading) "cIq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cIr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cIt" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/loading) "cIu" = ( /obj/structure/surface/table, /obj/item/clothing/head/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/loading) "cIv" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -43595,17 +33422,13 @@ /area/desert_dam/exterior/valley/valley_cargo) "cIx" = ( /obj/structure/largecrate, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/loading) "cIy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/loading) "cIz" = ( /obj/structure/surface/table/reinforced, @@ -43635,35 +33458,24 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/garage) "cID" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) "cIE" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/emergency_room) "cIF" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Medical Office" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/treatment_room) "cIG" = ( /turf/closed/wall, @@ -43671,25 +33483,16 @@ "cIH" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cII" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cIJ" = ( /obj/structure/machinery/iv_drip, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cIK" = ( /turf/open/floor/plating, @@ -43702,77 +33505,44 @@ "cIM" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/virology_wing) "cIN" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "cIO" = ( /obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "cIP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "cIQ" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/virology_wing) "cIS" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/virology_wing) "cIT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) "cIU" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/virology_wing) "cIV" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cIW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cIX" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cIY" = ( /obj/structure/machinery/door_control{ @@ -43820,9 +33590,7 @@ /turf/open/floor/plating, /area/desert_dam/building/church) "cJg" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cJh" = ( /obj/structure/disposalpipe/segment, @@ -43841,9 +33609,7 @@ /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cJl" = ( /obj/structure/flora/grass/desert/lightgrass_12, @@ -43851,9 +33617,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "cJm" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "cJn" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -43868,16 +33632,10 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) "cJo" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/desert_dam/exterior/telecomm/lz2_containers) "cJp" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/desert_dam/exterior/telecomm/lz2_containers) "cJq" = ( /obj/structure/cargo_container/grant/left, @@ -43887,9 +33645,7 @@ /obj/structure/surface/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/suit/armor/riot, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/armory) "cJs" = ( /obj/structure/surface/rack, @@ -43898,9 +33654,7 @@ pixel_y = -2 }, /obj/item/storage/box/flashbangs, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/armory) "cJt" = ( /obj/structure/surface/rack, @@ -43909,16 +33663,12 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/armory) "cJv" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/armory) "cJw" = ( /obj/structure/cargo_container/grant/rightmid, @@ -43928,9 +33678,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) "cJz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -43951,40 +33699,25 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cJC" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/med_data/laptop{ pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cJD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/treatment_room) "cJE" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/treatment_room) "cJF" = ( /obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cJG" = ( /turf/closed/wall, @@ -44001,56 +33734,35 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) "cJJ" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) "cJK" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) "cJL" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/virology_wing) "cJM" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) "cJN" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "cJO" = ( /obj/structure/cargo_container/grant/right, /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) "cJP" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/exterior/telecomm/lz2_containers) "cJQ" = ( /obj/effect/decal/cleanable/dirt, @@ -44060,9 +33772,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_hydro) "cJS" = ( /obj/structure/cargo_container/hd/left, @@ -44072,9 +33782,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "cJU" = ( /obj/structure/cargo_container/hd/mid, @@ -44136,22 +33844,15 @@ /area/desert_dam/building/warehouse/loading) "cKh" = ( /obj/structure/cargo_container/trijent/right/alt, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/exterior/telecomm/lz2_containers) "cKi" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/desert_dam/exterior/telecomm/lz2_containers) "cKj" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/armory) "cKk" = ( /obj/structure/bed, @@ -44169,10 +33870,7 @@ /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) "cKn" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/desert_dam/exterior/telecomm/lz2_containers) "cKp" = ( /turf/closed/wall/hangar{ @@ -44207,45 +33905,29 @@ pixel_y = 10 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cKu" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cKv" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/treatment_room) "cKw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cKx" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_isolation) "cKy" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_isolation) "cKC" = ( /obj/structure/machinery/light{ @@ -44254,39 +33936,27 @@ /turf/open/floor/plating, /area/desert_dam/building/medical/east_wing_hallway) "cKD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) "cKE" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) "cKF" = ( /obj/structure/machinery/door/airlock/almayer/generic, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) "cKG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) "cKH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -44294,10 +33964,7 @@ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) "cKI" = ( /obj/structure/machinery/power/apc{ @@ -44305,26 +33972,19 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) "cKJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_cargo) "cKK" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cKL" = ( /obj/effect/decal/warning_stripes{ @@ -44342,9 +34002,7 @@ /area/desert_dam/building/warehouse/warehouse) "cKO" = ( /obj/structure/stairs, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cKP" = ( /obj/structure/desertdam/decals/road_edge{ @@ -44355,31 +34013,23 @@ /area/desert_dam/exterior/valley/valley_cargo) "cKQ" = ( /obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cKR" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cKS" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_cargo) "cKT" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_cargo) "cKU" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -44389,21 +34039,14 @@ /area/desert_dam/exterior/valley/valley_cargo) "cKV" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_cargo) "cKX" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/desert_dam/building/security/deathrow) "cLa" = ( /obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "cLc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44422,18 +34065,14 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) "cLh" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "cLi" = ( /obj/structure/platform{ @@ -44458,33 +34097,22 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cLm" = ( /obj/structure/surface/table, /turf/open/floor/plating, /area/desert_dam/building/medical/east_wing_hallway) "cLo" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/virology_wing) "cLp" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_wing) "cLq" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cLr" = ( /obj/structure/machinery/light{ @@ -44492,31 +34120,21 @@ }, /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cLs" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_wing) "cLt" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_wing) "cLu" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/virology_wing) "cLv" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_cargo) "cLG" = ( /turf/open/asphalt, @@ -44540,9 +34158,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_two) "cLO" = ( /obj/effect/decal/warning_stripes{ @@ -44555,9 +34171,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_cargo) "cLQ" = ( /obj/effect/decal/warning_stripes{ @@ -44567,26 +34181,17 @@ /area/desert_dam/building/warehouse/warehouse) "cLR" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cLS" = ( /obj/structure/surface/table/reinforced, /obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cLT" = ( /obj/structure/surface/table/reinforced, /obj/item/device/defibrillator, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cLU" = ( /obj/structure/surface/table/reinforced, @@ -44595,51 +34200,32 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cLV" = ( /obj/structure/surface/table/reinforced, /obj/item/bodybag/cryobag, /obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "cLX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/west_tunnel) "cLY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_isolation) "cMa" = ( /obj/structure/reagent_dispensers/virusfood{ pixel_x = -32 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) "cMb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cMc" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/medical/virology_wing) "cMd" = ( /obj/effect/decal/warning_stripes{ @@ -44670,9 +34256,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_hydro) "cMj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44681,9 +34265,7 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) "cMl" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_hydro) "cMm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44704,18 +34286,13 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) "cMo" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_hydro) "cMq" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/landing_pad_two) "cMw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -44742,17 +34319,13 @@ /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cMC" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_two) "cMD" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/landing_pad_two) "cME" = ( /obj/structure/disposalpipe/segment{ @@ -44765,10 +34338,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "cMI" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/north_valley_dam) "cMJ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -44780,67 +34350,48 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_two) "cMM" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_cargo) "cMN" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cMO" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "cMP" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/virology_isolation) "cMQ" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/virology_isolation) "cMR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/virology_isolation) "cMS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/telecomm/lz1_south) "cMT" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/virology_isolation) "cMU" = ( /obj/structure/surface/table, @@ -44848,20 +34399,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) "cMV" = ( /obj/structure/machinery/computer/operating, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) "cMW" = ( /obj/structure/surface/table, @@ -44872,19 +34417,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) "cMX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/virology_isolation) "cMY" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -44892,16 +34431,10 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_isolation) "cMZ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/virology_isolation) "cNa" = ( /obj/structure/window/framed/colony, @@ -44911,46 +34444,31 @@ /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_two) "cNc" = ( /obj/structure/closet/l3closet/virology, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "cNd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/virology_wing) "cNe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, +/turf/open/desert/rock/deep/transition/northwest, /area/desert_dam/exterior/telecomm/lz1_south) "cNf" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) "cNg" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "cNh" = ( /obj/structure/desertdam/decals/road_edge, @@ -44996,9 +34514,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "cNo" = ( /obj/structure/window/framed/colony/reinforced, @@ -45007,10 +34523,7 @@ "cNr" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, +/turf/open/floor/vault2/north, /area/desert_dam/building/hydroponics/hydroponics_storage) "cNs" = ( /obj/structure/prop/dam/gravestone, @@ -45024,10 +34537,7 @@ /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/desert_dam/building/church) "cNw" = ( /obj/structure/desertdam/decals/road_stop{ @@ -45070,9 +34580,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "cND" = ( /obj/structure/platform{ @@ -45081,69 +34589,43 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "cNE" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_isolation) "cNF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_isolation) "cNG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_isolation) "cNH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) "cNI" = ( /obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) "cNK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) "cNL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) "cNM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "cNN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -45151,10 +34633,7 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "cNP" = ( /obj/structure/flora/bush/desert/cactus{ @@ -45182,36 +34661,24 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/desert_dam/building/church) "cNU" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/desert_dam/building/church) "cNV" = ( /obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_hydro) "cNW" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) "cNX" = ( /obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_hydro) "cNY" = ( /obj/structure/bed/chair/wood/normal{ @@ -45220,29 +34687,20 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/desert_dam/building/church) "cNZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cOa" = ( /obj/structure/stairs{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cOb" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOc" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -45252,9 +34710,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cOe" = ( /obj/structure/machinery/power/apc{ @@ -45262,9 +34718,7 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cOf" = ( /obj/structure/pipes/vents/pump{ @@ -45281,31 +34735,22 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "cOk" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "cOl" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "cOm" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_isolation) "cOn" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/desert_dam/building/church) "cOo" = ( /obj/effect/decal/cleanable/dirt, @@ -45326,47 +34771,34 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "cOs" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cOt" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/desert_dam/building/church) "cOu" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/fancy/candle_box, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOv" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOw" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/candle, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOx" = ( /obj/structure/surface/table/woodentable, @@ -45374,9 +34806,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOy" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -45390,23 +34820,14 @@ "cOC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/desert_dam/building/church) "cOD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/desert_dam/building/church) "cOE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, +/turf/open/floor/carpet14_10/west, /area/desert_dam/building/church) "cOF" = ( /obj/effect/decal/cleanable/dirt, @@ -45414,9 +34835,7 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) "cOG" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) "cOH" = ( /turf/closed/wall/hangar{ @@ -45425,19 +34844,14 @@ /area/desert_dam/building/substation/southwest) "cOI" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/virology_isolation) "cOJ" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_isolation) "cOK" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -45445,57 +34859,38 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "cOL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "cOM" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_wing) "cOO" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_wing) "cOP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "cOQ" = ( /obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cOR" = ( /obj/structure/surface/table, /obj/item/tank/anesthetic, /obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cOS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, +/turf/open/floor/carpet10_8/west, /area/desert_dam/building/church) "cOT" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -45509,9 +34904,7 @@ "cOU" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOV" = ( /obj/vehicle/train/cargo/trolley, @@ -45524,87 +34917,59 @@ /area/desert_dam/building/warehouse/loading) "cOX" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOY" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cOZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Chapel" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cPd" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/desert_dam/building/church) "cPe" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/desert_dam/building/church) "cPf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/desert_dam/building/church) "cPg" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/desert_dam/building/church) "cPh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Backroom" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cPi" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "cPj" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/desert_dam/building/church) "cPk" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/desert_dam/building/church) "cPl" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/desert_dam/building/church) "cPm" = ( /obj/structure/bed/chair/wood/normal{ @@ -45612,10 +34977,7 @@ }, /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/desert_dam/building/church) "cPn" = ( /obj/structure/disposalpipe/segment{ @@ -45643,24 +35005,17 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) "cPq" = ( /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) "cPr" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached6" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached6, /area/desert_dam/exterior/telecomm/lz2_storage) "cPt" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/telecomm/lz1_xenoflora) "cPu" = ( /obj/vehicle/train/cargo/engine, @@ -45675,9 +35030,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "cPy" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -45693,31 +35046,21 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) "cPB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/carpet5_1/west, /area/desert_dam/building/bar/bar) "cPC" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/mining/workshop) "cPF" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "cPG" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cPH" = ( /obj/structure/machinery/power/apc{ @@ -45725,10 +35068,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/building/substation/southwest) "cPI" = ( /obj/structure/desertdam/decals/road_stop{ @@ -45743,16 +35083,10 @@ "cPJ" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/southwest) "cPK" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/building/substation/southwest) "cPL" = ( /turf/closed/wall, @@ -45766,9 +35100,7 @@ dir = 1; name = "\improper Virology Lab Cell" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_isolation) "cPO" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -45781,58 +35113,38 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cPQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cPR" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cPS" = ( /obj/structure/surface/table, /obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cPT" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cPU" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "cPV" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_cargo) "cPW" = ( /obj/structure/desertdam/decals/road_edge{ @@ -45850,23 +35162,14 @@ "cPX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/desert_dam/building/bar/bar) "cPY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, +/turf/open/floor/carpet13_5/west, /area/desert_dam/building/bar/bar) "cPZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, +/turf/open/floor/carpet9_4/west, /area/desert_dam/building/bar/bar) "cQa" = ( /obj/structure/bed/chair/wood/normal{ @@ -45890,7 +35193,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "cQd" = ( /obj/item/trash/cheesie, /obj/effect/landmark/objective_landmark/close, @@ -45921,16 +35224,10 @@ id = "dam_shutter_hangar"; name = "\improper Hangar Lock" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hanger) "cQi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cQk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -45943,57 +35240,36 @@ /obj/structure/closet/secure_closet/security, /obj/item/clothing/suit/armor/vest/security, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cQm" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cQn" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_two) "cQo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/building/substation/southwest) "cQq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/building/substation/southwest) "cQr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/southwest) "cQs" = ( /obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/southwest) "cQv" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/desert_dam/building/substation/southwest) "cQw" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cQx" = ( /turf/closed/wall/wood, @@ -46006,17 +35282,13 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cQA" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cQB" = ( /turf/open/floor/plating, @@ -46032,10 +35304,7 @@ /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) "cQE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cQF" = ( /obj/structure/desertdam/decals/road_edge, @@ -46043,10 +35312,7 @@ /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cQG" = ( /obj/structure/sink, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cQH" = ( /obj/structure/machinery/light{ @@ -46062,19 +35328,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cQJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cQK" = ( /obj/structure/flora/grass/desert/lightgrass_11, @@ -46085,17 +35345,14 @@ dir = 10 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "cQN" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cQO" = ( /obj/structure/machinery/computer/cameras{ @@ -46103,19 +35360,13 @@ network = list("chigusa_1") }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/interior/dam_interior/lobby) "cQP" = ( /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cQQ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cQR" = ( /obj/effect/decal/cleanable/dirt, @@ -46141,30 +35392,22 @@ /area/desert_dam/building/bar/bar) "cQV" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "cQW" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/mask/muzzle, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "cQX" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/suit/straight_jacket, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "cQY" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "cQZ" = ( /obj/structure/bed/chair/wood/normal{ @@ -46190,37 +35433,22 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cRg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/southwest) "cRi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/substation/southwest) "cRj" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/substation/southwest) "cRk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/southwest) "cRl" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/southwest) "cRm" = ( /turf/open/floor/plating, @@ -46231,27 +35459,19 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_isolation) "cRp" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cRq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cRr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46260,9 +35480,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Restroom" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/bar/bar_restroom) "cRs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46312,9 +35530,7 @@ /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) "cRB" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) "cRC" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -46323,9 +35539,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "cRD" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46337,9 +35551,7 @@ /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) "cRE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_two) "cRF" = ( /obj/structure/pipes/vents/pump{ @@ -46349,10 +35561,7 @@ /area/desert_dam/building/bar/bar) "cRG" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "cRH" = ( /obj/effect/decal/cleanable/generic, @@ -46369,17 +35578,13 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cRK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cRL" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_cargo) "cRM" = ( /obj/structure/desertdam/decals/road_edge, @@ -46392,15 +35597,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_isolation) "cRR" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_isolation) "cRS" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -46409,19 +35610,13 @@ /turf/open/floor/prison, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cRV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cRW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cRX" = ( /obj/structure/machinery/light, @@ -46465,9 +35660,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSe" = ( /obj/structure/surface/table/reinforced, @@ -46475,10 +35668,7 @@ name = "Security Cameras - Operations"; network = list("chigusa_1") }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSg" = ( /obj/structure/machinery/door_control{ @@ -46494,19 +35684,17 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSl" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) +"cSn" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/landing_pad_one) "cSo" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/eastleft{ @@ -46533,10 +35721,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSr" = ( /turf/open/floor/prison, @@ -46545,26 +35730,16 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSu" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/building/substation/southwest) "cSv" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/substation/southwest) "cSw" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/building/substation/southwest) "cSx" = ( /obj/structure/surface/rack, @@ -46572,10 +35747,7 @@ amount = 50 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/desert_dam/building/substation/southwest) "cSy" = ( /obj/structure/surface/rack, @@ -46590,34 +35762,26 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cSA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cSB" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cSC" = ( /turf/closed/wall, /area/desert_dam/exterior/valley/valley_civilian) "cSE" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSF" = ( /obj/structure/surface/table/reinforced, @@ -46635,25 +35799,18 @@ /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSG" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "cSK" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "cSL" = ( /obj/effect/decal/warning_stripes{ @@ -46684,30 +35841,24 @@ /area/desert_dam/exterior/valley/valley_cargo) "cSU" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cSX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cSY" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cSZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "cTa" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -46728,15 +35879,11 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "cTg" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cTh" = ( /obj/structure/flora/grass/desert/heavygrass_10, @@ -46752,44 +35899,27 @@ name = "\improper Restroom" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTk" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTl" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTm" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTn" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTo" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTp" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -46799,26 +35929,19 @@ /area/desert_dam/exterior/valley/valley_civilian) "cTq" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_civilian) "cTr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "cTs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "cTu" = ( /obj/structure/desertdam/decals/road_edge, @@ -46829,42 +35952,28 @@ /area/desert_dam/exterior/valley/valley_cargo) "cTv" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/building/mining/workshop) "cTw" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "cTA" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cTB" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "cTC" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_cargo) "cTD" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_cargo) "cTE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -46874,36 +35983,26 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "cTG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) "cTH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/bar_valley_dam) "cTI" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) "cTJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cTL" = ( /obj/structure/surface/table, @@ -46911,10 +36010,7 @@ dir = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTM" = ( /obj/structure/machinery/power/apc{ @@ -46922,78 +36018,51 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTN" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTP" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cTQ" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_civilian) "cTR" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cTS" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/building/mining/workshop) "cTU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "cTZ" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/building/mining/workshop) "cUa" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cUb" = ( /obj/structure/disposalpipe/segment{ @@ -47003,45 +36072,31 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "cUc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "cUd" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "cUf" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cUg" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cUh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) "cUi" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cUj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_hydro) "cUk" = ( /obj/structure/desertdam/decals/road_edge{ @@ -47066,17 +36121,11 @@ /area/desert_dam/exterior/valley/valley_cargo) "cUs" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cUv" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/building/mining/workshop) "cUy" = ( /obj/structure/desertdam/decals/road_edge{ @@ -47092,14 +36141,10 @@ /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) "cUA" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_cargo) "cUB" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_cargo) "cUD" = ( /obj/effect/decal/warning_stripes{ @@ -47117,50 +36162,34 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cUF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cUG" = ( /obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cUH" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cUI" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) "cUJ" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "cUK" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -47172,9 +36201,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "cUP" = ( /obj/structure/desertdam/decals/road_stop{ @@ -47218,98 +36245,64 @@ /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/west_tunnel) "cUY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/warehouse) "cUZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/warehouse) "cVa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/warehouse) "cVh" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/warehouse) "cVi" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/loading) "cVo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/loading) "cVq" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cVr" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cVs" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "cVu" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_civilian) "cVv" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cVz" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "cVA" = ( /obj/structure/desertdam/decals/road_edge{ @@ -47327,86 +36320,56 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/loading) "cVH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/warehouse) "cVI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/warehouse) "cVJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/warehouse) "cVK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/warehouse) "cVL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/building/mining/workshop) "cVM" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "cVN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cVO" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cVP" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/desert_dam/building/warehouse/loading) "cVS" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) "cVU" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/loading) "cVV" = ( /obj/structure/window/framed/colony/reinforced, @@ -47417,17 +36380,13 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_south) "cWa" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) "cWb" = ( /obj/structure/desertdam/decals/road_edge{ @@ -47454,9 +36413,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "cWj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/loading) "cWk" = ( /obj/structure/window/framed/colony/reinforced, @@ -47467,27 +36424,18 @@ dir = 2; name = "\improper Loading Bay" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/warehouse) "cWo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/warehouse) "cWp" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "cWq" = ( /obj/effect/decal/sand_overlay/sand1, @@ -47499,15 +36447,11 @@ dir = 8 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) "cWv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "cWw" = ( /obj/effect/decal/warning_stripes{ @@ -47517,118 +36461,81 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "cWx" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_cargo) "cWy" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_hydro) "cWA" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cWB" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) "cWC" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "cWD" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) "cWE" = ( /obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) "cWF" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) "cWH" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_civilian) "cWN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "cWP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_civilian) "cWV" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "cWW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cWX" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cXa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/warehouse/loading) "cXd" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/item/clothing/head/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cXh" = ( /obj/structure/desertdam/decals/road_edge{ @@ -47644,25 +36551,19 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cXl" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cXm" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "cXn" = ( /obj/structure/stairs{ @@ -47671,9 +36572,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cXo" = ( /obj/structure/stairs{ @@ -47682,15 +36581,11 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cXp" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_south) "cXt" = ( /obj/effect/decal/warning_stripes{ @@ -47725,18 +36620,13 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "cXD" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) "cXI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/building/warehouse/warehouse) "cXK" = ( /obj/effect/decal/cleanable/dirt, @@ -47746,44 +36636,32 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/desert_dam/building/warehouse/warehouse) "cXM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) "cXN" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) "cYe" = ( /obj/structure/platform{ dir = 8 }, /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "cYf" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "cYg" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) "cYh" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -47803,24 +36681,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_cargo) "cYp" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "cYs" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) "cYu" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -47852,41 +36723,28 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) "cYy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/building/warehouse/loading) "cYz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/loading) "cYA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/desert_dam/building/warehouse/loading) "cYB" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cYC" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "cYF" = ( /obj/structure/machinery/light{ @@ -47899,19 +36757,14 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/desert_dam/building/dorms/hallway_northwing) "cYG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "cYH" = ( /obj/effect/decal/warning_stripes{ @@ -47921,16 +36774,11 @@ icon_state = "E" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "cYI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/warehouse) "cYJ" = ( /obj/effect/decal/cleanable/dirt, @@ -47939,16 +36787,10 @@ /area/desert_dam/building/warehouse/warehouse) "cYK" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "cYL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/warehouse/warehouse) "cYN" = ( /obj/structure/disposalpipe/segment{ @@ -47974,35 +36816,27 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_hydro) "cYQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_hydro) "cYR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cYS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cYT" = ( /obj/structure/disposalpipe/segment{ @@ -48011,9 +36845,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cYV" = ( /obj/structure/disposalpipe/segment{ @@ -48027,31 +36859,23 @@ icon_state = "pipe-c" }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) "cYY" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_cargo) "cYZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_cargo) "cZb" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_cargo) "cZc" = ( /obj/structure/largecrate/random, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cZd" = ( /obj/structure/platform_decoration{ @@ -48062,15 +36886,11 @@ /area/desert_dam/exterior/river/riverside_south) "cZe" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "cZf" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/engine_west_wing) "cZl" = ( /obj/effect/decal/warning_stripes{ @@ -48080,9 +36900,7 @@ icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "cZn" = ( /obj/effect/decal/sand_overlay/sand1, @@ -48112,18 +36930,13 @@ id = "dam_shutter_hangar"; name = "\improper Hangar Lock" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "cZs" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/engine_east_wing) "cZt" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -48134,10 +36947,7 @@ /turf/open/floor/plating, /area/desert_dam/building/cafeteria/cafeteria) "cZv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/loading) "cZw" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -48146,25 +36956,16 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) "cZx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/warehouse/loading) "cZy" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "cZz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/loading) "cZB" = ( /turf/closed/wall/hangar{ @@ -48185,9 +36986,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/valley/valley_wilderness) "cZF" = ( /obj/structure/prop/dam/wide_boulder/boulder1, @@ -48198,16 +36997,11 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "cZK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "cZP" = ( /obj/effect/decal/cleanable/dirt, @@ -48225,16 +37019,12 @@ /area/desert_dam/exterior/valley/valley_civilian) "cZR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) "cZS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) "cZV" = ( /obj/effect/decal/cleanable/blood, @@ -48244,14 +37034,10 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/telecomm/lz2_storage) "dak" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/valley_civilian) "dam" = ( /obj/structure/disposalpipe/segment{ @@ -48278,7 +37064,7 @@ icon_state = "W" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "dax" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48290,10 +37076,7 @@ /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) "daB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/engine_west_wing) "daD" = ( /obj/structure/desertdam/decals/road_edge{ @@ -48306,38 +37089,23 @@ /area/desert_dam/building/hydroponics/hydroponics) "daG" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull/southwest, /area/desert_dam/building/hydroponics/hydroponics) "daH" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull/southwest, /area/desert_dam/building/hydroponics/hydroponics) "daI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/desert_dam/building/hydroponics/hydroponics) "daK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "daL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/desert_dam/building/hydroponics/hydroponics) "daM" = ( /obj/item/reagent_container/glass/bucket/mopbucket, @@ -48353,15 +37121,11 @@ /area/desert_dam/building/cafeteria/cafeteria) "daP" = ( /obj/structure/machinery/gibber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "daQ" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "daT" = ( /obj/structure/desertdam/decals/road_edge, @@ -48373,9 +37137,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"daU" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) "daX" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -48389,10 +37150,7 @@ /area/desert_dam/building/dorms/hallway_northwing) "daY" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/engine_west_wing) "dba" = ( /obj/effect/decal/cleanable/blood, @@ -48403,105 +37161,70 @@ id = "cargo_landing" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "dbd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dbe" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dbf" = ( /obj/structure/machinery/conveyor_switch{ id = "cargo_storage" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dbh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dbi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/warehouse) "dbj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/warehouse/warehouse) "dbk" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dbm" = ( /obj/structure/largecrate, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dbn" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/desert_dam/building/hydroponics/hydroponics) "dbo" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics) "dbp" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/desert_dam/building/hydroponics/hydroponics) "dbq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) "dbr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/desert_dam/building/hydroponics/hydroponics) "dbs" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/desert_dam/building/hydroponics/hydroponics) "dbt" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/desert_dam/building/hydroponics/hydroponics) "dbu" = ( /obj/structure/window/framed/colony/reinforced, @@ -48518,22 +37241,16 @@ /area/desert_dam/building/cafeteria/backroom) "dby" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbz" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbA" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/bigbiteburger, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbB" = ( /obj/structure/surface/table/reinforced, @@ -48541,9 +37258,7 @@ pixel_y = 30 }, /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbC" = ( /obj/structure/machinery/conveyor_switch{ @@ -48552,22 +37267,16 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dbD" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbE" = ( /obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbF" = ( /obj/structure/machinery/power/apc{ @@ -48577,16 +37286,12 @@ }, /obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbG" = ( /obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbH" = ( /obj/structure/surface/table/reinforced, @@ -48594,9 +37299,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbI" = ( /obj/structure/machinery/conveyor_switch{ @@ -48609,9 +37312,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dbK" = ( /turf/closed/wall, @@ -48644,28 +37345,20 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "dbP" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "dbQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "dbR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "dbT" = ( /obj/item/stool, @@ -48695,67 +37388,44 @@ /area/desert_dam/exterior/valley/valley_cargo) "dca" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/loading) "dcb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/warehouse/loading) "dcc" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/loading) "dcf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) "dcg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) "dch" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/desert_dam/building/hydroponics/hydroponics) "dci" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/desert_dam/building/hydroponics/hydroponics) "dcj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) "dck" = ( /turf/closed/wall, @@ -48765,17 +37435,11 @@ /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_storage) "dcn" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dco" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_civilian) "dcp" = ( /obj/structure/machinery/light{ @@ -48792,14 +37456,10 @@ /area/desert_dam/building/cafeteria/backroom) "dcs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/backroom) "dcw" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dcx" = ( /obj/structure/machinery/light{ @@ -48811,17 +37471,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "dcz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "dcD" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -48836,10 +37492,7 @@ start_charge = 0 }, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "dcM" = ( /obj/structure/disposalpipe/segment, @@ -48885,17 +37538,11 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, +/turf/open/floor/vault2/north, /area/desert_dam/building/hydroponics/hydroponics_storage) "dcW" = ( /obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, +/turf/open/floor/vault2/north, /area/desert_dam/building/hydroponics/hydroponics_storage) "dcY" = ( /turf/open/floor/prison, @@ -48913,14 +37560,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Loading" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/hydroponics/hydroponics_loading) "ddd" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/hydroponics/hydroponics_loading) "dde" = ( /obj/structure/window/framed/colony/reinforced, @@ -48931,17 +37574,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "ddi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "ddl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48950,9 +37589,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "ddm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -49002,25 +37639,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "ddr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "dds" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "ddu" = ( /obj/structure/machinery/power/apc{ @@ -49028,9 +37659,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "ddv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -49038,9 +37667,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "ddw" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) "ddx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -49108,16 +37735,11 @@ dir = 2; name = "\improper Hydroponics" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "ddP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/west_tunnel) "ddQ" = ( /obj/structure/machinery/disposal, @@ -49168,15 +37790,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/hydroponics/hydroponics_loading) "ddY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) "ddZ" = ( /obj/structure/machinery/power/apc{ @@ -49209,15 +37826,11 @@ /area/desert_dam/building/cafeteria/backroom) "dee" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deh" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -49225,21 +37838,15 @@ /area/desert_dam/building/cafeteria/loading) "dej" = ( /obj/structure/kitchenspike, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "dek" = ( /obj/structure/closet/crate/freezer/rations, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "del" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) "dem" = ( /obj/structure/disposalpipe/segment{ @@ -49270,18 +37877,12 @@ /area/desert_dam/building/warehouse/loading) "dep" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "deq" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "der" = ( /obj/effect/decal/warning_stripes{ @@ -49293,40 +37894,27 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "des" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/desert_dam/building/hydroponics/hydroponics) "det" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) "deu" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/desert_dam/building/hydroponics/hydroponics) "dev" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dex" = ( /obj/structure/machinery/seed_extractor, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics) "dey" = ( -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, +/turf/open/floor/vault2/north, /area/desert_dam/building/hydroponics/hydroponics_storage) "dez" = ( /obj/structure/desertdam/decals/road_stop{ @@ -49335,13 +37923,10 @@ }, /obj/effect/landmark/railgun_camera_pos, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "deA" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) "deB" = ( /obj/structure/machinery/light{ @@ -49349,54 +37934,37 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deC" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deD" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deE" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deF" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deG" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deH" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "deI" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/building/substation/central) "deJ" = ( /obj/effect/decal/cleanable/dirt, @@ -49416,36 +37984,24 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "deP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "deQ" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "deR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/loading) "deS" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "deU" = ( /obj/effect/decal/warning_stripes{ @@ -49455,20 +38011,18 @@ icon_state = "S" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "deV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "deW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "deX" = ( /obj/effect/decal/warning_stripes{ @@ -49478,17 +38032,12 @@ icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "deY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/warehouse) "deZ" = ( /obj/effect/decal/cleanable/dirt, @@ -49503,9 +38052,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) "dfb" = ( /obj/effect/decal/warning_stripes{ @@ -49528,43 +38075,27 @@ /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics_storage) "dfh" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dfi" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dfj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) "dfk" = ( /obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) "dfm" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cafeteria) "dfn" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dfo" = ( /obj/effect/decal/warning_stripes{ @@ -49577,34 +38108,24 @@ /area/desert_dam/building/warehouse/loading) "dfp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "dfq" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dfr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_wilderness) "dfs" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dft" = ( /obj/structure/machinery/light{ @@ -49624,67 +38145,43 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "dfx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "dfy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Loading Bay" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "dfz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) "dfA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/desert_dam/building/warehouse/warehouse) "dfB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/desert_dam/building/warehouse/loading) "dfC" = ( /obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "dfD" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "dfE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/desert_dam/building/warehouse/loading) "dfG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -49701,36 +38198,24 @@ "dfJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "dfK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "dfL" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "dfN" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "dfS" = ( /obj/effect/decal/cleanable/dirt, @@ -49758,33 +38243,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dgb" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dgc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dgd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dge" = ( /obj/effect/decal/warning_stripes{ @@ -49805,9 +38280,7 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) "dgh" = ( /obj/structure/desertdam/decals/road_edge{ @@ -49858,33 +38331,21 @@ "dgr" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "dgs" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) "dgt" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "dgu" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/desert_dam/building/warehouse/loading) "dgv" = ( /obj/effect/decal/warning_stripes{ @@ -49909,23 +38370,14 @@ /obj/structure/machinery/light, /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/desert_dam/building/warehouse/loading) "dgA" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/desert_dam/building/warehouse/loading) "dgC" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "dgD" = ( /obj/effect/decal/warning_stripes{ @@ -49934,10 +38386,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_south) "dgE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/desert_dam/building/warehouse/loading) "dgF" = ( /turf/open/asphalt, @@ -49945,7 +38394,7 @@ "dgG" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "dgH" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -49967,26 +38416,19 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "dgK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_hydro) "dgL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dgM" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -50035,46 +38477,31 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_civilian) "dgY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dhc" = ( /obj/structure/toilet, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dhd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dhe" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "dhf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "dhg" = ( /obj/effect/decal/warning_stripes{ @@ -50105,37 +38532,27 @@ "dhT" = ( /obj/effect/decal/sand_overlay/sand2, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "dhU" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) "dhX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dhZ" = ( /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) "dia" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/emergency_room) "dib" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -50155,10 +38572,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_crashsite) "dil" = ( /obj/structure/window/framed/hangar/reinforced, @@ -50182,42 +38596,31 @@ /area/desert_dam/building/substation/northwest) "diG" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/desert_dam/building/hydroponics/hydroponics) "diH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/desert_dam/building/hydroponics/hydroponics) "diI" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/desert_dam/building/hydroponics/hydroponics) "diJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/desert_dam/building/hydroponics/hydroponics) "diK" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/desert_dam/building/hydroponics/hydroponics) "diL" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -50241,15 +38644,11 @@ dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "diP" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "diR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -50260,6 +38659,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"dja" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "djg" = ( /obj/item/paper_bin, /obj/item/tool/stamp, @@ -50285,23 +38690,15 @@ /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) "djr" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/desert_dam/building/hydroponics/hydroponics) "djs" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/desert_dam/building/hydroponics/hydroponics) "djt" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/desert_dam/building/hydroponics/hydroponics) "dju" = ( /obj/structure/machinery/light, @@ -50309,9 +38706,7 @@ /area/desert_dam/building/hydroponics/hydroponics_loading) "djw" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "djx" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -50322,9 +38717,7 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "djz" = ( /obj/structure/platform, @@ -50363,10 +38756,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/northwest, /area/desert_dam/interior/dam_interior/disposals) "djZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -50380,9 +38770,7 @@ dir = 2; name = "\improper Loading" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/hydroponics/hydroponics_loading) "dkb" = ( /obj/structure/stairs{ @@ -50391,9 +38779,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) "dkc" = ( /obj/structure/stairs{ @@ -50402,17 +38788,13 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_hydro) "dkd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Restroom" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dke" = ( /obj/structure/disposalpipe/segment{ @@ -50443,17 +38825,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/cafeteria/loading) "dkk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dkl" = ( /obj/structure/desertdam/decals/road_edge{ @@ -50496,34 +38874,23 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Hydroponics" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dkH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Packaging" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dkI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/exterior/valley/valley_hydro) "dkJ" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/building/substation/southwest) "dkK" = ( /obj/structure/platform, @@ -50534,9 +38901,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Breakroom" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dkM" = ( /obj/structure/disposalpipe/segment, @@ -50544,9 +38909,7 @@ /area/desert_dam/building/cafeteria/loading) "dkN" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) "dkZ" = ( /obj/structure/prop/dam/large_boulder/boulder1, @@ -50571,19 +38934,14 @@ start_charge = 0 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/north, /area/desert_dam/interior/dam_interior/disposals) "dle" = ( /obj/structure/toilet, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlu" = ( /obj/structure/reagent_dispensers/fueltank, @@ -50593,34 +38951,26 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "dly" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_cargo) "dlz" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) "dlA" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dlB" = ( /obj/structure/window/framed/colony, @@ -50630,30 +38980,22 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlD" = ( /obj/structure/sink{ dir = 1; pixel_y = -10 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlE" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlF" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlJ" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -50671,9 +39013,7 @@ /obj/structure/machinery/light, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dlP" = ( /obj/structure/platform{ @@ -50684,62 +39024,46 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "dlQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlR" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlS" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dlT" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dme" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dmf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dmg" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dmz" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -50771,40 +39095,30 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Mess Hall" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dmO" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dmP" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dmQ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dmR" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dny" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -50812,9 +39126,7 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "dnB" = ( /obj/structure/desertdam/decals/road_stop{ @@ -50836,14 +39148,10 @@ /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) "dnP" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "dod" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "dof" = ( /obj/structure/reagent_dispensers/fueltank, @@ -50851,33 +39159,23 @@ /area/desert_dam/building/cafeteria/backroom) "doi" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) "doj" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_cargo) "dok" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "dol" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) "dom" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) "doE" = ( /turf/open/desert/dirt, @@ -50904,40 +39202,24 @@ /area/desert_dam/exterior/river/riverside_south) "doQ" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) "dpc" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_hydro) "dps" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "dpu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"dpv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) "dpw" = ( /obj/structure/disposalpipe/segment{ @@ -50960,9 +39242,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) "dpB" = ( /turf/closed/wall/hangar{ @@ -50989,16 +39269,12 @@ "dpF" = ( /obj/structure/machinery/vending/dinnerware, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dpG" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dpH" = ( /obj/effect/decal/warning_stripes{ @@ -51048,11 +39324,6 @@ "dqd" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"dqe" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/water_treatment_one/hallway) "dqf" = ( /turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) @@ -51080,23 +39351,16 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) "dqp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "dqs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dqt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dqu" = ( /obj/structure/machinery/power/apc{ @@ -51105,9 +39369,7 @@ start_charge = 0 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dqJ" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -51120,9 +39382,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) "dqR" = ( /obj/structure/flora/pottedplant, @@ -51155,16 +39415,11 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "drg" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "drh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -51177,9 +39432,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "drL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -51202,10 +39455,7 @@ "drQ" = ( /obj/structure/surface/table, /obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/building/water_treatment_one/lobby) "drT" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -51231,9 +39481,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "drZ" = ( /obj/structure/surface/table/reinforced, @@ -51250,26 +39498,18 @@ pixel_x = -6 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/water_treatment_one/lobby) "dsa" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/desert_dam/building/water_treatment_one/lobby) "dsb" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/water_treatment_one/lobby) "dsc" = ( /obj/effect/landmark/survivor_spawner, @@ -51277,9 +39517,7 @@ /area/desert_dam/building/water_treatment_one/lobby) "dsf" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_central_south) "dsg" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -51287,33 +39525,24 @@ /area/desert_dam/exterior/river/riverside_central_south) "dsh" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_central_south) "dsi" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_central_south) "dsk" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_central_south) "dsA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/desert_dam/building/water_treatment_one/lobby) "dsE" = ( /obj/structure/flora/grass/tallgrass/desert/corner, @@ -51330,10 +39559,7 @@ /area/desert_dam/building/water_treatment_one/garage) "dsO" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/building/water_treatment_one/lobby) "dsR" = ( /obj/structure/machinery/disposal, @@ -51341,36 +39567,26 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) "dsS" = ( -/turf/open/floor/filtrationside{ - dir = 9 - }, +/turf/open/floor/filtrationside/northwest, /area/desert_dam/exterior/valley/valley_hydro) "dsT" = ( -/turf/open/floor/filtrationside{ - dir = 1 - }, +/turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_hydro) "dsU" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "dsV" = ( -/turf/open/floor/filtrationside{ - dir = 5 - }, +/turf/open/floor/filtrationside/northeast, /area/desert_dam/exterior/valley/valley_hydro) "dsW" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_south) "dto" = ( /obj/structure/surface/table, @@ -51382,10 +39598,7 @@ "dtq" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dtr" = ( /turf/open/asphalt, @@ -51399,10 +39612,7 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/garage) "dtu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "dtw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51412,76 +39622,53 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dtx" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "dty" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dtz" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) "dtE" = ( -/turf/open/floor/filtrationside{ - dir = 8 - }, +/turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_hydro) "dtF" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_civilian) "dtG" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_civilian) "dtH" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_south) "dtI" = ( -/turf/open/floor/filtrationside{ - dir = 4 - }, +/turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_hydro) "dtT" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "dtX" = ( /obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "dtY" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) "duc" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -51498,18 +39685,12 @@ "dun" = ( /obj/structure/machinery/computer/med_data/laptop, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/desert_dam/building/administration/office) "duo" = ( /obj/structure/machinery/computer/guestpass, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/desert_dam/building/administration/office) "duq" = ( /obj/structure/desertdam/decals/road_edge, @@ -51525,10 +39706,7 @@ /area/desert_dam/building/water_treatment_one/hallway) "dut" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "duu" = ( /obj/structure/machinery/power/apc{ @@ -51557,9 +39735,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "duy" = ( /obj/structure/platform{ @@ -51573,38 +39749,26 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/valley/valley_civilian) "duA" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) "duB" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_civilian) "duC" = ( /turf/closed/wall, /area/desert_dam/building/dorms/hallway_northwing) "duD" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "duJ" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/bar_valley_dam) "duP" = ( /obj/structure/window/reinforced{ @@ -51613,16 +39777,11 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/disposals) "duR" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "duU" = ( /obj/structure/machinery/computer/med_data/laptop, @@ -51646,18 +39805,12 @@ "duY" = ( /obj/structure/machinery/computer/cameras/wooden_tv, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, +/turf/open/floor/carpet7_3/west, /area/desert_dam/building/administration/overseer_office) "duZ" = ( /obj/structure/machinery/computer/med_data/laptop, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/desert_dam/building/administration/overseer_office) "dvf" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -51665,40 +39818,28 @@ name = "\improper Kitchen" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dvg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dvj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_civilian) "dvk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "dvm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_civilian) "dvn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dvo" = ( /obj/effect/decal/cleanable/dirt, @@ -51711,9 +39852,7 @@ "dvx" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "dvy" = ( /obj/structure/platform_decoration{ @@ -51724,48 +39863,38 @@ /area/desert_dam/exterior/river/riverside_south) "dvz" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_south) "dvA" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "dvB" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_south) "dvD" = ( /obj/structure/bed, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) "dvE" = ( /obj/structure/closet/cabinet, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) "dvW" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) +/area/desert_dam/exterior/landing_pad_one) "dvZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -51780,10 +39909,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/smes_main) "dwe" = ( /obj/structure/surface/table, @@ -51791,19 +39917,13 @@ amount = 25 }, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/smes_main) "dwf" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/smes_main) "dwg" = ( /obj/structure/surface/table, @@ -51812,26 +39932,18 @@ }, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/smes_main) "dwh" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/control_room) "dwl" = ( /obj/structure/surface/table, /obj/structure/bedsheetbin, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dwm" = ( /obj/structure/surface/table, @@ -51839,9 +39951,7 @@ dir = 1 }, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "dws" = ( /turf/open/asphalt, @@ -51851,22 +39961,16 @@ /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) "dwC" = ( -/turf/open/floor/filtrationside{ - dir = 10 - }, +/turf/open/floor/filtrationside/southwest, /area/desert_dam/exterior/valley/valley_hydro) "dwD" = ( /turf/open/floor/filtrationside, /area/desert_dam/exterior/valley/valley_hydro) "dwE" = ( -/turf/open/floor/filtrationside{ - dir = 6 - }, +/turf/open/floor/filtrationside/southeast, /area/desert_dam/exterior/valley/valley_hydro) "dwF" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) "dwG" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -51894,19 +39998,13 @@ icon_state = "pipe-c" }, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/smes_backup) "dwX" = ( /obj/structure/surface/table/reinforced, /obj/structure/disposalpipe/segment, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/smes_backup) "dxb" = ( /obj/effect/decal/warning_stripes{ @@ -51936,77 +40034,51 @@ dir = 1; name = "\improper Dormitories Bedroom" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) "dxg" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/desert_dam/building/dorms/hallway_northwing) "dxh" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dxi" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dxj" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/desert_dam/building/dorms/hallway_northwing) "dxk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/desert_dam/building/dorms/hallway_northwing) "dxl" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dxm" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dxL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Hydroponics Breakroom" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "dxM" = ( /obj/structure/surface/table/reinforced, @@ -52014,16 +40086,12 @@ pixel_y = 30 }, /obj/item/reagent_container/food/snacks/cheesewedge, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dxN" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dxO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -52034,10 +40102,7 @@ "dxR" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dxS" = ( /obj/structure/disposalpipe/segment{ @@ -52045,24 +40110,16 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dxT" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/candy, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dxW" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/desert_dam/building/water_treatment_one/garage) "dxX" = ( /obj/structure/machinery/disposal, @@ -52080,9 +40137,7 @@ "dya" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/water_treatment_one/garage) "dyb" = ( /turf/closed/wall/hangar{ @@ -52115,30 +40170,19 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_civilian) "dym" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dyn" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dyo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/desert_dam/building/dorms/hallway_northwing) "dyp" = ( /obj/structure/bed/chair{ @@ -52152,20 +40196,14 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) "dyS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/cookie, /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dyT" = ( /obj/structure/disposalpipe/segment{ @@ -52175,55 +40213,36 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dyU" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dyW" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/central) "dyX" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northwest, /area/desert_dam/building/water_treatment_one/breakroom) "dyY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/desert_dam/building/water_treatment_one/breakroom) "dzb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/building/water_treatment_one/breakroom) "dzc" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/building/water_treatment_one/breakroom) "dzd" = ( /obj/effect/blocker/toxic_water, @@ -52231,21 +40250,13 @@ /area/desert_dam/exterior/river/filtration_a) "dze" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/desert_dam/building/water_treatment_one/breakroom) "dzf" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/equipment) "dzg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/equipment) "dzh" = ( /obj/structure/filtration/collector_pipes{ @@ -52261,16 +40272,12 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/equipment) "dzj" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/equipment) "dzk" = ( /obj/structure/desertdam/decals/road_edge{ @@ -52285,16 +40292,11 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) "dzm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/floodgate_control) "dzo" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_south) "dzr" = ( /turf/closed/wall/hangar{ @@ -52333,9 +40335,7 @@ /area/desert_dam/building/dorms/hallway_northwing) "dzy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) "dzz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52352,9 +40352,7 @@ name = "\improper Mess Hall" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cafeteria) "dzB" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52362,28 +40360,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dzC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dzD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dzE" = ( /obj/structure/flora/grass/desert/lightgrass_10, @@ -52392,10 +40383,7 @@ "dzO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_crashsite) "dzU" = ( /obj/structure/desertdam/decals/road_edge{ @@ -52413,37 +40401,25 @@ /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/cookie, /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dAf" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cheesewedge, /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dAg" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dAk" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dAl" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -52452,18 +40428,14 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) "dAn" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dAo" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river_mouth/southern) "dAq" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dAr" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -52487,20 +40459,13 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "dAD" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "dAF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/desert_dam/building/dorms/hallway_northwing) "dAG" = ( /obj/structure/bed/chair{ @@ -52508,30 +40473,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dAH" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/desert_dam/building/dorms/hallway_northwing) "dAI" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "dAJ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "dAK" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -52541,18 +40497,12 @@ "dAL" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dBb" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dBc" = ( /obj/structure/surface/table, @@ -52562,10 +40512,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dBd" = ( /obj/structure/surface/table, @@ -52573,28 +40520,19 @@ /obj/item/reagent_container/food/snacks/bun, /obj/item/reagent_container/food/snacks/cheesewedge, /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dBe" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dBf" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dBh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -52604,9 +40542,7 @@ /area/desert_dam/exterior/valley/valley_medical) "dBi" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dBj" = ( /obj/structure/machinery/power/apc{ @@ -52614,10 +40550,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/desert_dam/building/water_treatment_one/breakroom) "dBo" = ( /obj/structure/window/framed/colony, @@ -52632,48 +40565,30 @@ /area/desert_dam/building/dorms/hallway_westwing) "dBs" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) "dBt" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) "dBu" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) "dBv" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) "dBw" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) "dBx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) "dBy" = ( /turf/closed/wall, @@ -52685,9 +40600,7 @@ dir = 1; name = "\improper Restroom" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dBC" = ( /obj/item/weapon/baseballbat/metal, @@ -52698,34 +40611,25 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/dorms/pool) "dBD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dBF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "dBJ" = ( /obj/structure/machinery/computer/pod/old{ name = "Personal Computer" }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) "dBK" = ( /obj/structure/disposalpipe/segment, @@ -52738,22 +40642,15 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dBN" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "dBO" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "dBP" = ( /obj/structure/machinery/colony_floodlight, @@ -52765,58 +40662,41 @@ /area/desert_dam/exterior/valley/valley_medical) "dBR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/disposals) "dBT" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dBU" = ( /obj/structure/surface/table, /obj/item/clothing/head/soft/ferret, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dBV" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dBW" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner, /area/desert_dam/building/water_treatment_one/breakroom) "dBY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/disposals) "dCb" = ( /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) "dCc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/building/dorms/hallway_westwing) "dCd" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dCe" = ( /obj/effect/decal/cleanable/dirt, @@ -52824,18 +40704,13 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dCf" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dCg" = ( /obj/structure/toilet{ @@ -52844,27 +40719,19 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dCj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "dCo" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "dCt" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "dCw" = ( /obj/structure/surface/table/almayer, @@ -52878,9 +40745,7 @@ name = "\improper Disposals" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/disposals) "dCz" = ( /obj/structure/pipes/vents/pump{ @@ -52896,10 +40761,7 @@ "dCD" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dCE" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -52907,56 +40769,39 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/west_wing_hallway) "dCF" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dCG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/west, /area/desert_dam/building/water_treatment_one/breakroom) "dCH" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/building/water_treatment_one/breakroom) "dCI" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/dorms/pool) "dCJ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/building/water_treatment_one/breakroom) "dCK" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/desert_dam/building/water_treatment_one/breakroom) "dCL" = ( /turf/closed/wall/hangar{ @@ -52964,203 +40809,132 @@ }, /area/desert_dam/building/water_treatment_one/equipment) "dCM" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/desert_dam/exterior/valley/valley_hydro) "dCN" = ( -/turf/open/floor/coagulation{ - icon_state = "5,8" - }, +/turf/open/floor/coagulation/icon5_8, /area/desert_dam/exterior/valley/valley_hydro) "dCO" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, +/turf/open/floor/coagulation/icon4_8, /area/desert_dam/exterior/valley/valley_hydro) "dCP" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8" - }, +/turf/open/floor/coagulation/icon6_8, /area/desert_dam/exterior/valley/valley_hydro) "dCQ" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8" - }, +/turf/open/floor/coagulation/icon7_8, /area/desert_dam/exterior/valley/valley_hydro) "dCR" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/exterior/valley/valley_hydro) "dCS" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8-2" - }, +/turf/open/floor/coagulation/icon6_8_2, /area/desert_dam/exterior/valley/valley_hydro) "dCT" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, +/turf/open/floor/coagulation/icon7_8_2, /area/desert_dam/exterior/valley/valley_hydro) "dCU" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "dCV" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "dCW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/desert_dam/building/dorms/hallway_westwing) "dCX" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "dCY" = ( /obj/structure/surface/table, /obj/structure/bedsheetbin, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "dDa" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "dDb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dDk" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/north, /area/desert_dam/building/medical/surgery_room_one) "dDs" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/exterior/valley/valley_hydro) "dDt" = ( -/turf/open/floor/coagulation{ - icon_state = "1,7" - }, +/turf/open/floor/coagulation/icon1_7, /area/desert_dam/exterior/valley/valley_hydro) "dDv" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "dDw" = ( /obj/structure/surface/table, /obj/item/clothing/head/welding, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "dDx" = ( /obj/item/clothing/head/welding, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "dDz" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7" - }, +/turf/open/floor/coagulation/icon7_7, /area/desert_dam/exterior/valley/valley_hydro) "dDA" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7" - }, +/turf/open/floor/coagulation/icon8_7, /area/desert_dam/exterior/valley/valley_hydro) "dDB" = ( /obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) "dDD" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "dDG" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7-2" - }, +/turf/open/floor/coagulation/icon7_7_2, /area/desert_dam/exterior/valley/valley_hydro) "dDH" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7-2" - }, +/turf/open/floor/coagulation/icon8_7_2, /area/desert_dam/exterior/valley/valley_hydro) "dDI" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_south) "dDJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/desert_dam/building/dorms/hallway_westwing) "dDK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dDL" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "dDM" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Showers" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "dDQ" = ( /obj/item/seeds/soyaseed, @@ -53168,66 +40942,48 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/desert_dam/building/hydroponics/hydroponics) "dDZ" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dEb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dEe" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_hydro) "dEj" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_east) "dEk" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "dEl" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "dEm" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "dEn" = ( /obj/structure/platform{ @@ -53248,15 +41004,11 @@ /area/desert_dam/exterior/river/riverside_south) "dEr" = ( /obj/structure/closet/cabinet, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dEt" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dEu" = ( /obj/structure/machinery/power/apc{ @@ -53264,40 +41016,28 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/desert_dam/building/dorms/hallway_westwing) "dEv" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, /obj/item/reagent_container/food/snacks/donut, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dEx" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/desert_dam/building/dorms/hallway_westwing) "dEP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dEV" = ( /obj/structure/filtration/collector_pipes, -/turf/open/floor/filtrationside{ - dir = 8 - }, +/turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_hydro) "dEW" = ( /obj/structure/platform{ @@ -53311,24 +41051,18 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "dEY" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "dEZ" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river_mouth/southern) "dFc" = ( /obj/structure/platform_decoration{ @@ -53342,20 +41076,14 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) "dFe" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/filtrationside{ - dir = 4 - }, +/turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_hydro) "dFf" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dFg" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -53364,10 +41092,7 @@ "dFh" = ( /obj/item/frame/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dFi" = ( /obj/structure/catwalk, @@ -53379,19 +41104,14 @@ pixel_x = -30; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dFk" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dFn" = ( /obj/structure/desertdam/decals/road_edge{ @@ -53412,35 +41132,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/desert_dam/building/hydroponics/hydroponics) "dFD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" - }, +/turf/open/floor/prison/darkbrowncorners3, /area/desert_dam/interior/dam_interior/disposals) "dFL" = ( /obj/structure/sink{ dir = 1; pixel_y = -10 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dFM" = ( -/turf/open/floor/coagulation{ - icon_state = "0,4" - }, +/turf/open/floor/coagulation/icon0_4, /area/desert_dam/exterior/valley/valley_hydro) "dFN" = ( -/turf/open/floor/coagulation{ - icon_state = "8,4" - }, +/turf/open/floor/coagulation/icon8_4, /area/desert_dam/exterior/valley/valley_hydro) "dFP" = ( /obj/structure/platform, @@ -53470,45 +41180,33 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "dFU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Dormitories Bedroom" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dFV" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/desert_dam/building/dorms/restroom) "dFW" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/desert_dam/building/dorms/restroom) "dFX" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/desert_dam/building/dorms/restroom) "dFZ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dGa" = ( /obj/structure/surface/table, @@ -53517,33 +41215,23 @@ /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/donkpocket, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dGr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/exterior/valley/valley_hydro) "dGs" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_civilian) "dGt" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_1" }, -/turf/open/floor/filtrationside{ - dir = 8 - }, +/turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_hydro) "dGu" = ( /obj/structure/platform{ @@ -53570,27 +41258,20 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "dGy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "dGz" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) "dGA" = ( /obj/structure/platform{ @@ -53605,43 +41286,27 @@ }, /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "dGC" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) "dGD" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/donkpocket, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dGE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/desert_dam/building/dorms/hallway_westwing) "dGF" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/building/dorms/hallway_westwing) "dGG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/desert_dam/building/dorms/restroom) "dGI" = ( /obj/structure/disposalpipe/segment, @@ -53654,18 +41319,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "dGQ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_civilian) "dGU" = ( /obj/docking_port/stationary/marine_dropship/lz1, @@ -53675,22 +41335,16 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/exterior/valley/valley_hydro) "dGY" = ( -/turf/open/floor/coagulation{ - icon_state = "8,6" - }, +/turf/open/floor/coagulation/icon8_6, /area/desert_dam/exterior/valley/valley_hydro) "dHa" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_cargo) "dHb" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -53709,9 +41363,7 @@ dir = 8 }, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river_mouth/southern) "dHe" = ( /obj/structure/platform{ @@ -53723,9 +41375,7 @@ "dHf" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "dHg" = ( /obj/structure/platform, @@ -53740,19 +41390,13 @@ /area/desert_dam/building/dorms/hallway_westwing) "dHi" = ( /obj/item/frame/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dHj" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/candy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dHk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -53765,33 +41409,22 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dHm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "dHo" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dHp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dHr" = ( /obj/structure/surface/table, @@ -53800,56 +41433,39 @@ }, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "dHs" = ( /obj/structure/surface/table, /obj/item/clothing/head/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "dHt" = ( -/turf/open/floor/coagulation{ - icon_state = "1,1" - }, +/turf/open/floor/coagulation/icon1_1, /area/desert_dam/exterior/valley/valley_hydro) "dHv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_civilian) "dHw" = ( -/turf/open/floor/coagulation{ - icon_state = "7,1" - }, +/turf/open/floor/coagulation/icon7_1, /area/desert_dam/exterior/valley/valley_hydro) "dHx" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_hydro) "dHy" = ( /obj/effect/blocker/toxic_water, /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river_mouth/southern) "dHA" = ( /obj/structure/platform{ @@ -53864,32 +41480,22 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_south) "dHD" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_westwing) "dHE" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_westwing) "dHF" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/desert_dam/building/dorms/restroom) "dHG" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dHI" = ( /obj/structure/surface/table, @@ -53898,10 +41504,7 @@ /obj/item/reagent_container/food/snacks/candy, /obj/item/reagent_container/food/snacks/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dHK" = ( /obj/effect/landmark/crap_item, @@ -53924,74 +41527,52 @@ }, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dHS" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dHT" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/desert_dam/exterior/valley/valley_hydro) "dHX" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_hydro) "dHY" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/exterior/valley/valley_hydro) "dIa" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/desert_dam/exterior/valley/valley_hydro) "dId" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_hydro) "dIe" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/desert_dam/exterior/valley/valley_hydro) "dIf" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dIh" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_central_south) "dIi" = ( /obj/structure/machinery/colony_floodlight, @@ -54001,10 +41582,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_civilian) "dIk" = ( /turf/closed/wall, @@ -54018,25 +41596,18 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dIn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dIo" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Showers" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/desert_dam/building/dorms/pool) "dIp" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -54045,9 +41616,7 @@ dir = 1; name = "\improper Restroom" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dIq" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -54055,15 +41624,10 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dIr" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dIs" = ( /obj/structure/surface/table, @@ -54073,30 +41637,22 @@ /area/desert_dam/building/hydroponics/hydroponics_storage) "dIu" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "dIw" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "dIz" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) "dIA" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_hydro) "dIC" = ( /obj/structure/stairs{ @@ -54105,32 +41661,24 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_hydro) "dID" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) "dIG" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river_mouth/southern) "dIH" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river_mouth/southern) "dII" = ( /obj/structure/platform{ @@ -54140,51 +41688,33 @@ /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river_mouth/southern) "dIJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/desert_dam/building/dorms/pool) "dIK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/desert_dam/building/dorms/pool) "dIL" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) "dIM" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) "dIN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/desert_dam/building/dorms/pool) "dIO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) "dIP" = ( /obj/structure/closet/athletic_mixed, @@ -54195,10 +41725,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) "dIQ" = ( /obj/item/clothing/under/shorts/red, @@ -54206,10 +41733,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) "dIR" = ( /obj/structure/machinery/power/apc{ @@ -54220,10 +41744,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/desert_dam/building/dorms/pool) "dIS" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -54231,123 +41752,85 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dIT" = ( /obj/structure/closet/lasertag/red, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) "dJd" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) "dJe" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river_mouth/southern) "dJf" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river_mouth/southern) "dJg" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river_mouth/southern) "dJh" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dJi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dJj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dJm" = ( /obj/item/tool/mop, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/dorms/pool) "dJA" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river_mouth/southern) "dJB" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) "dJC" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river_mouth/southern) "dJD" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river_mouth/southern) "dJE" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river_mouth/southern) "dJG" = ( -/turf/open/floor/prison{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "dJJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/break_room) "dJK" = ( /obj/structure/sink{ @@ -54355,40 +41838,29 @@ pixel_x = 11 }, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/administration/hallway) "dJL" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "dJN" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "dJP" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "dJQ" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/desert_dam/building/administration/lobby) "dJR" = ( /obj/structure/lz_sign/dam_sign/damaged, @@ -54399,9 +41871,7 @@ dir = 1 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river_mouth/southern) "dJT" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -54411,34 +41881,23 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dJV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dJW" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dJX" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/desert_dam/building/dorms/pool) "dJY" = ( /obj/structure/pipes/vents/pump{ @@ -54447,17 +41906,13 @@ /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/lobby) "dJZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "dKa" = ( /obj/structure/disposalpipe/segment, @@ -54471,24 +41926,17 @@ /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/hallway) "dKc" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, +/turf/open/floor/carpet11_12/west, /area/desert_dam/building/administration/overseer_office) "dKd" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet/edge{ - dir = 6 - }, +/turf/open/floor/carpet/edge/southeast, /area/desert_dam/building/administration/meetingrooom) "dKe" = ( /obj/effect/decal/cleanable/blood{ @@ -54519,58 +41967,37 @@ "dKk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKm" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/desert_dam/building/dorms/pool) "dKn" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/dorms/pool) "dKo" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/desert_dam/building/dorms/pool) "dKp" = ( /obj/item/toy/beach_ball, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "dKs" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "dKv" = ( /obj/structure/window/reinforced{ @@ -54578,57 +42005,40 @@ health = 80 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/disposals) "dKx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) "dKz" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/west_tunnel) "dKA" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "dKB" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river_mouth/southern) "dKE" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/bar_valley_dam) "dKF" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/dorms/pool) "dKG" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "dKI" = ( /obj/structure/bed/chair{ @@ -54637,55 +42047,38 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKJ" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river_mouth/southern) "dKK" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river_mouth/southern) "dKL" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river_mouth/southern) "dKM" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river_mouth/southern) "dKN" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river_mouth/southern) "dKO" = ( /obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river_mouth/southern) "dKP" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river_mouth/southern) "dKQ" = ( /obj/effect/blocker/toxic_water, @@ -54697,9 +42090,7 @@ /area/desert_dam/exterior/river_mouth/southern) "dKS" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) "dKT" = ( /obj/structure/surface/table, @@ -54708,10 +42099,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKU" = ( /obj/structure/bed/chair{ @@ -54721,39 +42109,28 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dKY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "dKZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -54764,9 +42141,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) "dLa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -54788,10 +42163,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/disposals) "dLe" = ( /obj/structure/surface/table, @@ -54800,31 +42172,22 @@ /obj/item/storage/toolbox/emergency, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/disposals) "dLf" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "dLg" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "dLh" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "dLi" = ( /obj/structure/platform{ @@ -54835,9 +42198,7 @@ /area/desert_dam/exterior/river/riverside_east) "dLj" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "dLk" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -54848,27 +42209,21 @@ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "dLn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "dLp" = ( /obj/structure/platform{ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "dLq" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -54880,9 +42235,7 @@ /area/desert_dam/exterior/river/riverside_central_south) "dLt" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river/riverside_east) "dLu" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -54890,21 +42243,15 @@ /area/desert_dam/exterior/river/riverside_east) "dLv" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "dLz" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_east) "dLA" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_east) "dLC" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -54918,9 +42265,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "dLF" = ( /obj/structure/platform{ @@ -54947,9 +42292,7 @@ "dLL" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_central_south) "dLM" = ( /obj/structure/platform, @@ -54973,9 +42316,7 @@ /area/desert_dam/exterior/river/riverside_east) "dLQ" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "dLR" = ( /obj/structure/platform{ @@ -55020,16 +42361,12 @@ "dLY" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) "dLZ" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) "dMf" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -55043,10 +42380,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/break_room) "dMo" = ( /obj/structure/bed/chair{ @@ -55056,10 +42390,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dMq" = ( /obj/structure/platform, @@ -55068,28 +42399,20 @@ /area/desert_dam/exterior/river/riverside_east) "dMw" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_east) "dMx" = ( /obj/structure/surface/table, /obj/item/clothing/ears/earmuffs, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dMC" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) "dMN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -55113,10 +42436,7 @@ start_charge = 150 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "dNa" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -55138,10 +42458,7 @@ /area/desert_dam/interior/dam_interior/west_tunnel) "dNh" = ( /obj/item/seeds/riceseed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dNi" = ( /obj/structure/machinery/computer/cameras{ @@ -55149,23 +42466,16 @@ network = list("chigusa_1") }, /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/desert_dam/building/water_treatment_one/lobby) "dNk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner, /area/desert_dam/interior/dam_interior/break_room) "dNl" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) "dNm" = ( /obj/structure/window/reinforced{ @@ -55174,20 +42484,13 @@ }, /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/southwest, /area/desert_dam/interior/dam_interior/disposals) "dNo" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_hydro) "dNp" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) "dNr" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -55204,51 +42507,37 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "dNu" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "dNv" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_hydro) "dNw" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_hydro) "dNx" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "dNB" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick/red, /obj/effect/landmark/good_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/desert_dam/interior/dam_interior/disposals) "dNC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "dNF" = ( /obj/structure/surface/table, @@ -55256,25 +42545,18 @@ /obj/effect/spawner/random/tool, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/desert_dam/interior/dam_interior/disposals) "dNG" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) "dNI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "dNR" = ( /obj/effect/decal/warning_stripes{ @@ -55297,17 +42579,12 @@ "dNV" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "dNW" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "dNX" = ( /obj/effect/decal/cleanable/blood, @@ -55315,17 +42592,11 @@ /area/desert_dam/building/water_treatment_one/control_room) "dNY" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dOa" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dOc" = ( /obj/structure/disposalpipe/segment, @@ -55365,10 +42636,7 @@ /area/desert_dam/building/medical/break_room) "dOj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/west_wing_hallway) "dOk" = ( /obj/item/shard, @@ -55380,35 +42648,23 @@ /area/desert_dam/building/water_treatment_one/equipment) "dOl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/west_wing_hallway) "dOm" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/west_wing_hallway) "dOn" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "dOo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "dOp" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -55428,9 +42684,7 @@ /area/desert_dam/building/medical/break_room) "dOt" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/medical/chemistry) "dOu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55440,10 +42694,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/west_wing_hallway) "dOv" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55453,10 +42704,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/west_wing_hallway) "dOw" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -55466,27 +42714,18 @@ /area/desert_dam/exterior/valley/valley_civilian) "dOx" = ( /obj/item/alien_embryo, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "dOy" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "dOA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/medical/break_room) "dOC" = ( /obj/structure/bed/chair{ @@ -55509,26 +42748,17 @@ /area/desert_dam/building/medical/break_room) "dOG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "dOH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "dOI" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "dOJ" = ( /obj/structure/disposalpipe/segment{ @@ -55550,10 +42780,7 @@ "dOL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/medical/break_room) "dOM" = ( /obj/structure/surface/table/almayer, @@ -55576,20 +42803,14 @@ /area/desert_dam/building/medical/break_room) "dOS" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/chemistry) "dOT" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/morgue) "dOV" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -55599,10 +42820,7 @@ /area/desert_dam/building/medical/break_room) "dOW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/medical/break_room) "dOX" = ( /obj/effect/decal/cleanable/dirt, @@ -55633,22 +42851,15 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple, /area/desert_dam/building/medical/chemistry) "dPb" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "dPd" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner, /area/desert_dam/building/medical/chemistry) "dPe" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, @@ -55665,10 +42876,7 @@ "dPj" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/southwest, /area/desert_dam/building/medical/chemistry) "dPk" = ( /obj/structure/disposalpipe/segment{ @@ -55676,44 +42884,29 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "dPl" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "dPm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/north_wing_hallway) "dPo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/north_wing_hallway) "dPr" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "dPs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -55724,10 +42917,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/west_wing_hallway) "dPt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55737,10 +42927,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "dPu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55751,10 +42938,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "dPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55764,10 +42948,7 @@ dir = 4 }, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "dPz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55779,17 +42960,11 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/north_wing_hallway) "dPG" = ( /obj/item/trash/sosjerky, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "dPH" = ( /obj/structure/disposalpipe/segment{ @@ -55797,23 +42972,16 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "dPI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "dPJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "dPK" = ( /obj/structure/pipes/vents/pump{ @@ -55821,17 +42989,13 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "dPL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/trash/raisins, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "dPM" = ( /obj/structure/disposalpipe/segment{ @@ -55839,24 +43003,15 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/north_wing_hallway) "dPN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/north_wing_hallway) "dPO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/north_wing_hallway) "dPR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -55867,43 +43022,30 @@ /area/desert_dam/exterior/valley/valley_medical) "dPS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) "dPT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "dPU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/lobby) "dPW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/west_wing_hallway) "dPX" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/north_wing_hallway) "dPY" = ( /obj/effect/decal/cleanable/dirt, @@ -55922,82 +43064,53 @@ name = "\improper Medical Lobby" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "dQb" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/lobby) "dQc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/lobby) "dQd" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/lobby) "dQe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/lobby) "dQf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/west_wing_hallway) "dQg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/west_wing_hallway) "dQh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/healthanalyzer, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/lobby) "dQj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "dQk" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/west_wing_hallway) "dQl" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "dQm" = ( /obj/structure/disposalpipe/segment{ @@ -56005,10 +43118,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "dQn" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -56017,26 +43127,17 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "dQp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "dQq" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "dQr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -56050,28 +43151,19 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "dQs" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "dQt" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/primary_storage) "dQu" = ( /obj/structure/disposalpipe/segment{ @@ -56080,10 +43172,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "dQv" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -56096,18 +43185,12 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "dQw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "dQx" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -56116,10 +43199,7 @@ /obj/structure/bed/roller, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/east_wing_hallway) "dQy" = ( /obj/effect/decal/cleanable/blood{ @@ -56127,17 +43207,11 @@ icon_state = "gib6" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "dQz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/lobby) "dQA" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -56146,10 +43220,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "dQB" = ( /obj/effect/decal/cleanable/dirt, @@ -56158,74 +43229,45 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "dQC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/lobby) "dQD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/lobby) "dQE" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/lobby) "dQF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/lobby) "dQG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/west_wing_hallway) "dQH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/west_wing_hallway) "dQI" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_one) "dQJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/lobby) "dQK" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/lobby) "dQL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ @@ -56233,33 +43275,22 @@ name = "\improper Medical Lobby" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/lobby) "dQM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "dQO" = ( /obj/structure/machinery/optable, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_one) "dQP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "dQQ" = ( /obj/structure/disposalpipe/segment{ @@ -56269,134 +43300,86 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgery_room_one) "dQR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Emergency Room" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "dQX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "dQY" = ( /obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/desert_dam/building/medical/emergency_room) "dRc" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) "dRd" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "dRe" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/emergency_room) "dRf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) "dRg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/emergency_room) "dRh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/emergency_room) "dRi" = ( /obj/item/clothing/head/surgery/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/treatment_room) "dRj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/east_wing_hallway) "dRk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/east_wing_hallway) "dRl" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) "dRm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) "dRn" = ( /obj/effect/decal/medical_decals{ icon_state = "cryocell1decal" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/emergency_room) "dRo" = ( /obj/effect/decal/medical_decals{ @@ -56404,123 +43387,78 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/emergency_room) "dRp" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) "dRq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/treatment_room) "dRr" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/item/device/healthanalyzer, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/treatment_room) "dRs" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "dRt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "dRu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "dRv" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "dRy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "dRz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "dRA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "dRC" = ( /obj/item/device/healthanalyzer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "dRD" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/east_wing_hallway) "dRE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) "dRF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/emergency_room) "dRG" = ( /obj/structure/pipes/vents/pump{ @@ -56528,10 +43466,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "dRH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56539,20 +43474,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/emergency_room) "dRI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/emergency_room) "dRJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56562,10 +43491,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/treatment_room) "dRL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56575,10 +43501,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/treatment_room) "dRM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56588,10 +43511,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "dRN" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -56599,10 +43519,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "dRO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56612,10 +43529,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/treatment_room) "dRP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56625,9 +43539,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) "dRQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ @@ -56641,9 +43553,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) "dRR" = ( /obj/effect/decal/medical_decals{ @@ -56656,9 +43566,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dRS" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -56666,9 +43574,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56678,9 +43584,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dRV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56691,9 +43595,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dRX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56705,9 +43607,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dRY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56718,10 +43618,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "dRZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -56732,10 +43629,7 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/east_wing_hallway) "dSa" = ( /obj/structure/disposalpipe/segment{ @@ -56745,9 +43639,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dSb" = ( /obj/structure/pipes/vents/pump{ @@ -56757,18 +43649,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dSc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dSd" = ( /obj/structure/disposalpipe/segment{ @@ -56776,86 +43664,55 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dSe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/emergency_room) "dSf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "dSg" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/emergency_room) "dSh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/emergency_room) "dSi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/emergency_room) "dSj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "dSk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/emergency_room) "dSl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/treatment_room) "dSm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/desert_dam/building/medical/treatment_room) "dSn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) "dSo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/east_wing_hallway) "dSq" = ( /obj/effect/decal/cleanable/blood{ @@ -56864,135 +43721,91 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dSr" = ( /obj/item/frame/table, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dSs" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "dSt" = ( /obj/structure/machinery/body_scanconsole, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/emergency_room) "dSu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/emergency_room) "dSv" = ( /obj/structure/surface/table/reinforced, /obj/item/roller, /obj/item/roller, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "dSw" = ( /obj/structure/machinery/medical_pod/sleeper, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "dSx" = ( /obj/structure/machinery/sleep_console, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "dSy" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "dSB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) "dSD" = ( /obj/item/trash/semki, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/treatment_room) "dSF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) "dSG" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/building/medical/virology_isolation) "dSH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) "dSO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Containment Pen" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_isolation) "dSS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_isolation) "dSU" = ( /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_wing) "dSV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -57000,47 +43813,33 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/virology_wing) "dSW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; name = "\improper Containment Pen" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/medical/virology_wing) "dSX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_isolation) "dSY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/clothing/glasses/meson, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "dSZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "dTa" = ( /obj/structure/machinery/chem_master, @@ -57048,56 +43847,40 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "dTb" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_isolation) "dTc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_isolation) "dTd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_isolation) "dTf" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_isolation) "dTg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_isolation) "dTh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_wing) "dTi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ @@ -57105,25 +43888,17 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_wing) "dTj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "dTk" = ( /obj/structure/bed/stool, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/virology_wing) "dTl" = ( /obj/structure/window/framed/colony, @@ -57132,39 +43907,26 @@ /area/desert_dam/building/medical/virology_isolation) "dTm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/desert_dam/building/medical/virology_wing) "dTn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) "dTo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/desert_dam/building/medical/virology_wing) "dTp" = ( /obj/item/trash/sosjerky, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/desert_dam/building/medical/virology_wing) "dTs" = ( /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) "dTv" = ( /obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_civilian) "dTx" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -57178,17 +43940,13 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "dTB" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "dTH" = ( /obj/structure/desertdam/decals/road_edge{ @@ -57196,41 +43954,25 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_south) -"dTI" = ( -/turf/open/desert/rock, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) "dTK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_hydro) "dTL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) "dTP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dTQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/desert_dam/building/hydroponics/hydroponics) "dTX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dTY" = ( /obj/effect/decal/cleanable/dirt, @@ -57239,10 +43981,7 @@ "dTZ" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUa" = ( /obj/structure/disposalpipe/segment{ @@ -57250,27 +43989,19 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUc" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Kitchen" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dUd" = ( /obj/structure/disposalpipe/segment, @@ -57281,9 +44012,7 @@ /obj/structure/machinery/door/poddoor/shutters{ dir = 2 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dUf" = ( /obj/structure/surface/table/reinforced, @@ -57291,149 +44020,98 @@ /obj/structure/machinery/door/poddoor/shutters{ dir = 2 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dUg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/desert_dam/building/hydroponics/hydroponics) "dUh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/desert_dam/building/hydroponics/hydroponics) "dUi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/desert_dam/building/hydroponics/hydroponics) "dUj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/desert_dam/building/hydroponics/hydroponics) "dUm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/desert_dam/building/hydroponics/hydroponics) "dUn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/desert_dam/building/hydroponics/hydroponics) "dUp" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dUr" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dUt" = ( /obj/structure/window/framed/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dUu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/window/framed/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dUv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) "dUw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/desert_dam/building/hydroponics/hydroponics) "dUx" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/desert_dam/building/hydroponics/hydroponics) "dUz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/interior/caves/central_caves) "dUA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUB" = ( /obj/structure/disposalpipe/segment{ @@ -57441,10 +44119,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUC" = ( /obj/structure/disposalpipe/segment{ @@ -57453,10 +44128,7 @@ /obj/item/seeds/soyaseed, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUD" = ( /obj/structure/disposalpipe/junction{ @@ -57464,18 +44136,12 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUF" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUG" = ( /obj/structure/disposalpipe/segment{ @@ -57483,64 +44149,43 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/desert_dam/building/hydroponics/hydroponics) "dUI" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUJ" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dUK" = ( /obj/effect/decal/cleanable/vomit, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dUL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) "dUM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_hydro) "dUN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) "dUO" = ( /obj/structure/desertdam/decals/road_edge{ @@ -57582,16 +44227,11 @@ /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cookie, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dVm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "dVn" = ( /obj/structure/desertdam/decals/road_edge{ @@ -57607,24 +44247,16 @@ /obj/item/reagent_container/food/snacks/bun, /obj/item/reagent_container/food/snacks/cheesewedge, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dVp" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "dVr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/lobby) "dVs" = ( /obj/structure/surface/table, @@ -57642,10 +44274,7 @@ "dVu" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/lobby) "dVv" = ( /obj/structure/surface/table, @@ -57654,19 +44283,13 @@ /area/desert_dam/building/water_treatment_one/control_room) "dVw" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dVx" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dVy" = ( /obj/effect/decal/cleanable/blood{ @@ -57674,10 +44297,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dVz" = ( /obj/structure/machinery/door_control{ @@ -57732,10 +44352,7 @@ /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dVE" = ( /obj/effect/decal/cleanable/dirt, @@ -57750,34 +44367,22 @@ /area/desert_dam/building/water_treatment_one/garage) "dVG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/desert_dam/building/hydroponics/hydroponics) "dVH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "dVI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dVJ" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dVK" = ( /obj/effect/decal/warning_stripes{ @@ -57789,10 +44394,7 @@ /area/desert_dam/building/water_treatment_one/garage) "dVL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "dVM" = ( /obj/structure/disposalpipe/segment{ @@ -57800,10 +44402,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dVN" = ( /obj/structure/machinery/power/apc{ @@ -57817,10 +44416,7 @@ "dVO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dVP" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -57829,38 +44425,26 @@ "dVR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dVS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "dVT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "dVU" = ( /obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "dVY" = ( /obj/structure/disposalpipe/segment{ @@ -57868,10 +44452,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "dVZ" = ( /obj/structure/disposalpipe/segment{ @@ -57881,26 +44462,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dWa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "dWd" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dWe" = ( /obj/effect/decal/cleanable/dirt, @@ -57908,10 +44480,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dWf" = ( /obj/effect/decal/warning_stripes{ @@ -57952,10 +44521,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dWk" = ( /obj/structure/disposalpipe/segment{ @@ -57966,10 +44532,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dWl" = ( /obj/structure/disposalpipe/segment{ @@ -57978,10 +44541,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dWm" = ( /obj/structure/disposalpipe/segment{ @@ -57990,10 +44550,7 @@ /obj/item/seeds/riceseed, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "dWn" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -58006,10 +44563,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dWo" = ( /obj/structure/disposalpipe/segment{ @@ -58019,29 +44573,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dWp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dWq" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "dWr" = ( /obj/effect/decal/cleanable/dirt, @@ -58054,10 +44599,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_storage) "dWu" = ( /obj/structure/surface/rack, @@ -58069,18 +44611,13 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dWy" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/floodgate_control) "dWz" = ( /obj/structure/surface/table, @@ -58096,38 +44633,25 @@ /obj/item/reagent_container/food/snacks/bun, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dWB" = ( /obj/item/shard/shrapnel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) "dWC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dWE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dWF" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/floodgate_control) "dWG" = ( /obj/structure/surface/table, @@ -58136,9 +44660,7 @@ /area/desert_dam/building/water_treatment_one/floodgate_control) "dWH" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dWJ" = ( /obj/structure/pipes/vents/pump, @@ -58157,49 +44679,37 @@ /area/desert_dam/building/water_treatment_one/floodgate_control) "dWM" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "dWN" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "dWO" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dWP" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/building/water_treatment_one/breakroom) "dWQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Mess Hall" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "dWT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "dWV" = ( /obj/structure/desertdam/decals/road_edge{ @@ -58313,27 +44823,21 @@ /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dXr" = ( /obj/structure/barricade/wooden{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) "dXs" = ( /obj/structure/barricade/wooden{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "dXt" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -58343,9 +44847,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dXu" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -58354,15 +44856,11 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dXv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) "dXw" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -58371,9 +44869,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dXx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -58406,16 +44902,11 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dXC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dXD" = ( /obj/effect/decal/cleanable/dirt, @@ -58433,9 +44924,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_civilian) "dXI" = ( /obj/structure/pipes/vents/pump{ @@ -58491,29 +44980,20 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "dXY" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "dXZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "dYa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/desert_dam/building/dorms/hallway_northwing) "dYb" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -58522,18 +45002,14 @@ /area/desert_dam/building/dorms/hallway_northwing) "dYc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/desert_dam/building/dorms/hallway_northwing) "dYi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dYk" = ( /obj/effect/decal/cleanable/dirt, @@ -58541,55 +45017,38 @@ /area/desert_dam/building/dorms/hallway_westwing) "dYm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dYx" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Showers" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/hallway_westwing) "dYy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "dYz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dYC" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dYD" = ( /obj/structure/surface/table, /obj/item/ashtray/bronze, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dYI" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "dYK" = ( /obj/item/trash/boonie, @@ -58605,24 +45064,16 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/building/dorms/hallway_westwing) "dYP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dYR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/building/dorms/hallway_westwing) "dYS" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -58631,29 +45082,20 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "dYX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) "dZf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "dZk" = ( /obj/item/stack/sheet/wood, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_civilian) "dZl" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -58684,29 +45126,21 @@ "dZz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_westwing) "dZE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dZG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dZH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dZI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -58714,74 +45148,47 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "dZL" = ( -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/desert_dam/building/dorms/pool) "dZM" = ( -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/desert_dam/building/dorms/pool) "dZN" = ( -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, +/turf/open/gm/river/darkred_pool, /area/desert_dam/building/dorms/pool) "dZO" = ( /obj/item/toy/inflatable_duck, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/desert_dam/building/dorms/pool) "dZR" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dZS" = ( /obj/structure/closet/boxinggloves, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dZT" = ( /obj/structure/closet/athletic_mixed, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dZU" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/desert_dam/building/dorms/hallway_westwing) "dZX" = ( /obj/item/stool, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "dZY" = ( /obj/structure/surface/table, /obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/desert_dam/building/dorms/hallway_westwing) "ead" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -58791,19 +45198,13 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/lobby) "eag" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/lobby) "eak" = ( /obj/structure/pipes/vents/pump, @@ -58816,10 +45217,7 @@ /area/desert_dam/building/dorms/hallway_westwing) "eau" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "eav" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -58829,43 +45227,30 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "eaz" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "eaA" = ( /obj/item/stool, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "eaC" = ( /obj/structure/surface/table/gamblingtable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "eaG" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "eaH" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer/emails, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "eaK" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -58882,33 +45267,22 @@ /obj/structure/mirror{ pixel_x = -28 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "eaO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "eaP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) "eaQ" = ( /obj/item/tool/hatchet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) "eaT" = ( /obj/structure/disposalpipe/segment{ @@ -58917,16 +45291,11 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "eaU" = ( /obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "eaV" = ( /obj/structure/machinery/light{ @@ -58944,15 +45313,11 @@ /area/desert_dam/building/water_treatment_one/hallway) "eaX" = ( /obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) "eba" = ( /obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_hydro) "ebb" = ( /obj/effect/decal/cleanable/dirt, @@ -58974,57 +45339,38 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) "ebi" = ( /obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, +/turf/open/gm/river/darkred_pool, /area/desert_dam/building/dorms/pool) "ebj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_westwing) "ebk" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/desert_dam/building/dorms/hallway_westwing) "ebn" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "ebo" = ( /obj/item/weapon/gun/revolver/small, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) "ebp" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/desert_dam/building/dorms/pool) "ebq" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/building/dorms/pool) "ebs" = ( /turf/closed/wall/hangar{ @@ -59044,10 +45390,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/desert_dam/building/water_treatment_one/lobby) "ebv" = ( /obj/structure/machinery/light{ @@ -59074,10 +45417,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ebA" = ( /obj/structure/surface/table, @@ -59107,59 +45447,43 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/building/water_treatment_one/breakroom) "ebF" = ( /obj/structure/closet/l3closet/virology, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/equipment) "ebG" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "ebJ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "ebK" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/building/water_treatment_one/breakroom) "ebL" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "ebM" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/equipment) "ebN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -59169,9 +45493,7 @@ /area/desert_dam/exterior/valley/valley_cargo) "ebO" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner, /area/desert_dam/building/water_treatment_one/breakroom) "ebP" = ( /obj/structure/machinery/light{ @@ -59186,16 +45508,11 @@ /area/desert_dam/interior/dam_interior/control_room) "ebT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ebU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/substation/southwest) "ebW" = ( /obj/structure/disposalpipe/junction{ @@ -59205,10 +45522,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ebZ" = ( /obj/structure/window/framed/hangar/reinforced, @@ -59220,20 +45534,14 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "ecf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "ecg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -59243,27 +45551,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ech" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "eci" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecj" = ( /obj/structure/disposalpipe/segment{ @@ -59274,10 +45573,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "eck" = ( /obj/structure/disposalpipe/junction{ @@ -59286,10 +45582,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecl" = ( /obj/structure/disposalpipe/segment{ @@ -59298,10 +45591,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecm" = ( /obj/structure/disposalpipe/segment{ @@ -59311,10 +45601,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecn" = ( /obj/structure/disposalpipe/segment{ @@ -59325,10 +45612,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "eco" = ( /obj/structure/disposalpipe/segment{ @@ -59337,10 +45621,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecp" = ( /obj/structure/disposalpipe/segment{ @@ -59350,10 +45631,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecq" = ( /obj/structure/disposalpipe/segment{ @@ -59364,10 +45642,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecr" = ( /obj/structure/disposalpipe/segment{ @@ -59376,10 +45651,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ect" = ( /obj/structure/disposalpipe/segment{ @@ -59388,10 +45660,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "ecu" = ( /obj/structure/disposalpipe/segment{ @@ -59402,35 +45671,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "ecv" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "ecw" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "ecx" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "ecy" = ( /obj/structure/machinery/light, @@ -59450,10 +45707,7 @@ "ecB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/breakroom) "ecD" = ( /obj/structure/disposalpipe/segment{ @@ -59462,74 +45716,54 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "ecE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/equipment) "ecH" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "ecI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "ecK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "ecL" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/equipment) "ecM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "ecN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "ecO" = ( /obj/structure/pipes/vents/pump{ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "edo" = ( /obj/effect/decal/warning_stripes{ @@ -59549,10 +45783,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/lobby) "edK" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -59560,10 +45791,7 @@ name = "\improper Office" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "edL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -59572,17 +45800,11 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "edM" = ( /obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_civilian) "edO" = ( /obj/structure/window/framed/hangar, @@ -59594,20 +45816,14 @@ name = "\improper Treatment Checkpoint" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/lobby) "edQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Water Treatment" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "edR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -59620,29 +45836,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/control_room) "edT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Treatment Breakroom" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/breakroom) "edU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Decontamination" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) "edY" = ( /obj/structure/window/framed/hangar, @@ -59655,9 +45862,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "eee" = ( /obj/structure/window/framed/hangar, @@ -59683,10 +45888,7 @@ dir = 2; name = "\improper Floodgate Controlroom" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/floodgate_control) "ees" = ( /obj/effect/decal/warning_stripes{ @@ -59701,56 +45903,40 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Treatment Breakroom" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/breakroom) "eev" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "\improper Decontamination" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/equipment) "eez" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Showers" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) "eeC" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Restroom" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "eeD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; name = "\improper Treatment Garage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/garage) "eeE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Water Treatment" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "eeK" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -59781,10 +45967,7 @@ name = "\improper Hydroponics" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "eeR" = ( /obj/effect/decal/warning_stripes{ @@ -59820,9 +46003,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "eeV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -59858,9 +46039,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "eft" = ( /turf/open/asphalt, @@ -59874,10 +46053,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) "ehg" = ( /obj/structure/desertdam/decals/road_edge{ @@ -59891,9 +46067,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "ehx" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_medical) "ehz" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -59902,132 +46076,90 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) "ehB" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/desert_dam/building/water_treatment_one/purification) "ehC" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, +/turf/open/floor/coagulation/icon4_8, /area/desert_dam/building/water_treatment_one/purification) "ehD" = ( /obj/structure/filtration/machine_64x96{ icon_state = "sedimentation_0" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehE" = ( /obj/structure/filtration/machine_96x96{ icon_state = "sedimentation_A_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehF" = ( /obj/structure/filtration/machine_64x128{ icon_state = "filtration_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehG" = ( /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_A_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehH" = ( /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_A_0" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehI" = ( /obj/structure/filtration/machine_32x32{ icon_state = "filtration_catwalk" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehJ" = ( /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_B_0" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehK" = ( /obj/structure/filtration/machine_32x32{ icon_state = "filtration_segment_B_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehL" = ( /obj/structure/filtration/machine_64x96{ icon_state = "filtration_machine_A_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehM" = ( /obj/structure/filtration/machine_64x96{ icon_state = "filtration_machine_B_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "ehN" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/building/water_treatment_one/purification) "ehO" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_1" }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_one/purification) "ehP" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/building/water_treatment_one/purification) "ehQ" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/building/water_treatment_one/purification) "ehR" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_one/purification) "ehS" = ( /obj/structure/filtration/collector_pipes{ @@ -60039,24 +46171,16 @@ /area/desert_dam/building/water_treatment_one/purification) "ehT" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/building/water_treatment_one/purification) "ehU" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/desert_dam/building/water_treatment_one/purification) "ehV" = ( -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/building/water_treatment_one/purification) "ehW" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/desert_dam/building/water_treatment_one/purification) "ehX" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -60069,79 +46193,62 @@ /obj/structure/filtration/machine_96x96{ icon_state = "disinfection" }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/building/water_treatment_one/purification) "eia" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/desert_dam/building/water_treatment_one/purification) "eib" = ( /obj/effect/blocker/toxic_water/Group_1/delay, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "eic" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "eid" = ( /obj/structure/filtration/machine_64x96{ icon_state = "sedimentation_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) "eiq" = ( /obj/structure/filtration/machine_96x96{ icon_state = "distribution" }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "ejR" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "ekg" = ( /obj/effect/decal/remains/xeno{ pixel_x = 1; pixel_y = 31 }, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/caves/temple) "ekH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/bar_valley_dam) +"ekN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "emt" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "eqo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -60155,11 +46262,11 @@ /obj/item/tool/surgery/FixOVein, /obj/item/stack/nanopaste, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/surgery_room_one) +"erF" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) "esG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -60173,9 +46280,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_valley) "euG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/south_valley_dam) "eyL" = ( /turf/open/gm/empty, @@ -60189,10 +46294,7 @@ "eBZ" = ( /obj/item/storage/fancy/vials/random, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) "eCk" = ( /obj/structure/desertdam/decals/road_edge{ @@ -60200,7 +46302,7 @@ }, /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "eCK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, @@ -60215,9 +46317,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "eJh" = ( /obj/structure/flora/grass/tallgrass/desert, @@ -60225,16 +46325,11 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "eKN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/desert_dam/interior/dam_interior/hanger) "eNU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "eRn" = ( /obj/structure/desertdam/decals/road_edge{ @@ -60242,13 +46337,22 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"eRL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"eRX" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "eTi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) "eVk" = ( /obj/effect/decal/warning_stripes{ @@ -60260,9 +46364,7 @@ "eVo" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) "eVJ" = ( /obj/structure/window/framed/chigusa, @@ -60273,16 +46375,12 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) "eWn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "eXM" = ( /obj/effect/decal/cleanable/dirt, @@ -60298,19 +46396,24 @@ /area/desert_dam/building/medical/CMO) "eYK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "eYP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) +"eZC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "eZE" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -60320,6 +46423,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"eZN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "faE" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -60334,9 +46443,7 @@ /obj/effect/landmark/nightmare{ insert_tag = "uppcrash-supply" }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "fcE" = ( /obj/structure/flora/bush/desert{ @@ -60348,9 +46455,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/telecomm/lz1_south) "fdk" = ( /obj/structure/desertdam/decals/road_edge{ @@ -60359,9 +46464,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "feU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) "fgo" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -60387,23 +46490,16 @@ "flj" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "flq" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "flu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "fmP" = ( /turf/open/gm/empty, @@ -60416,9 +46512,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "fpu" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/south_valley_dam) "fpJ" = ( /obj/structure/disposalpipe/segment{ @@ -60426,39 +46520,31 @@ }, /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) +"fqj" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_one) "fqt" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/telecomm/lz2_storage) "fqy" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "fqI" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "fsK" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "fsP" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "fxs" = ( /obj/structure/desertdam/decals/road_edge{ @@ -60467,17 +46553,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "fyq" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/south_valley_dam) "fyO" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "fBF" = ( /obj/structure/desertdam/decals/road_edge{ @@ -60515,14 +46595,10 @@ /obj/structure/prop/dam/boulder/boulder2{ desc = "A large rock. It looks very hard to get around." }, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) "fHg" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/south_valley_dam) "fHr" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -60530,31 +46606,21 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) "fHJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "fHX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) "fNw" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/bar_valley_dam) "fPc" = ( /turf/closed/wall/r_wall/bunker{ @@ -60563,10 +46629,7 @@ /area/desert_dam/interior/dam_interior/garage) "fPp" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "fRy" = ( /obj/structure/stairs, @@ -60574,56 +46637,47 @@ dir = 4 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) "fSc" = ( /obj/structure/flora/grass/desert/lightgrass_12, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "fTk" = ( /obj/structure/sink/kitchen, /obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "fUO" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) +"fYz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "fYS" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "fZd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "fZj" = ( /obj/effect/landmark/static_comms/net_one, /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/telecomm/lz1_valley) "gab" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -60631,35 +46685,25 @@ /area/desert_dam/interior/lab_northeast/east_lab_lobby) "gak" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/emergency_room) "gca" = ( /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) "gdW" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "gea" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/bar_valley_dam) "ggn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "ghz" = ( /obj/effect/decal/cleanable/dirt, @@ -60667,17 +46711,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "gls" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) "glx" = ( /obj/effect/decal/warning_stripes{ @@ -60690,18 +46729,13 @@ /area/desert_dam/exterior/valley/valley_hydro) "glz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/garage) "glD" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) "glO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -60710,10 +46744,7 @@ "gmk" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "gmZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60731,23 +46762,17 @@ dir = 1 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "goq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "goY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/desert_dam/interior/lab_northeast/east_lab_containment) "gpi" = ( /obj/structure/prop/dam/large_boulder/boulder1, @@ -60755,16 +46780,11 @@ /area/desert_dam/exterior/valley/valley_hydro) "gpZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) "grk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/interior/caves/central_caves) "grQ" = ( /obj/structure/surface/table, @@ -60783,9 +46803,7 @@ dir = 5 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) "gxo" = ( /obj/structure/surface/table, @@ -60801,17 +46819,22 @@ pixel_x = -4; pixel_y = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/interior/dam_interior/garage) +"gBQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "gBV" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "gCg" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -60833,9 +46856,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "gFr" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "gGC" = ( /turf/closed/wall/mineral/sandstone/runed/decor, @@ -60843,9 +46864,7 @@ "gIA" = ( /obj/structure/toilet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "gIS" = ( /obj/structure/stairs/perspective{ @@ -60853,36 +46872,29 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "gKm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) "gKn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/temple) "gKo" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/exterior/valley/valley_wilderness) "gLb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 2 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/garage) +"gLg" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_two) "gLl" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -60895,16 +46907,12 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) "gNq" = ( /obj/structure/surface/table, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "gOE" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -60916,9 +46924,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "gRC" = ( /obj/structure/machinery/power/apc{ @@ -60934,23 +46940,16 @@ /area/desert_dam/exterior/telecomm/lz1_south) "gTW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/interior/caves/central_caves) "gUh" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) "gUz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/substation/northwest) "gVm" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -60982,9 +46981,7 @@ /obj/effect/decal/remains/xeno{ pixel_x = 31 }, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) "gYP" = ( /obj/effect/decal/cleanable/dirt, @@ -60993,55 +46990,39 @@ /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) "gYT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/exterior/telecomm/lz1_valley) "gYU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/telecomm/lz2_storage) "hcP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "het" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/desert_dam/building/water_treatment_one/lobby) "heR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "hhj" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/south_valley_dam) "hiN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "hjm" = ( /obj/effect/decal/warning_stripes{ @@ -61050,6 +47031,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"hjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"hjW" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_two) "hmA" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, @@ -61057,9 +47047,7 @@ /obj/item/folder/black, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) "hnJ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -61074,9 +47062,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "hpw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/south_valley_dam) "hpL" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -61086,15 +47072,14 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "hqp" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "hqT" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/south_valley_dam) +"htc" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_two) "hvD" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f10" @@ -61102,23 +47087,16 @@ /turf/open/shuttle/can_surgery/red, /area/desert_dam/interior/dam_interior/hanger) "hvG" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_telecoms) "hwc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/south_valley_dam) "hxj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_hydro) "hyH" = ( /obj/structure/tunnel, @@ -61128,9 +47106,7 @@ /obj/effect/decal/sand_overlay/sand2, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "hzC" = ( /obj/effect/decal/cleanable/dirt, @@ -61144,9 +47120,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) "hAv" = ( /obj/item/stack/sheet/mineral/sandstone{ @@ -61166,13 +47140,15 @@ /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) "hBr" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_hydro) "hCf" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/south_valley_dam) +"hCY" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "hDT" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" @@ -61194,9 +47170,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "hMc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_telecoms) "hOt" = ( /obj/structure/computerframe, @@ -61205,22 +47179,15 @@ "hOv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_westwing) "hOA" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "hOK" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "hPB" = ( /obj/structure/desertdam/decals/road_edge{ @@ -61230,36 +47197,37 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "hQM" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/caves/temple) "hRU" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) +"hTf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "hTg" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/church) "hTr" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "hVs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hVV" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "hWz" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/medium, @@ -61270,10 +47238,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/desert_dam/interior/dam_interior/garage) "ibl" = ( /obj/effect/landmark/static_comms/net_one, @@ -61286,10 +47251,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "ibU" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_hydro) "ick" = ( /obj/effect/decal/warning_stripes{ @@ -61311,16 +47273,11 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "idG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/telecomm/lz2_storage) "ieU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "ifh" = ( /obj/structure/surface/table/reinforced, @@ -61329,16 +47286,12 @@ pixel_y = 32 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "ifB" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/building/security/observation) "igf" = ( /obj/structure/desertdam/decals/road_edge{ @@ -61349,13 +47302,13 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"ign" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/landing_pad_one) "ihT" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) "iiQ" = ( /obj/structure/surface/table/reinforced, @@ -61363,9 +47316,7 @@ /obj/item/roller, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/emergency_room) "iiY" = ( /obj/structure/machinery/power/reactor/colony, @@ -61376,15 +47327,11 @@ /area/desert_dam/interior/dam_interior/engine_room) "ijc" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "ilq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "ioA" = ( /turf/open/gm/river/desert/shallow, @@ -61415,40 +47362,28 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "isz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "isZ" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "iuk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "iuY" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) "ivd" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -61468,26 +47403,17 @@ /obj/structure/machinery/door/airlock/sandstone/runed{ name = "Strange Temple" }, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "ivQ" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) "iwh" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/south_valley_dam) "iwy" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/caves/temple) "ixe" = ( /obj/structure/machinery/light{ @@ -61497,10 +47423,7 @@ dir = 1 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/garage) "iAf" = ( /obj/effect/decal/warning_stripes{ @@ -61510,39 +47433,36 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "iCw" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) "iCE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_wilderness) +"iHF" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/landing_pad_two) "iIB" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "iJC" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) +"iKp" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "iNg" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; name = "\improper Garage Breakroom" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/desert_dam/interior/dam_interior/garage) "iNF" = ( /turf/open/desert/desert_shore/shore_edge1, @@ -61555,26 +47475,20 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) "iRU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "iTi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "iTX" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -61598,9 +47512,7 @@ "iXt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hanger) "iYy" = ( /obj/structure/surface/table, @@ -61609,31 +47521,29 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/disposals) "iYI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/bar_valley_dam) +"iZY" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "jbx" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) +"jcb" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "jci" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "jcK" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -61658,16 +47568,20 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "jpa" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_hydro) +"jqU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "jre" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "jrV" = ( /obj/effect/decal/cleanable/dirt, @@ -61688,17 +47602,12 @@ /area/desert_dam/exterior/river/riverside_south) "jtz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "jvo" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) "jvZ" = ( /obj/structure/platform{ @@ -61707,9 +47616,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/south_valley_dam) "jxq" = ( /obj/structure/machinery/power/apc{ @@ -61717,35 +47624,24 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/exterior/telecomm/lz1_south) "jxN" = ( /obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) "jAr" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, +/turf/open/floor/vault2/north, /area/desert_dam/building/hydroponics/hydroponics_storage) "jAS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_civilian) "jBh" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) "jCJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -61777,9 +47673,7 @@ "jJn" = ( /obj/structure/closet/crate/freezer/rations, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) "jJE" = ( /obj/effect/landmark/objective_landmark/far, @@ -61789,9 +47683,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) "jMT" = ( /obj/effect/decal/warning_stripes{ @@ -61807,9 +47699,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "jOe" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) "jSS" = ( /obj/structure/desertdam/decals/road_edge{ @@ -61820,25 +47710,17 @@ "jTF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "jVa" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "jVr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/morgue) "jVv" = ( /obj/effect/decal/cleanable/dirt, @@ -61854,15 +47736,10 @@ "jXy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "jZZ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_telecoms) "kbo" = ( /obj/structure/prop/dam/boulder/boulder1, @@ -61873,35 +47750,25 @@ /area/desert_dam/exterior/telecomm/lz2_containers) "kee" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) "kge" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "kiy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "kiP" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "kkm" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_hydro) "kmr" = ( /obj/structure/desertdam/decals/road_edge{ @@ -61917,9 +47784,7 @@ "knm" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) "kry" = ( /obj/effect/decal/warning_stripes{ @@ -61950,9 +47815,7 @@ }, /obj/item/reagent_container/food/snacks/stew, /obj/item/tool/kitchen/utensil/spoon, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "kAV" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -61964,10 +47827,7 @@ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) "kFW" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -61978,15 +47838,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "kIl" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "kIP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -62002,24 +47857,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "kMM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "kMT" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "kOC" = ( /obj/structure/machinery/power/reactor/colony, @@ -62031,42 +47879,35 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"kPo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "kPs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "kQd" = ( /obj/structure/tunnel, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/east_caves) "kRX" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "kTX" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "kUz" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/desert_dam/interior/dam_interior/break_room) "kVU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/south_valley_dam) "kWh" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -62090,18 +47931,12 @@ /area/desert_dam/exterior/valley/valley_labs) "lei" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/mining/workshop_foyer) "leJ" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/mining/workshop_foyer) "leZ" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -62115,10 +47950,7 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) "lfZ" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/telecomm/lz1_valley) "lib" = ( /obj/structure/surface/table/reinforced, @@ -62127,10 +47959,7 @@ health = 80 }, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/lobby) "liN" = ( /obj/structure/disposalpipe/segment{ @@ -62139,10 +47968,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) "ljB" = ( /obj/structure/closet/cabinet, @@ -62159,23 +47985,16 @@ "lkZ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) "lmq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) "lnG" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "lop" = ( /obj/structure/desertdam/decals/road_edge{ @@ -62187,9 +48006,7 @@ /obj/effect/landmark/nightmare{ insert_tag = "damtemple_intact" }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) "lrY" = ( /obj/structure/flora/grass/desert/lightgrass_8, @@ -62200,10 +48017,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/break_room) "ltE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -62219,9 +48033,7 @@ /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ pixel_x = -32 }, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) "lxq" = ( /obj/structure/surface/table, @@ -62241,12 +48053,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"lzs" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_two) "lzZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "lAb" = ( /obj/structure/sink{ @@ -62254,9 +48066,7 @@ pixel_y = -10 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "lDT" = ( /obj/structure/flora/grass/desert/lightgrass_3, @@ -62272,11 +48082,11 @@ /area/desert_dam/exterior/valley/valley_medical) "lHW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/desert_dam/interior/lab_northeast/east_lab_lobby) +"lIt" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "lIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -62285,14 +48095,12 @@ dir = 1 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "lJM" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "lKW" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -62302,18 +48110,12 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "lKY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/north_wing_hallway) "lLI" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "lMc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -62324,10 +48126,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "lNN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/desert_dam/interior/lab_northeast/east_lab_containment) "lOM" = ( /obj/effect/decal/sand_overlay/sand2/corner2, @@ -62340,31 +48139,22 @@ /area/desert_dam/building/cafeteria/loading) "lPn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) "lQM" = ( /obj/structure/stairs{ dir = 4 }, /obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "lUl" = ( /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/turf/open/floor/carpet15_15/west, /area/desert_dam/building/administration/office) "lUU" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/south_valley_dam) "lVW" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -62383,14 +48173,18 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"lZP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "mar" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/primary_tool_storage) "mbl" = ( /obj/structure/surface/table, @@ -62409,19 +48203,14 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_labs) "mej" = ( /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ pixel_x = 32; shuttleId = "trijentshuttle22" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/warehouse/loading) "meN" = ( /obj/structure/desertdam/decals/road_edge{ @@ -62430,13 +48219,18 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"mfH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "mfK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "mgw" = ( /obj/structure/desertdam/decals/road_stop{ @@ -62455,18 +48249,19 @@ "mhU" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) +"mjR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "mkd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "mkJ" = ( /obj/structure/flora/grass/desert/lightgrass_4, @@ -62483,23 +48278,19 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/telecomm/lz1_valley) "mnc" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/temple) "mnA" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/interior/dam_interior/atmos_storage) +"moq" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) "mqM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/desert/rock, @@ -62525,17 +48316,15 @@ icon_state = "pred_mask12_ebony"; unacidable = 0 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) +"muj" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "myx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "mAm" = ( /obj/effect/decal/cleanable/dirt, @@ -62566,11 +48355,22 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) +"mBO" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"mDd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "mDz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "mDA" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -62582,47 +48382,32 @@ /area/desert_dam/exterior/valley/valley_crashsite) "mEC" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) "mEV" = ( /obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, +/turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) "mGo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "mHf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "mHV" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/telecomm/lz2_storage) "mKs" = ( /turf/closed/wall/rock/orange, /area/desert_dam/exterior/valley/valley_telecoms) "mKW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "mKZ" = ( /obj/structure/flora/pottedplant, @@ -62634,16 +48419,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/desert_dam/building/security/lobby) "mMm" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) "mNk" = ( /turf/closed/wall/r_wall, @@ -62651,17 +48430,12 @@ "mNn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "mNC" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "mOS" = ( /obj/effect/decal/cleanable/blood/oil, @@ -62671,9 +48445,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "mTf" = ( /obj/effect/decal/warning_stripes{ @@ -62695,26 +48467,22 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) "mZa" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) +"mZb" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "mZj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "naF" = ( /obj/effect/landmark/objective_landmark/close, @@ -62737,6 +48505,9 @@ "ncm" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ndF" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_one) "ndP" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -62747,9 +48518,7 @@ /area/desert_dam/interior/caves/temple) "ngk" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) "ngo" = ( /obj/structure/desertdam/decals/road_edge{ @@ -62758,23 +48527,22 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "nil" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/south_valley_dam) +"niN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "nji" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/desert_dam/interior/dam_interior/hanger) "njF" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "nlH" = ( /obj/effect/decal/cleanable/dirt, @@ -62783,16 +48551,10 @@ /area/desert_dam/building/dorms/hallway_northwing) "nlU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/desert_dam/building/dorms/hallway_westwing) "nmr" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/south_valley_dam) "nmP" = ( /obj/structure/desertdam/decals/road_edge{ @@ -62804,10 +48566,11 @@ "nnl" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) +"nnv" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_one) "nsf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -62818,15 +48581,10 @@ "ntt" = ( /obj/structure/closet/l3closet/security, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked, /area/desert_dam/building/security/armory) "nue" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/south_valley_dam) "nvr" = ( /obj/structure/flora/grass/desert/heavygrass_3, @@ -62834,15 +48592,11 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "nyN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) "nyR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "nzB" = ( /obj/structure/flora/grass/tallgrass/desert, @@ -62870,24 +48624,17 @@ "nFW" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) "nIz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) "nJZ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/landing_pad_one) "nMO" = ( /obj/structure/disposalpipe/segment{ @@ -62895,10 +48642,7 @@ }, /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "nRV" = ( /obj/effect/decal/warning_stripes{ @@ -62910,26 +48654,17 @@ /area/desert_dam/exterior/valley/valley_hydro) "nSN" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/office2) "nTa" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/control_room) "nTn" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) "nTp" = ( /obj/structure/desertdam/decals/road_edge{ @@ -62958,22 +48693,15 @@ /area/desert_dam/interior/caves/central_caves) "nYz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "nYZ" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) "oaz" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/bar_valley_dam) "obv" = ( /obj/structure/surface/table/reinforced/prison{ @@ -62989,17 +48717,12 @@ /obj/item/roller, /obj/item/roller, /obj/item/roller, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) "odR" = ( /obj/structure/largecrate/random/case/small, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) "ofB" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -63009,12 +48732,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) +"ogc" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_one) "oit" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) "olL" = ( /obj/structure/barricade/wooden{ @@ -63022,27 +48745,25 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"onm" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "onA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "ooQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) "ooW" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_labs) "opZ" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "oqy" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63054,10 +48775,7 @@ "osV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "otn" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63069,16 +48787,12 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/bar_valley_dam) "ouK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "oyf" = ( /obj/effect/decal/cleanable/dirt, @@ -63117,16 +48831,12 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/landing_pad_one) "oHw" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/interior/dam_interior/tech_storage) "oHA" = ( /obj/structure/desertdam/decals/road_stop{ @@ -63146,11 +48856,12 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "oJw" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_hydro) +"oJT" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "oJW" = ( /obj/structure/machinery/light{ dir = 8 @@ -63163,28 +48874,24 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"oMz" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) "oNS" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/south_valley_dam) "oOj" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "oQx" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) "oQK" = ( /obj/structure/sink{ @@ -63193,17 +48900,12 @@ pixel_y = 2 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) "oRZ" = ( /obj/structure/closet/radiation, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "oUr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -63216,9 +48918,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_lobby) "oVs" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) "oWx" = ( /obj/structure/machinery/power/reactor/colony, @@ -63226,9 +48926,7 @@ /area/desert_dam/interior/dam_interior/engine_room) "oXx" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "oXK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -63244,19 +48942,13 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/exterior/telecomm/lz1_valley) "pac" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "pal" = ( /obj/structure/machinery/colony_floodlight, @@ -63281,9 +48973,7 @@ dir = 1 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/interior/caves/central_caves) "pif" = ( /obj/docking_port/stationary/trijent_elevator/empty{ @@ -63296,10 +48986,7 @@ /turf/open/gm/empty, /area/shuttle/trijent_shuttle/engi) "pij" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) "pke" = ( /obj/structure/prop/dam/wide_boulder/boulder1, @@ -63326,14 +49013,11 @@ dir = 1 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "ppS" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_isolation) "puM" = ( /obj/structure/machinery/light{ @@ -63353,23 +49037,16 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "pvs" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/south_valley_dam) "pvy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "pwc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) "pyP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -63378,16 +49055,18 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "pzd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/garage) +"pzk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) "pzv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -63396,25 +49075,18 @@ /area/desert_dam/exterior/valley/valley_hydro) "pAE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "pDd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/northwest) "pDW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "pEh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -63430,17 +49102,13 @@ "pFj" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "pFY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/telecomm/lz2_storage) "pGn" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -63450,13 +49118,17 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/garage) +"pHs" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "pHU" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "pIe" = ( /obj/structure/disposalpipe/segment{ @@ -63468,56 +49140,43 @@ "pIg" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) "pJW" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) "pLm" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/south_valley_dam) "pNG" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "pOE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) +"pRD" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) "pSM" = ( /obj/effect/landmark/nightmare{ insert_tag = "purple-new-bridge" }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "pSV" = ( /obj/item/tool/pen, /obj/item/paper_bundle, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/water_treatment_one/hallway) "pTU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/south_valley_dam) "pUO" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63538,9 +49197,7 @@ dir = 8 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_crashsite) "qbC" = ( /obj/structure/surface/table/woodentable, @@ -63558,10 +49215,14 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) "qjg" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, +/turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/caves/temple) +"qkz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "qkJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -63571,25 +49232,23 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "qkZ" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/telecomm/lz1_south) +"qlr" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "qlx" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "qlG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) "qlU" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "qmn" = ( /obj/structure/machinery/light{ @@ -63610,15 +49269,11 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "qoJ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) "qqR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63633,17 +49288,12 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_labs) "qwZ" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/medical/surgury_observation) "qxv" = ( /obj/structure/machinery/colony_floodlight, @@ -63651,28 +49301,19 @@ /area/desert_dam/exterior/valley/valley_labs) "qyu" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "qyD" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) "qyX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/desert_dam/interior/dam_interior/garage) "qzo" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_telecoms) "qCr" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -63680,22 +49321,19 @@ }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) "qCR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_crashsite) "qDb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) +"qDl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) "qEJ" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -63706,25 +49344,31 @@ "qGb" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/desert_dam/building/security/evidence) "qGd" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"qHh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "qHt" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "qHF" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"qIC" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "qJI" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -63734,44 +49378,32 @@ /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz1_xenoflora) "qJU" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/temple) "qKe" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/dam_interior/south_tunnel) "qKA" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/bar_valley_dam) "qKE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_hydro) "qLD" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) +"qLE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) "qLT" = ( /obj/structure/showcase{ desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; icon_state = "yaut"; name = "alien sarcophagus" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "qNk" = ( /obj/effect/decal/cleanable/dirt, @@ -63784,16 +49416,11 @@ id = "garage_dd"; name = "\improper Garage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "qQz" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "qVN" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63806,9 +49433,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) "qXZ" = ( /obj/structure/surface/table, @@ -63818,9 +49443,7 @@ "qYC" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/desert_dam/building/administration/archives) "ray" = ( /obj/effect/decal/cleanable/dirt, @@ -63830,14 +49453,10 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) "rbp" = ( -/turf/open/desert/desert_shore/shore_corner1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner1/north, /area/desert_dam/interior/caves/temple) "rbM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/telecomm/lz2_storage) "rdW" = ( /turf/open/asphalt, @@ -63847,9 +49466,7 @@ dir = 1 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/garage) "rfm" = ( /obj/effect/decal/cleanable/dirt, @@ -63868,15 +49485,11 @@ color = "#6b675e" }, /obj/item/stack/yautja_rope, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "rjd" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside{ - dir = 9 - }, +/turf/open/floor/filtrationside/northwest, /area/desert_dam/exterior/valley/valley_medical) "rlU" = ( /obj/effect/decal/cleanable/dirt, @@ -63887,9 +49500,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) "rob" = ( /obj/structure/desertdam/decals/road_edge{ @@ -63902,9 +49513,7 @@ dir = 8 }, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "rpQ" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -63913,21 +49522,15 @@ "rqk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/desert_dam/interior/dam_interior/tech_storage) "rtW" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) "ruJ" = ( /obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_medical) "ruS" = ( /turf/open/desert/dirt, @@ -63950,10 +49553,7 @@ /area/shuttle/trijent_shuttle/lz1) "ryG" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/garage) "rAo" = ( /obj/structure/flora/grass/tallgrass/desert, @@ -63962,9 +49562,7 @@ "rAL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/powercell, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/telecomm/lz1_south) "rAP" = ( /obj/effect/decal/cleanable/dirt, @@ -63974,18 +49572,13 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/mining/workshop) "rBP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "rCp" = ( /obj/structure/platform/mineral/sandstone/runed, @@ -63995,9 +49588,7 @@ "rDa" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "rEa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -64006,19 +49597,14 @@ "rEH" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/desert_dam/building/water_treatment_one/breakroom) "rFi" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/lz2) "rFz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/northwest) "rFU" = ( /obj/effect/decal/warning_stripes{ @@ -64028,24 +49614,18 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "rGu" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) "rHw" = ( /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) "rIY" = ( /obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) "rJA" = ( /obj/structure/lz_sign/dam_sign, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) "rJK" = ( /obj/structure/desertdam/decals/road_edge, @@ -64059,16 +49639,12 @@ unacidable = 0 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "rOa" = ( /obj/structure/toilet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) "rPp" = ( /obj/effect/decal/cleanable/dirt, @@ -64078,9 +49654,7 @@ "rQJ" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) "rQQ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -64098,9 +49672,7 @@ pixel_x = 30; start_charge = 0 }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/telecomm/lz2_tcomms) "rTV" = ( /turf/closed/wall/r_wall/bunker{ @@ -64109,9 +49681,7 @@ /area/desert_dam/exterior/rock) "rUA" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) "rUK" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -64119,10 +49689,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "rUZ" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hanger) "rVo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -64142,12 +49709,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"sav" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_two) +"saQ" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"saS" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "sbP" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) "scm" = ( /obj/structure/desertdam/decals/road_stop{ @@ -64158,26 +49734,18 @@ /area/desert_dam/exterior/valley/valley_hydro) "scv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/garage) "sdq" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/telecomm/lz1_valley) "sdu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "ser" = ( /obj/structure/surface/table, @@ -64190,25 +49758,16 @@ pixel_y = 6 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northwest, /area/desert_dam/interior/dam_interior/garage) "sfK" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/garage) "shm" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/south_valley_dam) "sia" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/bar_valley_dam) "sjN" = ( /obj/structure/machinery/light{ @@ -64248,10 +49807,7 @@ /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "snD" = ( /obj/structure/desertdam/decals/road_edge{ @@ -64267,17 +49823,13 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "srf" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "ssy" = ( /obj/effect/decal/warning_stripes{ @@ -64290,9 +49842,7 @@ name = "\improper Research Hallway" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "svy" = ( /obj/effect/decal/warning_stripes{ @@ -64302,9 +49852,7 @@ /area/desert_dam/exterior/valley/south_valley_dam) "swg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "swK" = ( /obj/structure/shuttle/diagonal{ @@ -64321,23 +49869,30 @@ dir = 1 }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) +"sAm" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_two) +"sAZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"sCW" = ( +/obj/structure/largecrate/random/secure, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "sDf" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) "sEL" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/south_valley_dam) "sFe" = ( /obj/effect/decal/warning_stripes{ @@ -64386,14 +49941,10 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "sNn" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/telecomm/lz1_south) "sNQ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/telecomm/lz2_storage) "sNX" = ( /obj/structure/desertdam/decals/road_edge{ @@ -64403,7 +49954,7 @@ dir = 6 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "sOu" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/chem_dispenser/soda{ @@ -64411,46 +49962,45 @@ pixel_y = 32 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "sPL" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/east, /area/desert_dam/building/medical/primary_storage) "sPS" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/interior/caves/temple) +"sQE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) "sRl" = ( /obj/effect/landmark/nightmare{ insert_tag = "uppcrash" }, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_hydro) "sUe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "sUr" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"sUF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) "sWS" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -64490,18 +50040,13 @@ "sYU" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) "tai" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "taG" = ( /obj/structure/desertdam/decals/road_stop{ @@ -64512,10 +50057,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "taH" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_hydro) "tbb" = ( /obj/structure/desertdam/decals/road_edge, @@ -64528,9 +50070,7 @@ "tdf" = ( /obj/structure/surface/table, /obj/item/folder/yellow, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) "teR" = ( /obj/structure/bed/chair/comfy/beige{ @@ -64541,10 +50081,7 @@ "thd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) "thp" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -64565,12 +50102,10 @@ icon_state = "road_edge_decal3" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "tni" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "tnu" = ( /obj/structure/desertdam/decals/road_edge{ @@ -64590,9 +50125,7 @@ /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) "tsL" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/telecomm/lz2_storage) "tuA" = ( /obj/structure/closet/secure_closet/bar, @@ -64603,11 +50136,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"txr" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/landing_pad_one) "txD" = ( /obj/structure/toilet{ dir = 8 @@ -64616,10 +50149,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) "tyc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -64628,9 +50158,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "tAs" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_telecoms) "tAt" = ( /obj/effect/decal/warning_stripes{ @@ -64645,9 +50173,7 @@ "tAG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "tBD" = ( /obj/structure/desertdam/decals/road_edge{ @@ -64658,9 +50184,7 @@ "tCn" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "tEn" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -64669,16 +50193,12 @@ name = "\improper Checkpoint Lock" }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "tFi" = ( /obj/effect/decal/sand_overlay/sand2, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/interior/caves/central_caves) "tFG" = ( /obj/structure/machinery/light{ @@ -64691,44 +50211,32 @@ /obj/effect/spawner/random/tool{ pixel_x = -6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) "tFS" = ( /obj/effect/decal/remains/human, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) "tKQ" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) "tKS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) "tLo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/bar_valley_dam) "tLQ" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) "tMi" = ( /obj/effect/decal/cleanable/dirt, @@ -64741,10 +50249,7 @@ }, /area/desert_dam/building/mining/workshop) "tOj" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/telecomm/lz1_xenoflora) "tPP" = ( /obj/structure/platform, @@ -64761,24 +50266,15 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "tUF" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) "tVX" = ( /obj/structure/sink, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "tXS" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/south_valley_dam) "tYS" = ( /obj/structure/surface/rack, @@ -64792,15 +50288,22 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"ucS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "uez" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/garage) "ueS" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/telecomm/lz1_south) "ueZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -64810,24 +50313,21 @@ /area/desert_dam/exterior/valley/south_valley_dam) "ufP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_crashsite) "ufW" = ( /turf/closed/wall/mineral/sandstone/runed, /area/desert_dam/exterior/rock) "uhf" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/interior/caves/temple) +"uic" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "uis" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) "uiH" = ( /obj/structure/machinery/colony_floodlight, @@ -64836,10 +50336,7 @@ "ujl" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "ukQ" = ( /obj/structure/machinery/light{ @@ -64847,26 +50344,17 @@ }, /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/garage) "ulg" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/telecomm/lz2_storage) "ulm" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 2 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/desert_dam/interior/dam_interior/garage) "uml" = ( /obj/effect/decal/warning_stripes{ @@ -64874,14 +50362,21 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"urC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "uso" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/weapon/broken_bottle, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "ute" = ( /obj/structure/desertdam/decals/road_stop{ @@ -64904,31 +50399,21 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) "uxs" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "uyn" = ( /obj/structure/surface/rack, /turf/open/floor/plating, /area/desert_dam/building/cafeteria/backroom) "uzL" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/telecomm/lz1_valley) "uAo" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_hydro) "uBP" = ( /obj/structure/surface/rack, @@ -64951,10 +50436,14 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) +"uHx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "uHT" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, @@ -64962,11 +50451,12 @@ "uIC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) +"uJl" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "uKo" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -64977,17 +50467,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/south_tunnel) "uMk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "uMr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -64995,21 +50481,21 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"uME" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "uMG" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/south_valley_dam) "uMZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) "uNF" = ( /obj/effect/decal/sand_overlay/sand1/corner1, @@ -65022,35 +50508,37 @@ dir = 4 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) "uRx" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/desert_dam/interior/dam_interior/tech_storage) "uRz" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"uSv" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_two) "uTo" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "uVm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "uVK" = ( /obj/item/tool/pickaxe, /obj/effect/decal/remains/human, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) +"uWt" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/exterior/landing_pad_two) "uWT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -65060,9 +50548,7 @@ "uXk" = ( /obj/effect/decal/sand_overlay/sand2, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) "uYD" = ( /obj/effect/decal/warning_stripes{ @@ -65072,12 +50558,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"uZr" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_one) "vfr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/interior/caves/central_caves) "vgm" = ( /obj/effect/decal/warning_stripes{ @@ -65087,18 +50573,12 @@ /area/desert_dam/exterior/valley/south_valley_dam) "vhs" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southwest, /area/desert_dam/interior/dam_interior/lobby) "vhA" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "vir" = ( /obj/effect/decal/warning_stripes{ @@ -65107,15 +50587,16 @@ /obj/effect/landmark/nightmare{ insert_tag = "shipgone_northlz" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) "viV" = ( /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"vjO" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "vnf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -65125,19 +50606,14 @@ /area/desert_dam/exterior/valley/valley_hydro) "vph" = ( /obj/structure/tunnel, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/south_valley_dam) "vpn" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, /obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_two) "vpz" = ( /obj/effect/decal/cleanable/dirt, @@ -65149,9 +50625,7 @@ /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "vqt" = ( /obj/effect/decal/cleanable/dirt, @@ -65166,10 +50640,7 @@ /area/desert_dam/exterior/valley/valley_labs) "vqS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop_foyer) "vte" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -65177,9 +50648,7 @@ /area/desert_dam/interior/caves/central_caves) "vud" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "vuu" = ( /obj/structure/machinery/colony_floodlight, @@ -65194,14 +50663,10 @@ /area/desert_dam/exterior/valley/valley_telecoms) "vxt" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) "vzj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_labs) "vzp" = ( /obj/effect/decal/warning_stripes{ @@ -65225,9 +50690,7 @@ "vAN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) "vBJ" = ( /obj/structure/desertdam/decals/road_edge, @@ -65237,9 +50700,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "vCE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_labs) "vDJ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -65254,15 +50715,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "vEW" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/telecomm/lz2_storage) +"vGu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "vHj" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -65273,9 +50736,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "vHx" = ( /obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_civilian) "vHQ" = ( /turf/open/gm/empty, @@ -65318,15 +50779,10 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_one) "vSF" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/telecomm/lz2_storage) "vSH" = ( /obj/effect/decal/sand_overlay/sand1, @@ -65334,10 +50790,11 @@ /area/desert_dam/exterior/valley/valley_crashsite) "vSV" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/bar_valley_dam) +"vTA" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_two) "vTR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -65355,9 +50812,7 @@ "vYZ" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/drill, -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/temple) "wav" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -65374,9 +50829,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "wbv" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_crashsite) "wcc" = ( /obj/effect/decal/warning_stripes{ @@ -65392,48 +50845,37 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "wgv" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) "wiF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/garage) "wiI" = ( /obj/structure/largecrate/random/barrel/blue, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/desert_dam/interior/dam_interior/garage) "wjC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "wnE" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) "woy" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/garage) +"wpr" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) "wpW" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, @@ -65451,10 +50893,7 @@ /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/desert_dam/interior/dam_interior/garage) "wrl" = ( /obj/effect/landmark/nightmare{ @@ -65466,9 +50905,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/dam_interior/garage) "wta" = ( /obj/structure/bed/chair{ @@ -65478,15 +50915,18 @@ /area/desert_dam/interior/dam_interior/hanger) "wud" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/desert_dam/interior/dam_interior/garage) "wuC" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"wuV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "wya" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -65494,9 +50934,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "wyo" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/interior/caves/temple) "wyR" = ( /obj/effect/decal/warning_stripes{ @@ -65519,12 +50957,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"wDC" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"wEy" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_one) "wFv" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/office1) "wIi" = ( /obj/structure/prop/dam/boulder/boulder2, @@ -65535,18 +50977,14 @@ /obj/item/ammo_magazine/shotgun/incendiary, /obj/item/ammo_magazine/shotgun/incendiary, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "wIr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "wLq" = ( /obj/structure/bed/chair{ @@ -65555,57 +50993,42 @@ /turf/open/shuttle/can_surgery/red, /area/desert_dam/interior/dam_interior/hanger) "wLI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/desert_dam/exterior/telecomm/lz1_south) "wLV" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "wMw" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) "wOO" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) "wPb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "wQM" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "wQS" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) "wQZ" = ( /obj/structure/flora/grass/tallgrass/desert, @@ -65615,9 +51038,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/landing_pad_two) "wRi" = ( /obj/effect/decal/cleanable/dirt, @@ -65628,9 +51049,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) "wRX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) "wTP" = ( /obj/structure/closet/crate, @@ -65646,9 +51065,7 @@ amount = 50 }, /obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) "wYO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -65658,10 +51075,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "wZM" = ( /obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_labs) "xab" = ( /obj/structure/machinery/recharge_station, @@ -65682,6 +51096,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"xbA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) "xcG" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -65721,10 +51141,7 @@ "xjb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) "xjY" = ( /obj/effect/decal/warning_stripes{ @@ -65739,9 +51156,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) "xkh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -65752,9 +51167,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "xkK" = ( /obj/structure/machinery/power/apc{ @@ -65768,9 +51181,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "xlE" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -65780,22 +51191,15 @@ unacidable = 0 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "xmH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, +/turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) "xof" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) "xoL" = ( /obj/effect/decal/warning_stripes{ @@ -65821,10 +51225,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "xrx" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_northwest) "xss" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -65832,19 +51233,14 @@ id = null; name = "\improper Elevator Lock" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/shuttle/trijent_shuttle/lz1) "xsQ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) "xsS" = ( /obj/structure/desertdam/decals/road_edge{ @@ -65854,51 +51250,36 @@ /area/desert_dam/exterior/valley/south_valley_dam) "xuS" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) "xvX" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) "xxv" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) "xxQ" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/telecomm/lz1_valley) "xzc" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) "xzm" = ( /obj/effect/landmark/nightmare{ insert_tag = "green-new-bridge" }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "xBM" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, +/turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/temple) "xCM" = ( /obj/effect/landmark/static_comms/net_two, @@ -65910,15 +51291,10 @@ /area/desert_dam/exterior/valley/valley_crashsite) "xEP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/interior/lab_northeast/east_lab_lobby) "xFk" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_hydro) "xFA" = ( /obj/effect/decal/sand_overlay/sand1, @@ -65939,10 +51315,7 @@ name = "\improper Garage" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "xIC" = ( /turf/open/desert/dirt, @@ -65959,10 +51332,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) "xLS" = ( /obj/structure/flora/grass/desert/lightgrass_5, @@ -65980,14 +51350,18 @@ /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_one) "xOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) +"xOm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "xOK" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/disposalpipe/segment, @@ -66003,47 +51377,40 @@ /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/southwest) "xRP" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) "xTH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) +"xUS" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_two) "xUU" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) +"xWj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) "xYb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/building/mining/workshop) "xYc" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, +/turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/central) "xZE" = ( /obj/structure/desertdam/decals/road_edge{ @@ -66056,9 +51423,7 @@ /area/desert_dam/exterior/valley/valley_wilderness) "yaA" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, +/turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_telecoms) "ybA" = ( /obj/structure/desertdam/decals/road_edge{ @@ -66066,6 +51431,13 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"ybW" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "ydw" = ( /obj/structure/window/framed/hangar/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -66076,9 +51448,7 @@ /area/desert_dam/exterior/telecomm/lz2_tcomms) "yfp" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/telecomm/lz2_storage) "yfq" = ( /obj/structure/desertdam/decals/road_edge{ @@ -66098,9 +51468,7 @@ unacidable = 0 }, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "ylf" = ( /obj/structure/desertdam/decals/road_edge{ @@ -66124,16 +51492,14 @@ /area/desert_dam/interior/dam_interior/south_tunnel) "ylo" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/hydroponics/hydroponics_breakroom) "ylS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) +/area/desert_dam/exterior/landing_pad_two) "ylT" = ( /obj/structure/machinery/light{ dir = 4 @@ -66143,10 +51509,7 @@ /obj/item/hardpoint/locomotion/van_wheels{ unacidable = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/garage) (1,1,1) = {" @@ -68236,7 +53599,7 @@ dTs dTs dTs dTs -cuH +lzs dTs dTs dTs @@ -68244,7 +53607,7 @@ dTs dTs dTs dTs -cuH +lzs dTs dTs dTs @@ -68468,18 +53831,18 @@ dTs dTs dTs dTs -csA -crq -csA -crq +gLg +sav +gLg +sav dTs dTs dTs -cwB -cwB -crq -csA -crq +xUS +xUS +sav +gLg +sav dTs dTs dTs @@ -68695,27 +54058,27 @@ dTs dTs dTs dTs -csA -cwB -crq +gLg +xUS +sav dTs dTs -csA -cwB -csD -crr -csD -crr -cwB -cwB -csD -doE -doE -crr -csD -crr -crq -cuH +gLg +xUS +vTA +erF +vTA +erF +xUS +xUS +vTA +lIt +lIt +erF +vTA +erF +sav +lzs dTs dTs dTs @@ -68922,35 +54285,35 @@ dTs dTs dTs dTs -csA -cwB -crq +gLg +xUS +sav dTs dTs -csA -cwB -csD -doE -cxV -csB -crr -csD -doE -doE -doE +gLg +xUS +vTA +lIt +sAm +htc +erF +vTA +lIt +lIt +lIt aMM -doE -doE -doE -doE -doE -doE -doE -doE -doE +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt cGR -cwB -crq +xUS +sav dTs dTs dTs @@ -69154,37 +54517,37 @@ dTs dTs dTs dTs -cuH -csA -csD -doE -crr -cwB -crq -csB -doE -doE -doE +lzs +gLg +vTA +lIt +erF +xUS +sav +htc +lIt +lIt +lIt cGR -csD -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -cxV +vTA +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +sAm dTs dTs dTs @@ -69387,39 +54750,39 @@ cUf cxV dTs dTs -cwB -cwB -csD -doE -doE -doE -doE -crr -csD -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -cuL -crw -crw -cuz -doE -doE -crr -crq +xUS +xUS +vTA +lIt +lIt +lIt +lIt +erF +vTA +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +lIt +urC +ybW +ybW +mDd +lIt +lIt +erF +sav dTs dTs dTs @@ -69432,17 +54795,17 @@ dTs dTs dTs dTs -air +wEy dTs dTs -air -amP -apt -ahu +wEy +oMz +uZr +ogc dTs dTs dTs -apt +uZr dTs dTs dTs @@ -69462,9 +54825,9 @@ dTs dTs dTs dTs -ahu -air -apt +ogc +wEy +uZr dTs dTs dTs @@ -69620,7 +54983,7 @@ cCO ctK dTs dTs -cwz +iHF aKY cMq cGu @@ -69647,14 +55010,14 @@ cGu cMq cQn lIK -crx -crx +dws +dws tlh -doE -doE +lIt +lIt dgG -cxV -cuH +sAm +lzs dTs dTs acu @@ -69665,25 +55028,25 @@ dTs dTs dTs dTs -ahu -ais -apu +ogc +pRD +qLE aba abj cSZ abN -apt -ahu -air -aiY -apu -apt -ahu +uZr +ogc +wEy +moq +qLE +uZr +ogc dTs dTs dTs dTs -air +wEy dTs dTs dTs @@ -69695,14 +55058,14 @@ dTs dTs dTs dTs -air -amP -aiY -axZ -ahu +wEy +oMz +moq +ndF +ogc dTs -amP -apt +oMz +uZr dTs dTs dTs @@ -69854,7 +55217,7 @@ cCU cAa dTs dTs -csD +vTA alh cMC aav @@ -69880,14 +55243,14 @@ cGG cDL cMC cgh -cUl -cvJ -crz +kPo +qkz +hjz tlh -doE -doE -doE -cxV +lIt +lIt +lIt +sAm dTs dTs dTs @@ -69897,30 +55260,30 @@ acu acu dTs dTs -ahu -ahu -air -aiY -aqz -cQf -nzB -nzB +ogc +ogc +wEy +moq +uJl +xWj +mBO +mBO cSZ aTC -amP -aiY -aiZ -aiZ -apu -apt -ahu +oMz +moq +mZb +mZb +qLE +uZr +ogc dTs dTs -air -aiY -apu -amP -apt +wEy +moq +qLE +oMz +uZr dTs dTs dTs @@ -69929,15 +55292,15 @@ dTs dTs dTs dTs -aiY -apc +moq +oJT apP -apu -apt -ait -aja -apu -apt +qLE +uZr +txr +ign +qLE +uZr dTs dTs dTs @@ -70114,15 +55477,15 @@ tcB cDY cMD cBS -cUl -crx -crx +kPo +dws +dws tlh -doE -doE -doE -crr -crq +lIt +lIt +lIt +erF +sav dTs dTs acu @@ -70130,52 +55493,52 @@ acu (18,1,1) = {" acu dTs -air -amP -amP -aiY -aiZ -aiZ +wEy +oMz +oMz +moq +mZb +mZb cQL -cRc -nzB +dja +mBO dvW apP -aiZ -aiZ -aiZ -aiZ -aiZ -apu -apt -air -amP -aiY -aiZ -aJm -aiZ -apu -amP -apt -ahu +mZb +mZb +mZb +mZb +mZb +qLE +uZr +wEy +oMz +moq +mZb +qIC +mZb +qLE +oMz +uZr +ogc dTs dTs -aiY -axZ -ait -aja -aiZ -apc -aiZ -apu -amP -aiY -aiZ -apu -apt -ahu -air -apt +moq +ndF +txr +ign +mZb +oJT +mZb +qLE +oMz +moq +mZb +qLE +uZr +ogc +wEy +uZr dTs dTs dTs @@ -70348,69 +55711,69 @@ cDY cDY cML cBS -cUl -crx -crx +kPo +dws +dws tlh -doE -cuO -doE -doE -cxV -cuH +lIt +uic +lIt +lIt +sAm +lzs dTs acu "} (19,1,1) = {" acu dTs -ais -aiZ -aJm -aiZ -aiZ +pRD +mZb +qIC +mZb +mZb aQS -anF +vjO aHW cQL -dvZ -aqz -aiZ -aiZ -aiZ +lZP +uJl +mZb +mZb +mZb aQS -aqz -aiZ -apu -aiY -aiZ -aiZ -aiZ -aiZ -aiZ -aiZ +uJl +mZb +qLE +moq +mZb +mZb +mZb +mZb +mZb +mZb aQS -apu -amP -aiY -aiZ -aiZ -apu -amP -aiY -aiZ -aiZ +qLE +oMz +moq +mZb +mZb +qLE +oMz +moq +mZb +mZb ben -aiZ -aiZ -aiZ -aiZ -aiZ +mZb +mZb +mZb +mZb +mZb bge -amP -aiY -apu -amP +oMz +moq +qLE +oMz bht bht bht @@ -70582,15 +55945,15 @@ cDY cDY cNb cRB -cUl -cvJ -crz +kPo +qkz +hjz tlh -doE -doE -doE -doE -cxV +lIt +lIt +lIt +lIt +sAm dTs dTs acu @@ -70598,9 +55961,9 @@ acu (20,1,1) = {" acu dTs -ais -aiZ -aiZ +pRD +mZb +mZb aPA aQe aQT @@ -70816,14 +56179,14 @@ cDY cDY cNh djl -daD -crx -crx +sAZ +dws +dws tlh -doE -doE -csE -cxU +lIt +lIt +uME +hjW dTs dTs dTs @@ -70832,9 +56195,9 @@ acu (21,1,1) = {" acu dTs -ait -aja -aiZ +txr +ign +mZb aPB aQf aQU @@ -71024,7 +56387,7 @@ cRM cRM dFn doE -cCY +doE cDb abS cDY @@ -71050,15 +56413,15 @@ cDY cDY cNi dws -crx -crx -crx +dws +dws +dws tlh -crv -drL -drO -crr -crq +onm +hTf +xOm +erF +sav dTs dTs acu @@ -71067,8 +56430,8 @@ acu acu dTs dTs -ait -aja +txr +ign aPB aQg aQV @@ -71284,15 +56647,15 @@ cDY cDY cNx dws -crx -cvJ -crz +dws +qkz +hjz tlh fSc -dsE -drT -cru -cxV +fYz +niN +hCY +sAm dTs dTs acu @@ -71302,7 +56665,7 @@ acu dTs dTs dTs -ais +pRD aPB aQg aQV @@ -71518,15 +56881,15 @@ cDY cDY cPI dws -crx -crx -crx +dws +dws +dws tlh -drL -uTo -drN -doE -crr +hTf +muj +bFC +lIt +erF dTs dTs acu @@ -71536,7 +56899,7 @@ acu dTs dTs dTs -ais +pRD aPB aQg aQV @@ -71752,15 +57115,15 @@ cDY cDY cPW djk -cUk -crx -crx +eRX +dws +dws tlh -duc -drN -cAd -doE -cxU +qHh +bFC +hVV +lIt +hjW czA dTs acu @@ -71770,7 +57133,7 @@ acu dTs dTs dTs -ais +pRD aPB aQg aQV @@ -71986,14 +57349,14 @@ cDY cDY cMD cRE -cUl -cvJ -crz +kPo +qkz +hjz tlh -csE -cxT -doE -doE +uME +jcb +lIt +lIt dTs dTs dTs @@ -72004,7 +57367,7 @@ acu dTs dTs dTs -ais +pRD aPB aQg aQV @@ -72220,15 +57583,15 @@ cDY cDY cML cBS -cUl -crx -crx +kPo +dws +dws tlh -cru -csE -doE -doE -cxV +hCY +uME +lIt +lIt +sAm dTs dTs acu @@ -72237,8 +57600,8 @@ acu acu dTs dTs -air -aiY +wEy +moq aPB aQh aQW @@ -72454,15 +57817,15 @@ tcB cDY cNb cBS -cUl -crx -crx +kPo +dws +dws tlh -drL -drO -doE -doE -cxV +hTf +xOm +lIt +lIt +sAm dTs dTs acu @@ -72472,7 +57835,7 @@ acu dTs dTs dDB -aiZ +mZb aPC aQi aQX @@ -72688,15 +58051,15 @@ cFP cLL cMC cgh -cUl -cvJ -crz +kPo +qkz +hjz tlh -dsE -drT -cru -doE -cxV +fYz +niN +hCY +lIt +sAm dTs dTs acu @@ -72705,9 +58068,9 @@ acu acu dTs dTs -ais -aiZ -aiZ +pRD +mZb +mZb aQj aQY aQZ @@ -72922,14 +58285,14 @@ cDX cDX cES cRB -cUl -crx -crx +kPo +dws +dws tlh -duc -drN -csE -cxU +qHh +bFC +uME +hjW dTs dTs dTs @@ -72939,9 +58302,9 @@ acu acu tZQ aad -aiY -aiZ -aiZ +moq +mZb +mZb aQj aQZ aQZ @@ -73132,38 +58495,38 @@ cEa crw crw poM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -daD -crx -crx +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +sAZ +dws +dws tlh -csE -cAd -doE -cxV +uME +hVV +lIt +sAm dTs dTs dTs @@ -73177,15 +58540,15 @@ aqf aqf aqf aqT -auy -auy -auy -aPJ -aql -ara -asc -auy -arZ +iKp +iKp +iKp +ekN +aSY +aQg +mjR +iKp +xbA aLa aWh aWh @@ -73366,38 +58729,38 @@ crx crx crx ylS -crx -crx +dws +dws ylS -crx -crx +dws +dws ylS -dvo -dvo +bhp +bhp ylS -crx -crx +dws +dws ylS -dvo -dvo +bhp +bhp cXA -crx -crx +dws +dws ylS -crx -crx +dws +dws ylS -crx -crx +dws +dws ylS -crx -cvJ -crz +dws +qkz +hjz tlh -doE -cuO +lIt +uic aPK -cxV +sAm dTs dTs dTs @@ -73405,21 +58768,21 @@ acu "} (32,1,1) = {" acu -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aqg -agV -aqg -asa +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQV +beT +aQV +aUi qoJ aWh aWh @@ -73599,39 +58962,39 @@ crx crx crx crx -cvG -crx -crx -cvG -crx -crx -cvG -crx -dvo -cKL -dvo -dvo -cKL -dvo -crx -cvG -crx -crx -cvG -crx -crx -cvG -crx -crx -cvG -crx -crx -crx +vGu +dws +dws +vGu +dws +dws +vGu +dws +bhp +mfH +bhp +bhp +mfH +bhp +dws +vGu +dws +dws +vGu +dws +dws +vGu +dws +dws +vGu +dws +dws +dws tlh -csE -doE -doE -cxV +uME +lIt +lIt +sAm dTs dTs dTs @@ -73639,21 +59002,21 @@ acu "} (33,1,1) = {" acu -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aqg -agV -aqg -asa +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQV +beT +aQV +aUi abQ aWh aWh @@ -73833,38 +59196,38 @@ cuJ cuJ cuJ cuJ -cuJ +jqU cnA -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cUk -crx -dvo +djk +djk +djk +djk +djk +djk +eRX +dws +bhp cQc -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ +djk +djk +djk +djk +djk +djk +djk +djk +djk +djk eCk -cuJ -cuJ -cuJ -cuJ -cuJ +jqU +jqU +jqU +jqU +jqU sNX -doE -doE -doE +lIt +lIt +lIt dTs dTs dTs @@ -73873,21 +59236,21 @@ acu "} (34,1,1) = {" acu -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aSc -aIJ -aql -ara -agV -aqg -asa +eZC +eZC +eZC +eZC +eZC +eZC +eZC +eZC +ucS +uHx +aSY +aQg +beT +aQV +aUi cEc aWh aWh @@ -74086,18 +59449,18 @@ cNo bvA daw deU -cQm -cQm +uSv +uSv aMT aNx -cKp -doE -doE -doE -doE -doE -doE -doE +uWt +lIt +lIt +lIt +lIt +lIt +lIt +lIt dTs dTs dTs @@ -74110,18 +59473,18 @@ acu tZQ tZQ dTs -ars -aja -aiZ -aiZ -aFu +cSn +ign +mZb +mZb +wDC aSd -apz -aqg -aqg -aqg -aqg -asa +aSx +aQV +aQV +aQV +aQV +aUi aLa aWh aWh @@ -74318,20 +59681,20 @@ cVH cVH cXD bvA -daU +cDY deV -cQm -cQm +uSv +uSv aMU aNz -cKr -doE -doE -doE -doE -doE +saQ +lIt +lIt +lIt +lIt +lIt dTs -doE +lIt dTs dTs dTs @@ -74345,17 +59708,17 @@ dTs dTs dTs dTs -ait -aja -aiZ -aiZ -aIa -apz -aqg -aqg -agV -aqg -asa +txr +ign +mZb +mZb +aPB +aSx +aQV +aQV +beT +aQV +aUi qoJ aWh aWh @@ -74552,17 +59915,17 @@ cVH cVH cXN bvA -daU +cDY aMJ -cQm -cQm +uSv +uSv aNe aNz -cKr -doE -doE -doE -doE +saQ +lIt +lIt +lIt +lIt dTs dTs dTs @@ -74580,16 +59943,16 @@ dTs dTs dTs dTs -ais -aiZ -aiZ -aIa -apz -aql -ara -agV -aqg -asa +pRD +mZb +mZb +aPB +aSx +aSY +aQg +beT +aQV +aUi abQ aWh aWh @@ -74788,14 +60151,14 @@ aMw aMI dbc aMJ -cQm -cQm +uSv +uSv aNm aNA -cKr -doE -doE -doE +saQ +lIt +lIt +lIt dTs dTs dTs @@ -74814,16 +60177,16 @@ dTs dTs dTs dTs -ait -aja -aiZ -aIa -apz -aqg -aqg -agV -aqg -asa +txr +ign +mZb +aPB +aSx +aQV +aQV +beT +aQV +aUi cEc aWh aWh @@ -75027,8 +60390,8 @@ bvA ddJ bvA bvA -doE -doE +lIt +lIt dTs dTs dTs @@ -75049,14 +60412,14 @@ dTs dTs dTs dTs -ais +pRD abb -aIa -apz -aqg -aqg -asd -auz +aPB +aSx +aQV +aQV +wuV +eRL aaA aLa aWh @@ -75283,13 +60646,13 @@ dTs dTs dTs dTs -ait -aja -aIa -apz -aql -ara -asa +txr +ign +aPB +aSx +aSY +aQg +aUi aUD aVg acJ @@ -75516,14 +60879,14 @@ dTs dTs dTs dTs -ahu -ahu -ais -aIa -apz -aqg -aqg -asa +ogc +ogc +pRD +aPB +aSx +aQV +aQV +aUi aUD aVh aQY @@ -75749,15 +61112,15 @@ dTs dTs dTs dTs -ahu -ahu -air -aiY -aIa -apz -aqg -aqg -asa +ogc +ogc +wEy +moq +aPB +aSx +aQV +aQV +aUi aUE aVj aQX @@ -75987,38 +61350,38 @@ aOc aOc aOc aOc -aoD -apz -aql -ara -asc -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy +pzk +aSx +aSY +aQg +mjR +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp aQg aQV aQV @@ -76221,38 +61584,38 @@ aPD byX iqK aOc -aoE -apz -aqg -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg +aSa +aSx +aQV +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV aQg aQV aSY @@ -76455,38 +61818,38 @@ aPD aPD iqK aau -aoE -apz -aqg -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg +aSa +aSx +aQV +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV aQg aQV aSY @@ -76689,38 +62052,38 @@ aPE pDd aPE aau -aoE -aIK -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -aIJ -aqg -aqg -asd -auz -auz -auz -auz +aSa +eZN +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +eRL +uHx +aQV +aQV +wuV +eRL +eRL +eRL +eRL aQg aQV aQV @@ -76923,38 +62286,38 @@ rFz aPF aRc aOc -akz -aNp -aNp -aNp -aNp -alo -alo -alo -alo -alo -alo -alo -alo -alo -aNp -aNp -alo -alo -aNp -aNp -aNp -aNp -aNp -apO -apA +aUE +aQX +aQX +aQX +aQX +aVg +aVg +aVg +aVg +aVg +aVg +aVg +aVg +aVg +aQX +aQX +aVg +aVg +aQX +aQX +aQX +aQX +aQX +aRZ +gBQ dez -aNL +pHs baW -aky -aNp -aNp -apO +aUC +aQX +aQX +aRZ bfn aQW aQW @@ -77170,24 +62533,24 @@ aVk adq aeg aVk -aVH -aoe +bhh +sUF afy -apa -aoG +aUD +aVh anh -aoe -aoe -aoe -aoe -bco +sUF +sUF +sUF +sUF +sQE bcC -aNL -aNL +pHs +pHs baW -aoE +aSa anh -aoe +sUF aUH bfo bfo @@ -77396,41 +62759,41 @@ rFz rFz bzU aOc -bej -bfp -bej -aiZ -acW -aiZ -aiZ -aiZ +iZY +saS +iZY +mZb +sCW +mZb +mZb +mZb aeY -aiZ -ajS -bvh -avC -aDe -beD -aiZ -aiZ -aiZ -aIa -apz -aql -ara -asa -aoE -aDe -aiZ -aqy -aja -aiZ -aqy -ars -aja -aiZ -aiZ -aqy +mZb +aQj +qDl +aVG +wpr +qlr +mZb +mZb +mZb +aPB +aSx +aSY +aQg +aUi +aSa +wpr +mZb +nnv +ign +mZb +nnv +cSn +ign +mZb +mZb +nnv dTs dTs dTs @@ -77630,8 +62993,8 @@ rFz rFz aRc aau -aja -bej +ign +iZY aVI aVI aVI @@ -77655,15 +63018,15 @@ aqg asa bdV bep -aqy -axY -ait -ars +nnv +fqj +txr +cSn dTs dTs -ait -ars -ars +txr +cSn +cSn dTs dTs dTs @@ -77864,8 +63227,8 @@ aPF aPF aRc aau -ait -aja +txr +ign aVI azf aYu @@ -77889,14 +63252,14 @@ aqg asa bdW aiZ -axZ -ahu +ndF +ogc dTs dTs dTs dTs dTs -ahu +ogc dTs dTs dTs @@ -78098,8 +63461,8 @@ aRD aTg aTh aOc -ahu -ait +ogc +txr aVI aNs aWl @@ -88107,11 +73470,11 @@ lyB fdk hOK dhs -dpv -dqe +dpw +dqf dqO -dqe -dqe +dqf +dqf edO dus dVT @@ -92516,8 +77879,8 @@ dTs dTs dTs dTs -dTI -dTI +dTs +dTs cPL cTk cTO @@ -92750,8 +78113,8 @@ dTs dTs dTs dTs -dTI -dTI +dTs +dTs cPL cTl cTO @@ -92985,7 +78348,7 @@ dTs dTs dTs dTs -abt +dTs cPL cTm cTO diff --git a/maps/map_files/DesertDam/greenriver/newbridge.dmm b/maps/map_files/DesertDam/greenriver/newbridge.dmm index ea0c82fb1c32..df19de868c79 100644 --- a/maps/map_files/DesertDam/greenriver/newbridge.dmm +++ b/maps/map_files/DesertDam/greenriver/newbridge.dmm @@ -1,8 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) "ab" = ( /obj/structure/platform{ @@ -12,21 +10,14 @@ dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "ac" = ( /obj/structure/platform_decoration{ - icon_state = "platform_deco"; dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) "ad" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -40,24 +31,16 @@ /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "af" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_bridge) "ag" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_bridge) "ah" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 8 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) "ai" = ( /turf/open/desert/dirt, @@ -70,28 +53,18 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "al" = ( /obj/structure/platform_decoration{ - icon_state = "platform_deco"; dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) "am" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "an" = ( /obj/structure/platform{ @@ -101,56 +74,36 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "ao" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_bridge) "ap" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_bridge) "aq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 4 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) "ar" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 1 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) "as" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 1 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) "at" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "au" = ( /obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" + dir = 8 }, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, @@ -171,9 +124,7 @@ /area/desert_dam/exterior/river/riverside_east) "ax" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_east) "ay" = ( /obj/structure/platform{ @@ -190,29 +141,21 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aA" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - icon_state = "shore_edge1"; - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "aB" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aC" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -230,31 +173,19 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "aF" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_east) "aG" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aH" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - icon_state = "shore1"; - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/river/riverside_east) "aI" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -269,17 +200,11 @@ /area/desert_dam/exterior/river/riverside_east) "aK" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) "aL" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_east) "aM" = ( /obj/effect/blocker/toxic_water/Group_2, @@ -346,39 +271,26 @@ /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "aY" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "aZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "ba" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "bb" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "bc" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bd" = ( /obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" + dir = 8 }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "be" = ( /obj/structure/stairs{ @@ -387,57 +299,40 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "bf" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "bg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "bh" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "bi" = ( /obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bj" = ( /obj/structure/platform_decoration{ - icon_state = "platform_deco"; dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bk" = ( /obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bl" = ( /obj/structure/stairs{ dir = 8 }, /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "bm" = ( /obj/structure/platform, @@ -445,13 +340,9 @@ /area/desert_dam/exterior/valley/valley_medical) "bn" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "bo" = ( /obj/structure/stairs{ @@ -460,9 +351,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "bp" = ( /obj/structure/stairs{ @@ -471,9 +360,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) (1,1,1) = {" diff --git a/maps/map_files/DesertDam/purpleriver/newbridge.dmm b/maps/map_files/DesertDam/purpleriver/newbridge.dmm index d6de4499493d..7cc7eac77db1 100644 --- a/maps/map_files/DesertDam/purpleriver/newbridge.dmm +++ b/maps/map_files/DesertDam/purpleriver/newbridge.dmm @@ -1,35 +1,25 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "ab" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 8 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "ac" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) "ad" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" + dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "ae" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" + dir = 8 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) @@ -45,72 +35,48 @@ /area/desert_dam/exterior/river/riverside_south) "ag" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 4 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "ah" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "ai" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" + dir = 1 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "aj" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" + dir = 1 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "ak" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" + dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "al" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "am" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" + dir = 8 }, /obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "an" = ( /obj/structure/platform{ @@ -120,55 +86,40 @@ /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "ao" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "ap" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) "aq" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "ar" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) "as" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "at" = ( /obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "au" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "av" = ( /obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" + dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, @@ -178,38 +129,26 @@ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "ax" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - icon_state = "shore_edge1"; - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "ay" = ( /obj/structure/platform_decoration{ - icon_state = "platform_deco"; dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "az" = ( /obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" + dir = 8 }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aA" = ( /obj/structure/platform{ @@ -218,9 +157,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aB" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -228,44 +165,28 @@ /area/desert_dam/exterior/river/riverside_south) "aC" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - icon_state = "shore1"; - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) "aD" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aE" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aF" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "aG" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "aH" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - icon_state = "shore_edge1"; - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "aI" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -280,10 +201,7 @@ /area/desert_dam/exterior/river/riverside_south) "aL" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "aM" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -298,10 +216,7 @@ "aO" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "aP" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -332,41 +247,26 @@ /area/desert_dam/exterior/river/riverside_south) "aU" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - icon_state = "shallow_edge"; - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/covered/northeast, /area/desert_dam/exterior/river/riverside_south) "aV" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/river/riverside_south) "aW" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_medical) "aX" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_south) "aY" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/river/riverside_south) "aZ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_medical) "ba" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -390,10 +290,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "bd" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -411,30 +308,21 @@ /area/desert_dam/exterior/river/riverside_south) "bf" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) "bg" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ dir = 4 }, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bh" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ dir = 4 }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bi" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -445,10 +333,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bk" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -465,10 +350,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bn" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -476,10 +358,7 @@ /area/desert_dam/exterior/river/riverside_south) "bo" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bp" = ( /obj/effect/blocker/toxic_water/Group_1, @@ -497,10 +376,7 @@ /area/desert_dam/exterior/river/riverside_south) "br" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bs" = ( /obj/structure/platform, @@ -525,28 +401,21 @@ /area/desert_dam/exterior/river/riverside_south) "bv" = ( /obj/structure/platform_decoration{ - icon_state = "platform_deco"; dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bw" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "by" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "bz" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "bA" = ( /obj/structure/platform{ diff --git a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm index 6c7e859826db..4ebaf4fbb798 100644 --- a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm +++ b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm @@ -1,9 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "av" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "aZ" = ( /obj/structure/prop/brazier, @@ -25,10 +23,7 @@ /area/desert_dam/interior/caves/temple) "bE" = ( /obj/structure/machinery/optable, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "bJ" = ( /obj/structure/surface/table/reinforced/prison{ @@ -76,10 +71,7 @@ /obj/item/tank/nitrogen{ pixel_x = 5 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "fX" = ( /obj/structure/stairs/perspective{ @@ -115,10 +107,7 @@ name = "ancient clan mask"; pixel_y = 20 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "iM" = ( /obj/structure/surface/table/reinforced/prison{ @@ -143,10 +132,7 @@ pixel_x = -1; pixel_y = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "ke" = ( /obj/structure/xenoautopsy/tank/larva, @@ -154,9 +140,7 @@ dir = 8; health = 80 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "kI" = ( /obj/structure/prop/brazier/torch, @@ -169,10 +153,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "mA" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "mB" = ( /turf/open/floor/sandstone/runed, @@ -186,22 +167,14 @@ desc = "A long-barreled heavy plasma weapon capable of leveling down an entire building. This one seems to be damaged beyond use."; name = "damaged plasma rifle" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "mY" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) "oq" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "oH" = ( /obj/structure/surface/rack, @@ -219,16 +192,10 @@ /obj/item/stack/medical/advanced/ointment/predator{ pixel_x = 5 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "oR" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "pC" = ( /obj/structure/showcase{ @@ -251,10 +218,7 @@ icon_state = "pred_mask12_ebony"; unacidable = 0 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "qv" = ( /obj/effect/decal/remains/xeno{ @@ -268,10 +232,7 @@ /area/desert_dam/interior/caves/central_caves) "qV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "re" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -304,25 +265,13 @@ name = "ancient katana"; unacidable = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "rI" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = -6 - }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = 4 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "td" = ( /turf/open/desert/rock, @@ -336,10 +285,7 @@ "tq" = ( /obj/structure/closet/coffin/predator, /obj/item/storage/large_holster/katana, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "uK" = ( /obj/structure/machinery/door/airlock/sandstone/runed{ @@ -353,9 +299,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "vb" = ( /obj/structure/stairs/perspective{ @@ -363,9 +307,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) "vY" = ( /obj/structure/surface/table/reinforced/prison{ @@ -419,10 +361,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "AU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Bm" = ( /obj/structure/surface/rack{ @@ -434,15 +373,10 @@ /obj/item/stack/sheet/mineral/platinum{ amount = 50 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "Co" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "Dc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -486,9 +420,7 @@ /area/desert_dam/interior/caves/temple) "GX" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "Hj" = ( /obj/structure/surface/rack{ @@ -500,10 +432,7 @@ name = "strange jelly" }, /obj/item/xeno_egg, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Ix" = ( /obj/structure/surface/rack{ @@ -512,10 +441,7 @@ }, /obj/item/tool/weldingtool, /obj/item/clothing/glasses/welding/superior, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "IV" = ( /obj/effect/decal/cleanable/cobweb{ @@ -539,10 +465,7 @@ desc = "A bizarre alien device used for trapping and killing prey."; name = "Alien Mine" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Jh" = ( /obj/structure/surface/table/reinforced/prison{ @@ -568,10 +491,7 @@ /area/desert_dam/interior/caves/temple) "JP" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "JU" = ( /obj/structure/platform/mineral/sandstone/runed, @@ -579,10 +499,7 @@ /area/desert_dam/interior/caves/temple) "JZ" = ( /obj/structure/machinery/autolathe/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "Kj" = ( /obj/structure/surface/table/reinforced/prison{ @@ -593,10 +510,7 @@ /area/desert_dam/interior/caves/temple) "KA" = ( /obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Li" = ( /turf/open/gm/river/desert/deep, @@ -618,10 +532,7 @@ /obj/item/tool/surgery/bonesetter/predatorbonesetter, /obj/item/tool/surgery/bonegel/predatorbonegel, /obj/item/tool/surgery/FixOVein/predatorFixOVein, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "MH" = ( /turf/closed/wall/mineral/sandstone/runed, @@ -653,9 +564,7 @@ dir = 8; health = 80 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "Ps" = ( /obj/structure/bed/chair/comfy/beige{ @@ -685,10 +594,7 @@ /obj/structure/machinery/door/window{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "SD" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, @@ -696,10 +602,7 @@ /area/desert_dam/interior/caves/temple) "TO" = ( /obj/structure/xenoautopsy, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "TU" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -714,10 +617,7 @@ dir = 4; name = "plasma power generator" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "Vz" = ( /turf/closed/wall/mineral/sandstone/runed{ @@ -726,10 +626,7 @@ /area/desert_dam/interior/caves/temple) "WM" = ( /obj/structure/curtain/red, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "WV" = ( /obj/structure/prop/brazier/torch, @@ -743,10 +640,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "ZI" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_crashsite) (1,1,1) = {" diff --git a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm index 497963d344e4..f6b5b1e368f2 100644 --- a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm +++ b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm @@ -3,47 +3,29 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "h" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "i" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/largecrate/supply/floodlights, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "j" = ( /obj/structure/powerloader_wreckage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "u" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "x" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "D" = ( /turf/template_noop, @@ -53,32 +35,20 @@ icon_state = "S" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) "K" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/template_noop) "L" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "O" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) "R" = ( /obj/item/fuel_cell{ @@ -99,10 +69,7 @@ /turf/template_noop, /area/template_noop) "Y" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/template_noop) "Z" = ( /obj/structure/largecrate/random/barrel, diff --git a/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm b/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm index 94258193f75b..3cdefd6579ad 100644 --- a/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm +++ b/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm @@ -5,7 +5,7 @@ pixel_y = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "bz" = ( /turf/closed/shuttle/ert{ @@ -27,9 +27,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "cp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "cG" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -48,14 +46,10 @@ "dN" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/effect/decal/cleanable/blood/oil, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "dP" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "eb" = ( /obj/effect/spawner/gibspawner/human, @@ -68,10 +62,7 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "eF" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_civilian) "fa" = ( /turf/closed/shuttle/ert{ @@ -82,15 +73,13 @@ "fg" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "fp" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "ft" = ( /turf/closed/wall, @@ -119,9 +108,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "hK" = ( /obj/structure/prop/invuln/fire{ @@ -154,28 +141,22 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "jN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) "jU" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "jX" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "kd" = ( /turf/closed/shuttle/ert{ @@ -186,9 +167,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "kV" = ( /obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "la" = ( /turf/closed/wall/rock/orange, @@ -205,28 +184,20 @@ /obj/item/explosive/grenade/high_explosive/upp, /obj/item/explosive/grenade/high_explosive/upp, /obj/item/explosive/grenade/high_explosive/upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "mt" = ( /obj/structure/machinery/light/double{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "mw" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_civilian) "mM" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_civilian) "mN" = ( /obj/structure/desertdam/decals/road_edge{ @@ -241,17 +212,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "nj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "nn" = ( /obj/structure/desertdam/decals/road_edge{ @@ -275,9 +242,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "nX" = ( /turf/open/desert/dirt, @@ -297,7 +262,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "oL" = ( /obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "oX" = ( /obj/structure/desertdam/decals/road_edge{ @@ -323,14 +288,10 @@ /obj/item/ammo_magazine/rifle/type71/ap, /obj/item/ammo_magazine/rifle/type71/ap, /obj/item/ammo_magazine/rifle/type71/ap, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "sl" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_civilian) "ss" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -383,9 +344,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "vz" = ( /obj/structure/closet/crate/ammo, @@ -401,9 +360,7 @@ /obj/item/ammo_magazine/rifle/type71, /obj/item/weapon/gun/rifle/type71, /obj/item/weapon/gun/rifle/type71, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "vJ" = ( /obj/structure/prop/invuln/fire, @@ -420,9 +377,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "xp" = ( /obj/structure/desertdam/decals/road_edge{ @@ -434,9 +389,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "xz" = ( /obj/structure/girder/displaced, @@ -469,9 +422,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "ym" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "yU" = ( /obj/structure/prop/invuln/fire{ @@ -487,9 +438,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "zE" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -501,9 +450,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "zO" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -512,23 +459,16 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "As" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "AW" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_civilian) "Bk" = ( /turf/closed/shuttle/ert{ @@ -547,9 +487,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "BM" = ( /obj/structure/flora/grass/desert/lightgrass_3, @@ -559,9 +497,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "BY" = ( /obj/structure/desertdam/decals/road_edge{ @@ -580,15 +516,11 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "CL" = ( /obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "Dd" = ( /obj/structure/prop/invuln/fire{ @@ -604,9 +536,7 @@ "DO" = ( /obj/structure/flora/grass/desert/lightgrass_9, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Eh" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -615,9 +545,7 @@ "EF" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "EL" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -637,9 +565,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Gt" = ( /turf/closed/shuttle/ert{ @@ -656,10 +582,7 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "Ho" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_civilian) "Hs" = ( /obj/structure/prop/invuln/fire{ @@ -702,9 +625,7 @@ dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Jy" = ( /obj/structure/prop/invuln/fire, @@ -736,18 +657,13 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "KC" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_civilian) "KX" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) "Lc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -777,9 +693,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) "LD" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -791,17 +705,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Mp" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "MM" = ( /turf/closed/shuttle/ert{ @@ -820,9 +730,7 @@ /obj/structure/closet/crate/ammo, /obj/item/ammo_magazine/pkp, /obj/item/weapon/gun/pkp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "NP" = ( /turf/closed/shuttle/ert{ @@ -848,21 +756,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "OG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "OJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Pc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -894,9 +798,7 @@ dir = 5 }, /obj/effect/spawner/gibspawner/human, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Qj" = ( /obj/structure/machinery/colony_floodlight, @@ -913,17 +815,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Sb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Sf" = ( /turf/closed/shuttle/ert{ @@ -943,9 +841,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "SN" = ( /obj/effect/spawner/gibspawner/human, @@ -988,7 +884,7 @@ pixel_y = 21 }, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "UB" = ( /obj/structure/prop/invuln/fire{ @@ -1006,9 +902,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "VD" = ( /obj/structure/flora/bush/desert/cactus{ @@ -1026,9 +920,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_civilian) "Wy" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, @@ -1037,32 +929,24 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "WW" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Xn" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Xq" = ( /turf/template_noop, /area/template_noop) "XT" = ( /obj/structure/flora/tree/joshua, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Yr" = ( /turf/closed/shuttle/ert{ @@ -1072,9 +956,7 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "Yv" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "YD" = ( /obj/structure/fence, @@ -1084,9 +966,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Zm" = ( /obj/structure/flora/grass/tallgrass/desert, diff --git a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm index 9cca7b5c3558..61bc40a64e52 100644 --- a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm +++ b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm @@ -29,16 +29,11 @@ dir = 4 }, /obj/item/ammo_casing/bullet, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "aO" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "aT" = ( /turf/closed/shuttle/ert{ @@ -51,9 +46,7 @@ /obj/item/reagent_container/food/drinks/flask/canteen{ desc = "You take a sip from your trusty UPP canteen..." }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "be" = ( /obj/structure/closet/secure_closet/bar, @@ -67,9 +60,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "bu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "bz" = ( /obj/structure/bed/roller, @@ -89,10 +80,7 @@ /area/desert_dam/building/bar/backroom) "bI" = ( /obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) "bJ" = ( /obj/structure/disposalpipe/segment{ @@ -152,18 +140,14 @@ network = null; pixel_y = 21 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "cR" = ( /obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "cZ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "da" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -179,15 +163,11 @@ /area/desert_dam/building/bar/bar) "du" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/backroom) "dJ" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "dQ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -196,16 +176,14 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "dR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "dX" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_box/rounds/type71{ bullet_amount = 129 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "ee" = ( /obj/effect/decal/warning_stripes{ @@ -214,10 +192,7 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "eh" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar_restroom) "ej" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -277,16 +252,14 @@ icon_state = "paper_words"; item_state = "paper_words" }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "fk" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "fy" = ( /obj/structure/flora/grass/desert/lightgrass_6, @@ -306,9 +279,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "fM" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "fN" = ( /obj/structure/disposalpipe/segment, @@ -327,18 +298,14 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "ga" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "gm" = ( /obj/structure/desertdam/decals/road_edge, @@ -351,9 +318,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "gM" = ( /obj/item/trash/candy, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "gN" = ( /obj/item/ammo_casing/bullet, @@ -366,16 +331,11 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "gR" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "hc" = ( /obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) "hd" = ( /obj/structure/flora/grass/desert/lightgrass_8, @@ -434,9 +394,7 @@ /obj/item/ammo_box/rounds/type71/heap/empty{ bullet_amount = 0 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "hO" = ( /obj/effect/decal/warning_stripes{ @@ -451,16 +409,11 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "hY" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "if" = ( /obj/effect/decal/cleanable/dirt, @@ -478,9 +431,7 @@ /turf/open/floor/plating, /area/desert_dam/building/bar/bar) "is" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/bar_valley_dam) "iy" = ( /turf/closed/wall/wood, @@ -495,10 +446,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "iL" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) "iV" = ( /obj/effect/landmark/crap_item, @@ -519,9 +467,7 @@ "jj" = ( /obj/item/trash/cheesie, /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "jm" = ( /obj/effect/decal/sand_overlay/sand1, @@ -532,9 +478,7 @@ dir = 5; pixel_y = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "jp" = ( /obj/structure/desertdam/decals/road_edge, @@ -563,10 +507,7 @@ /area/desert_dam/building/bar/bar) "jw" = ( /obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) "jy" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -579,26 +520,20 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "jI" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "jJ" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) "kf" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "kh" = ( /obj/structure/desertdam/decals/road_edge{ @@ -609,18 +544,13 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "ki" = ( /obj/item/stack/sandbags, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) "kk" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "kp" = ( /obj/effect/decal/cleanable/blood, @@ -631,9 +561,7 @@ /obj/structure/barricade/sandbags/wired{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/bar_valley_dam) "kD" = ( /turf/open/desert/dirt, @@ -649,9 +577,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/backroom) "ln" = ( /turf/open/desert/rock, @@ -661,37 +587,25 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "lT" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "mb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "md" = ( /obj/item/ammo_magazine/rifle/type71/heap{ current_rounds = 0 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "mf" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) "mq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -704,10 +618,7 @@ dir = 4 }, /obj/item/prop/colony/used_flare, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/backroom) "mF" = ( /obj/structure/disposalpipe/segment, @@ -731,9 +642,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) "mV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/building/bar/bar_restroom) "nk" = ( /turf/closed/shuttle/ert{ @@ -745,9 +654,7 @@ "np" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/item/ammo_casing/bullet, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "nt" = ( /obj/effect/decal/sand_overlay/sand1, @@ -778,9 +685,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar) "nD" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -796,9 +701,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/bar_valley_dam) "oc" = ( /obj/structure/surface/table/reinforced, @@ -811,15 +714,11 @@ /area/desert_dam/building/bar/bar) "oo" = ( /obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "oy" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) "oD" = ( /obj/structure/machinery/vending/snack, @@ -830,9 +729,7 @@ /obj/item/ammo_magazine/rifle/type71/heap{ current_rounds = 0 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "oK" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -841,24 +738,18 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "oN" = ( /obj/effect/decal/sand_overlay/sand1, /obj/item/ammo_casing/bullet, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "pk" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "pq" = ( /obj/structure/desertdam/decals/road_edge{ @@ -868,10 +759,7 @@ /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "pu" = ( /obj/structure/machinery/light/double, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "px" = ( /obj/structure/barricade/sandbags/wired{ @@ -890,15 +778,12 @@ "pA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "pM" = ( /obj/structure/bed/chair/dropship/passenger, /obj/item/storage/belt/medical/lifesaver/upp, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "pO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -921,31 +806,21 @@ pixel_x = 5; pixel_y = 15 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "qe" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "qu" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /obj/item/prop/colony/used_flare, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "qx" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/bar_valley_dam) "qS" = ( /turf/open/floor/interior/wood/alt, @@ -976,18 +851,14 @@ /area/desert_dam/building/bar/bar) "rR" = ( /obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "rX" = ( /obj/item/prop/colony/folded_bedroll, /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar) "se" = ( /obj/item/trash/semki, @@ -1003,15 +874,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "sp" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "su" = ( /obj/structure/surface/table/reinforced, @@ -1024,9 +891,7 @@ "sv" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/shovel, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "sE" = ( /obj/structure/machinery/light/double{ @@ -1038,9 +903,7 @@ "sH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/sandbags/wired, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "sI" = ( /obj/structure/flora/grass/desert/lightgrass_5, @@ -1056,9 +919,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "tl" = ( /obj/item/ammo_casing/bullet, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "tu" = ( /obj/effect/decal/cleanable/blood, @@ -1077,9 +938,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "tK" = ( /obj/structure/bed/bedroll, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "tM" = ( /turf/closed/shuttle/ert{ @@ -1121,13 +980,10 @@ pixel_y = 7; icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "uF" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/bar_valley_dam) "uZ" = ( /obj/item/roller, @@ -1146,18 +1002,12 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "vn" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "vq" = ( /obj/structure/sink, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "vy" = ( /obj/item/prop/colony/used_flare, @@ -1178,16 +1028,11 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "wj" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "wm" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1198,9 +1043,7 @@ /area/desert_dam/building/bar/bar) "wp" = ( /obj/structure/flora/grass/desert/heavygrass_10, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "wq" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -1225,9 +1068,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "wy" = ( /obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar_restroom) "wE" = ( /obj/structure/girder, @@ -1239,14 +1080,10 @@ }, /obj/structure/bed/bedroll, /obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "wJ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "wO" = ( /obj/structure/barricade/sandbags/wired{ @@ -1267,7 +1104,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S-corner" }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "xg" = ( /obj/structure/prop/dam/boulder/boulder1, @@ -1278,9 +1115,7 @@ dir = 1 }, /obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "xm" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -1324,10 +1159,7 @@ start_charge = 0 }, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "xN" = ( /turf/closed/shuttle/ert{ @@ -1338,10 +1170,7 @@ /area/desert_dam/building/bar/bar) "xP" = ( /obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) "xT" = ( /turf/template_noop, @@ -1361,9 +1190,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "yf" = ( /obj/effect/decal/warning_stripes{ @@ -1374,25 +1201,18 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "yk" = ( /obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) "ym" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "yo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar) "ys" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -1433,9 +1253,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "zl" = ( /obj/structure/disposalpipe/segment{ @@ -1451,10 +1269,7 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "zC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -1470,21 +1285,13 @@ "zD" = ( /obj/structure/surface/table/woodentable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "zM" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "zO" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) "zS" = ( /obj/structure/flora/grass/desert/heavygrass_4, @@ -1502,18 +1309,13 @@ /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Ae" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "Ah" = ( /obj/structure/barricade/wooden{ @@ -1543,10 +1345,7 @@ /obj/structure/barricade/sandbags/wired{ dir = 1 }, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) "AT" = ( /turf/closed/shuttle/ert{ @@ -1567,9 +1366,7 @@ "Bu" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "Bx" = ( /obj/structure/surface/table/almayer, @@ -1588,7 +1385,7 @@ /obj/item/ammo_magazine/rifle/type71/heap{ current_rounds = 0 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "BB" = ( /turf/closed/shuttle/ert{ @@ -1605,17 +1402,12 @@ /obj/item/reagent_container/food/drinks/flask/canteen{ desc = "You take a sip from your trusty UPP canteen..." }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "BM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "BP" = ( /obj/structure/desertdam/decals/road_edge{ @@ -1636,10 +1428,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/backroom) "Cc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -1651,16 +1440,10 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "Ce" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "Ch" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) "Cm" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -1683,9 +1466,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "CA" = ( /turf/closed/shuttle/ert{ @@ -1702,9 +1483,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "CH" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar_restroom) "CI" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -1714,9 +1493,7 @@ pixel_y = 13 }, /obj/item/clothing/mask/cigarette/cigar, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "CL" = ( /turf/closed/shuttle/ert{ @@ -1729,9 +1506,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "Db" = ( /obj/structure/girder, @@ -1745,9 +1520,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "Di" = ( /obj/item/prop/colony/used_flare, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Dn" = ( /obj/effect/decal/cleanable/dirt, @@ -1758,9 +1531,7 @@ }, /area/desert_dam/building/bar/bar) "Dt" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar_restroom) "Du" = ( /obj/effect/decal/cleanable/dirt, @@ -1783,10 +1554,7 @@ /area/desert_dam/building/bar/bar) "DE" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "DO" = ( /obj/effect/spawner/gibspawner/xeno, @@ -1795,9 +1563,7 @@ "DR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "DZ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1818,10 +1584,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "Eg" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) "Ek" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1834,33 +1597,24 @@ /obj/structure/barricade/sandbags/wired{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/bar_valley_dam) "Er" = ( /obj/item/stack/sheet/wood, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) "Ev" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "Ex" = ( /obj/item/prop/colony/used_flare, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) "EH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "EO" = ( /turf/closed/shuttle/ert{ @@ -1885,9 +1639,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "Fh" = ( /obj/item/storage/belt/utility, @@ -1915,10 +1667,7 @@ /obj/structure/barricade/sandbags/wired{ dir = 4 }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/bar_valley_dam) "FF" = ( /obj/structure/disposalpipe/segment, @@ -1928,9 +1677,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "FI" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/bar_valley_dam) "Gc" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -1940,9 +1687,7 @@ dir = 4 }, /obj/item/ammo_casing/bullet, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "Gd" = ( /obj/effect/decal/warning_stripes{ @@ -1963,9 +1708,7 @@ /area/desert_dam/building/bar/bar) "GP" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "GY" = ( /obj/item/trash/used_stasis_bag, @@ -1974,9 +1717,7 @@ /area/desert_dam/building/bar/bar) "GZ" = ( /obj/item/stack/barbed_wire/small_stack, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Hb" = ( /obj/structure/desertdam/decals/road_edge, @@ -1986,10 +1727,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "Hl" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/bar_valley_dam) "Hq" = ( /obj/structure/barricade/sandbags/wired{ @@ -2002,9 +1740,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar) "HH" = ( /obj/effect/decal/warning_stripes{ @@ -2031,9 +1767,7 @@ /obj/item/prop/colony/usedbandage{ dir = 5 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Iu" = ( /turf/open/desert/dirt, @@ -2049,13 +1783,11 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "IU" = ( /obj/item/tool/shovel, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "IW" = ( /turf/closed/shuttle/ert{ @@ -2065,28 +1797,19 @@ }, /area/desert_dam/building/bar/bar) "Jc" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar) "Jd" = ( /obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Ji" = ( /obj/item/trash/candy, /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar) "Jk" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "Js" = ( /obj/structure/disposalpipe/segment{ @@ -2097,9 +1820,7 @@ /area/desert_dam/building/bar/bar) "Jt" = ( /obj/item/trash/cheesie, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Jx" = ( /obj/structure/desertdam/decals/road_edge, @@ -2149,9 +1870,7 @@ dir = 8 }, /obj/item/stack/sandbags, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) "Lo" = ( /obj/effect/landmark/survivor_spawner/upp/soldier, @@ -2167,9 +1886,7 @@ /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "Lw" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar) "LB" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -2182,24 +1899,15 @@ /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "LC" = ( /obj/item/prop/colony/usedbandage, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) "LD" = ( /obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "LF" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "LJ" = ( /obj/structure/machinery/power/apc{ @@ -2208,24 +1916,18 @@ start_charge = 0 }, /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/backroom) "LM" = ( /obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) "Ms" = ( /obj/item/ammo_casing/bullet, /obj/item/prop/colony/usedbandage{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Mw" = ( /obj/structure/machinery/blackbox_recorder, @@ -2245,9 +1947,7 @@ /obj/structure/barricade/sandbags/wired{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "Ne" = ( /obj/effect/decal/warning_stripes{ @@ -2264,17 +1964,13 @@ /obj/item/ammo_box/rounds/type71/heap/empty{ bullet_amount = 0 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Nj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "No" = ( /obj/effect/spawner/gibspawner/xeno, @@ -2282,10 +1978,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "Nu" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) "NH" = ( /obj/structure/machinery/light/double{ @@ -2333,15 +2026,11 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/bar_valley_dam) "Ow" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "OD" = ( /turf/open/asphalt, @@ -2354,18 +2043,14 @@ dir = 1; pixel_y = -10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "OO" = ( /turf/closed/wall/r_wall, /area/desert_dam/exterior/valley/bar_valley_dam) "OS" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "OU" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2388,10 +2073,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) "Pw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "PH" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -2407,21 +2089,17 @@ pixel_x = 1; pixel_y = 35 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "PR" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "PS" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "PX" = ( /obj/structure/flora/grass/desert/heavygrass_5, @@ -2429,9 +2107,7 @@ dir = 5 }, /obj/effect/decal/cleanable/blood, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "PY" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -2441,17 +2117,13 @@ pixel_y = 13 }, /obj/item/toy/plush/farwa, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Qc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/desert_dam/building/bar/bar_restroom) "Qk" = ( /obj/item/ammo_magazine/rifle/type71/heap{ @@ -2473,17 +2145,13 @@ density = 0; pixel_y = 32 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "QI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "QK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2526,7 +2194,7 @@ /obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, /obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, /obj/item/ammo_box/magazine/misc/flares, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "Ro" = ( /obj/structure/flora/grass/desert/lightgrass_11, @@ -2535,17 +2203,13 @@ "Rs" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar) "RU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/bar_valley_dam) "RW" = ( /obj/effect/decal/warning_stripes{ @@ -2562,19 +2226,13 @@ /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "Sh" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "Sl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "So" = ( /obj/effect/decal/cleanable/dirt, @@ -2600,9 +2258,7 @@ /area/desert_dam/building/bar/backroom) "SG" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "SL" = ( /obj/item/ammo_magazine/rifle/type71/heap{ @@ -2618,10 +2274,7 @@ /obj/structure/barricade/sandbags/wired{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "SY" = ( /obj/effect/decal/cleanable/dirt, @@ -2633,9 +2286,7 @@ /area/desert_dam/building/bar/bar) "Ta" = ( /obj/item/prop/colony/used_flare, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "Tc" = ( /obj/structure/bed/chair/wood/normal{ @@ -2654,26 +2305,20 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar) "Tl" = ( /obj/effect/decal/sand_overlay/sand1, /obj/item/ammo_magazine/rifle/type71/heap{ current_rounds = 0 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "TH" = ( /obj/effect/decal/sand_overlay/sand1, /obj/item/ammo_casing/bullet, /obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "TO" = ( /obj/structure/pipes/vents/pump{ @@ -2683,15 +2328,10 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "TR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "Ug" = ( /obj/item/ammo_casing/bullet, @@ -2699,10 +2339,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "Ui" = ( /obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) "Ul" = ( /obj/effect/decal/cleanable/dirt, @@ -2720,14 +2357,10 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "Uq" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/bar_valley_dam) "UB" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar) "UK" = ( /obj/item/ammo_box/rounds/type71/heap/empty{ @@ -2746,9 +2379,7 @@ pixel_y = 13 }, /obj/item/clothing/head/helmet/marine/veteran/UPP, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "UQ" = ( /obj/structure/surface/table/reinforced, @@ -2757,9 +2388,7 @@ pixel_y = 32 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "Vc" = ( /obj/structure/desertdam/decals/road_edge, @@ -2784,9 +2413,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) "Vt" = ( /obj/item/prop/colony/usedbandage{ @@ -2799,17 +2426,11 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "VG" = ( /obj/structure/reagent_dispensers/beerkeg, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) "VI" = ( /turf/open/floor/plating, @@ -2920,9 +2541,7 @@ desc = "You take a sip from your trusty UPP canteen..."; pixel_y = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Xh" = ( /obj/effect/decal/cleanable/dirt, @@ -2933,15 +2552,11 @@ dir = 6 }, /obj/item/ammo_casing/bullet, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Xv" = ( /obj/structure/prop/dam/boulder/boulder3, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Xw" = ( /turf/open/floor/interior/wood, @@ -2974,33 +2589,22 @@ /area/desert_dam/interior/dam_interior/south_tunnel_entrance) "XZ" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) "Yf" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) "Yn" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) "Yq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, +/turf/open/floor/carpet6_2/west, /area/desert_dam/building/bar/bar) "YA" = ( /obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar) "YE" = ( /obj/effect/decal/sand_overlay/sand1, @@ -3043,9 +2647,7 @@ }, /area/desert_dam/building/bar/bar) "YZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/desert_dam/building/bar/bar_restroom) "ZA" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -3054,9 +2656,7 @@ /obj/structure/barricade/sandbags/wired{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "ZB" = ( /obj/effect/decal/sand_overlay/sand1, diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm index d1dd76922ee1..5cccceb54389 100644 --- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm +++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm @@ -6,10 +6,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "aab" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -30,9 +27,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding9" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/north) "aaf" = ( /obj/effect/landmark/corpsespawner/prisoner, @@ -112,19 +107,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aap" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aaq" = ( /obj/structure/machinery/disposal, @@ -135,10 +124,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aar" = ( /obj/effect/decal/warning_stripes{ @@ -151,20 +137,14 @@ icon_state = "coil1"; name = "cable piece" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/research/secret/testing) "aas" = ( /obj/structure/machinery/door/window/southright, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/research/secret/testing) "aat" = ( /obj/structure/surface/table/reinforced, @@ -179,20 +159,14 @@ icon_state = "S" }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aau" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aav" = ( /obj/structure/closet/l3closet, @@ -200,10 +174,7 @@ dir = 1 }, /obj/item/reagent_container/food/snacks/baguette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aaw" = ( /obj/structure/surface/table/reinforced, @@ -212,10 +183,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "aax" = ( /obj/structure/surface/table/reinforced, @@ -224,10 +192,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "aay" = ( /obj/effect/decal/warning_stripes{ @@ -236,20 +201,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aaz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/research/secret/testing) "aaA" = ( /obj/structure/surface/table/reinforced, @@ -263,10 +222,7 @@ id = "biological_testing_2"; name = "Containment Shutter Control" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aaB" = ( /obj/effect/decal/warning_stripes{ @@ -278,10 +234,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/research/secret/testing) "aaC" = ( /obj/structure/machinery/light/small{ @@ -290,106 +243,63 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "aaD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "aaE" = ( /obj/structure/machinery/smartfridge/secure, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research/secret/testing) "aaF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/testing) "aaG" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "aaH" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "aaI" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/research/secret/testing) "aaJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/testing) "aaK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "aaL" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/north, /area/prison/research/secret/testing) "aaM" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/testing) "aaN" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/testing) "aaO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/prison/research/secret/testing) "aaP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/north, /area/prison/research/secret/testing) "aaQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/testing) "aaR" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -409,69 +319,45 @@ /turf/open/space, /area/space) "aaT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research/secret/testing) "aaU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/prison/research/secret/testing) "aaV" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "aaW" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "aaX" = ( /obj/item/paper/prison_station/test_log, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "aaY" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "aaZ" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abc" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/suit/chef/classic, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "abd" = ( /obj/structure/surface/rack, @@ -481,28 +367,19 @@ /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abf" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abg" = ( /obj/structure/machinery/disposal, @@ -512,43 +389,29 @@ /obj/structure/sign/safety/nonpress{ pixel_x = 30 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/testing) "abh" = ( /obj/structure/machinery/computer/operating, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "abi" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abj" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abk" = ( /obj/structure/surface/table/reinforced, /obj/item/folder, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abl" = ( /obj/item/paper_bin{ @@ -560,41 +423,26 @@ pixel_y = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abn" = ( /obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abo" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abp" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/testing) "abr" = ( /obj/structure/disposalpipe/trunk, @@ -609,50 +457,32 @@ /obj/structure/machinery/computer/med_data/laptop{ pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "abt" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/testing) "abu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abv" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abw" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/prison/research/secret/testing) "abx" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/testing) "aby" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research/secret/testing) "abz" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -669,25 +499,18 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "abC" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/research/secret/testing) "abD" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abE" = ( /obj/structure/surface/table/reinforced, @@ -696,70 +519,50 @@ pixel_y = 4 }, /obj/item/storage/box/syringes, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abF" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abG" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abH" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/bioengineering) "abI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/bioengineering) "abJ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abK" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abL" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abM" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "abN" = ( /obj/structure/window/reinforced{ @@ -772,26 +575,17 @@ /area/prison/research/secret/bioengineering) "abO" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/bioengineering) "abP" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/bioengineering) "abQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/north) "abR" = ( /obj/structure/machinery/flasher{ @@ -824,10 +618,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "abV" = ( /obj/structure/disposalpipe/segment{ @@ -839,10 +630,7 @@ name = "Cell"; opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "abW" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -853,102 +641,68 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "abZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "aca" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "acb" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "acc" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research/secret/bioengineering) "acd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/bioengineering) "ace" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/research/secret/bioengineering) "acf" = ( /obj/structure/window/framed/prison/cell, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "acg" = ( /turf/closed/wall/r_wall/prison, /area/prison/research/secret/bioengineering) "ach" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research/secret/bioengineering) "acj" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/bioengineering) "ack" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/research/secret/bioengineering) "acl" = ( /obj/effect/decal/warning_stripes{ @@ -978,10 +732,7 @@ dir = 1 }, /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/north) "acp" = ( /obj/effect/landmark/corpsespawner/prisoner, @@ -1013,10 +764,7 @@ dir = 8; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/north) "acu" = ( /obj/item/ammo_casing, @@ -1024,39 +772,28 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "acv" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/circular_saw, /obj/item/tool/surgery/scalpel, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "acw" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "acx" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/testing) "acy" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/testing) "acz" = ( /obj/structure/surface/table/reinforced, @@ -1065,16 +802,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "acA" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/testing) "acB" = ( /obj/effect/decal/warning_stripes{ @@ -1087,27 +819,19 @@ /obj/structure/sign/safety/nonpress{ pixel_x = -30 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "acC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/bioengineering) "acD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "acE" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -1120,10 +844,7 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "acH" = ( /turf/closed/wall/r_wall/prison, @@ -1133,10 +854,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/bioengineering) "acJ" = ( /obj/structure/machinery/door/airlock/prison{ @@ -1144,10 +862,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/research/secret/bioengineering) "acK" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -1196,25 +911,16 @@ /area/prison/cellblock/maxsec/north) "acT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/research/secret/bioengineering) "acV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "acW" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "acX" = ( /obj/structure/window/framed/prison/reinforced, @@ -1254,9 +960,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "Biological Testing" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "adf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1265,40 +969,25 @@ /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) "adg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/bioengineering) "adh" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "adi" = ( /obj/structure/window/framed/prison/cell, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/bioengineering) "adj" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/bioengineering) "adk" = ( /obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "adl" = ( /obj/effect/decal/warning_stripes{ @@ -1360,16 +1049,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor/north, /area/prison/research/secret/testing) "adu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/testing) "adv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1380,10 +1064,7 @@ icon_state = "door_open"; name = "Cell Access" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adw" = ( /obj/effect/decal/warning_stripes{ @@ -1392,31 +1073,19 @@ /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor/north, /area/prison/research/secret/testing) "adx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/north, /area/prison/research/secret/bioengineering) "ady" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/prison/research/secret/bioengineering) "adz" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "adA" = ( /obj/effect/landmark/hunter_primary, @@ -1425,39 +1094,27 @@ "adB" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/up, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adC" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/up{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adD" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adE" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adF" = ( /obj/structure/machinery/light{ @@ -1489,10 +1146,7 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor/north, /area/prison/research/secret/testing) "adJ" = ( /obj/structure/toilet{ @@ -1509,32 +1163,20 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "adL" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "adM" = ( /obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "adN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "adO" = ( /obj/structure/surface/table/reinforced, @@ -1543,30 +1185,21 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "adP" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adQ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adR" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -1578,10 +1211,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adS" = ( /obj/structure/disposalpipe/segment{ @@ -1589,10 +1219,7 @@ icon_state = "pipe-c" }, /obj/item/paper/prison_station/nursery_rhyme, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/north) "adT" = ( /obj/structure/machinery/light/small{ @@ -1608,10 +1235,7 @@ }, /obj/structure/machinery/door/window/westright, /obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/north) "adV" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -1622,10 +1246,7 @@ opacity = 0 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "adW" = ( /obj/structure/window/reinforced, @@ -1633,10 +1254,7 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/north) "adX" = ( /obj/structure/machinery/light/small{ @@ -1650,20 +1268,14 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "adZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "aea" = ( /obj/structure/bed, @@ -1684,9 +1296,7 @@ dir = 2; name = "Human Containment Pen" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "aed" = ( /obj/structure/window/framed/prison/cell, @@ -1696,17 +1306,11 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "aef" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "aeg" = ( /obj/item/paper_bin{ @@ -1718,25 +1322,16 @@ pixel_y = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "aeh" = ( /obj/item/folder/black, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "aei" = ( /obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "aej" = ( /obj/structure/machinery/light{ @@ -1756,19 +1351,13 @@ /area/prison/yard) "aem" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/north) "aen" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "aeo" = ( /obj/structure/toilet{ @@ -1776,10 +1365,7 @@ }, /obj/structure/disposalpipe/segment, /obj/item/paper/prison_station/nursery_rhyme, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/north) "aep" = ( /obj/structure/machinery/flasher{ @@ -1805,10 +1391,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/maxsec/north) "aes" = ( /obj/structure/disposaloutlet, @@ -1818,17 +1401,11 @@ /obj/structure/disposalpipe/up{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/maxsec/north) "aet" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/maxsec/north) "aeu" = ( /obj/structure/sink{ @@ -1849,26 +1426,17 @@ pixel_x = -4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "aex" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "aey" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "aez" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1913,16 +1481,10 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret/containment) "aeF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret/containment) "aeG" = ( /obj/structure/machinery/light{ @@ -1931,10 +1493,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret/containment) "aeH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1943,18 +1502,13 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret/containment) "aeI" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "aeK" = ( /obj/structure/disposaloutlet{ @@ -1963,10 +1517,7 @@ /obj/structure/disposalpipe/up{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/north) "aeL" = ( /obj/item/paper/prison_station/nursery_rhyme, @@ -2010,10 +1561,7 @@ /obj/structure/disposalpipe/up{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "aeT" = ( /obj/structure/machinery/light{ @@ -2022,16 +1570,10 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret/containment) "aeU" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/prison/research/secret/containment) "aeV" = ( /obj/structure/machinery/light{ @@ -2040,35 +1582,23 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/bioengineering) "aeW" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "aeX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "aeY" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "aeZ" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -2076,10 +1606,7 @@ "afa" = ( /obj/item/shard, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "afb" = ( /obj/item/shard, @@ -2105,10 +1632,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/north) "afe" = ( /obj/structure/disposaloutlet, @@ -2127,10 +1651,7 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "afh" = ( /obj/structure/machinery/light{ @@ -2143,10 +1664,7 @@ /obj/structure/xenoautopsy/tank/larva{ pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/bioengineering) "afj" = ( /obj/structure/machinery/light, @@ -2157,77 +1675,52 @@ /turf/open/floor/prison, /area/prison/security/monitoring/maxsec/panopticon) "afl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/research/secret/containment) "afm" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret/containment) "afn" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret/containment) "afo" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/west, /area/prison/research/secret/containment) "afp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/prison/research/secret/containment) "afq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret/containment) "afr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2, /area/prison/research/secret/containment) "afs" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret/containment) "aft" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/prison/research/secret/containment) "afu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "afv" = ( /obj/effect/decal/warning_stripes{ @@ -2236,10 +1729,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/bioengineering) "afw" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2248,36 +1738,24 @@ /area/prison/cellblock/highsec/south/north) "afx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "afy" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "afA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/bioengineering) "afB" = ( /obj/structure/machinery/door/window/eastright, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "afC" = ( /obj/effect/decal/warning_stripes{ @@ -2303,68 +1781,42 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Panopticon Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/security/monitoring/maxsec/panopticon) "afF" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/security/monitoring/maxsec/panopticon) "afG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/prison/research/secret/containment) "afH" = ( /obj/effect/alien/weeds/node, /turf/open/floor/prison, /area/prison/cellblock/highsec/south/north) "afI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/research/secret/containment) "afJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/bioengineering) "afL" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/prison/research/secret/bioengineering) "afM" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research/secret/bioengineering) "afN" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/north) "afO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/north) "afP" = ( /obj/structure/bed/chair/office/dark{ @@ -2373,52 +1825,37 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/prison/research/secret/bioengineering) "afQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/bioengineering) "afR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/bioengineering) "afS" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/bioengineering) "afT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/bioengineering) "afU" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/bioengineering) "afV" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research/secret/bioengineering) "afW" = ( /obj/structure/bed, @@ -2430,33 +1867,23 @@ /area/prison/research/secret/containment) "aga" = ( /obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research/secret/bioengineering) "agb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research/secret/bioengineering) "agc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Bioengineering" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "agd" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/bioengineering) "age" = ( /obj/structure/window/framed/prison/reinforced, @@ -2468,9 +1895,7 @@ }, /obj/structure/closet/radiation, /obj/item/device/motiondetector, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "agg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2481,9 +1906,7 @@ /obj/item/ammo_magazine/pistol/b92fs, /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "agh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2494,15 +1917,11 @@ /obj/item/ammo_magazine/pistol/b92fs, /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "agi" = ( /obj/structure/closet/radiation, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "agj" = ( /obj/structure/machinery/disposal, @@ -2530,37 +1949,25 @@ /area/prison/research/secret/containment) "ago" = ( /obj/structure/machinery/cm_vending/sorted/tech/robotics, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret) "agp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret) "agq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret) "agr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/prison/research/secret) "ags" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2628,30 +2035,21 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "agE" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "agF" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2; name = "Panopticon Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/security/monitoring/maxsec/panopticon) "agG" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2659,10 +2057,7 @@ dir = 2; name = "Panopticon Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/security/monitoring/maxsec/panopticon) "agH" = ( /obj/structure/sink{ @@ -2679,10 +2074,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "agJ" = ( /turf/closed/wall/prison, @@ -2707,10 +2099,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "agP" = ( /obj/structure/pipes/vents/scrubber{ @@ -2729,19 +2118,13 @@ /turf/open/floor/prison, /area/prison/research/secret/containment) "agS" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret/containment) "agT" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret/containment) "agU" = ( /turf/closed/wall/r_wall/prison, @@ -2750,10 +2133,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/east, /area/prison/research/secret/containment) "agW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2771,23 +2151,16 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "agZ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/north, /area/prison/research/secret/containment) "aha" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "ahb" = ( /obj/structure/toilet{ @@ -2798,10 +2171,7 @@ /area/prison/research/secret/containment) "ahc" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret/containment) "ahd" = ( /obj/structure/machinery/power/apc{ @@ -2809,19 +2179,13 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret/containment) "ahe" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/prison/research/secret/containment) "ahf" = ( /obj/effect/decal/warning_stripes{ @@ -2861,19 +2225,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret) "ahj" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret) "ahk" = ( /obj/structure/machinery/power/apc{ @@ -2882,29 +2240,17 @@ start_charge = 0 }, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret) "ahl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret) "ahm" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/east, /area/prison/research/secret) "ahn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/research/secret) "aho" = ( /obj/structure/pipes/vents/pump{ @@ -2920,39 +2266,24 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "ahr" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "ahs" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "aht" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "ahu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "ahv" = ( /obj/structure/machinery/power/apc{ @@ -2960,10 +2291,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "ahw" = ( /obj/structure/machinery/light/small, @@ -2983,9 +2311,7 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Simian Containment Pen" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "ahC" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2995,32 +2321,20 @@ /obj/structure/surface/table/reinforced, /obj/item/clothing/suit/chef/classic, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "ahE" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/prison/research/secret/containment) "ahF" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret) "ahG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret) "ahH" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "ahI" = ( /obj/item/device/motiondetector, @@ -3031,10 +2345,7 @@ /obj/item/clothing/suit/chef/classic, /obj/item/tool/kitchen/rollingpin, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "ahK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -3050,9 +2361,7 @@ /area/prison/research/secret) "ahM" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/main) "ahN" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -3067,10 +2376,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "ahQ" = ( /obj/structure/surface/table/reinforced, @@ -3079,10 +2385,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "ahT" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -3105,10 +2408,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/prison/research/secret/containment) "aib" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3118,16 +2418,11 @@ dir = 2; name = "Test Subject Containment" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "aid" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret) "aie" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3137,9 +2432,7 @@ dir = 2; name = "Test Subject Containment" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "aif" = ( /obj/effect/decal/warning_stripes{ @@ -3148,16 +2441,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret) "aih" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/cellblock/highsec/north/south) "aii" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -3169,41 +2456,27 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/research/secret) "aik" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Maximum-Security Panopticon" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "ail" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "ain" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/research/secret/containment) "aio" = ( /obj/item/paper/prison_station/monkey_note, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret/containment) "aip" = ( /obj/structure/machinery/shower{ @@ -3230,28 +2503,20 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/research/secret) "ais" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/west, /area/prison/research/secret) "ait" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "aiu" = ( /obj/structure/surface/rack, @@ -3259,23 +2524,17 @@ /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, /obj/item/weapon/gun/pistol/highpower, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "aiv" = ( /obj/structure/largecrate/supply/weapons/flamers, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "aiw" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "aix" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3293,35 +2552,24 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Maximum-Security Panopticon" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "aiz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "aiB" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/north) "aiC" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "Simian Containment Pen" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "aiD" = ( /turf/closed/wall/prison, @@ -3330,34 +2578,24 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "aiF" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/research/secret) "aiG" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "aiH" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/prison/research/secret) "aiI" = ( /turf/closed/wall/r_wall/prison, @@ -3428,26 +2666,17 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/research/secret) "aiX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/research/secret) "aiY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/prison/research/secret) "aiZ" = ( /obj/structure/surface/rack, @@ -3455,10 +2684,7 @@ /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, /obj/item/restraint/handcuffs, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/prison/research/secret) "aja" = ( /obj/structure/surface/rack, @@ -3480,10 +2706,7 @@ dir = 2; name = "Maximum-Security Panopticon" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "aje" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -3491,10 +2714,7 @@ dir = 2; name = "Maximum-Security Panopticon" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/north) "ajf" = ( /obj/structure/machinery/light{ @@ -3509,10 +2729,7 @@ /turf/open/floor/prison, /area/prison/research/secret/dissection) "aji" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/prison/research/secret) "ajj" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -3531,10 +2748,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "ajn" = ( /obj/structure/machinery/optable, @@ -3544,10 +2758,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/prison/research/secret) "ajp" = ( /obj/structure/window/framed/prison/reinforced, @@ -3558,42 +2769,27 @@ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research/secret/chemistry) "ajr" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/chemistry) "ajs" = ( /obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/chemistry) "ajt" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research/secret/chemistry) "aju" = ( /obj/structure/closet/secure_closet/chemical, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/research/secret/chemistry) "ajv" = ( /obj/structure/machinery/alarm/almayer{ @@ -3661,20 +2857,14 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "ajE" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "ajF" = ( /obj/structure/machinery/flasher{ @@ -3691,31 +2881,19 @@ /turf/open/floor/prison, /area/prison/research/secret) "ajI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/chemistry) "ajJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/chemistry) "ajK" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/chemistry) "ajL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/chemistry) "ajM" = ( /obj/structure/window/framed/prison/reinforced, @@ -3727,10 +2905,7 @@ /turf/open/floor/plating, /area/prison/research/secret/chemistry) "ajN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hanger/research) "ajO" = ( /turf/open/floor/prison, @@ -3747,10 +2922,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "ajR" = ( /obj/structure/disposalpipe/segment{ @@ -3768,20 +2940,14 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/south) "ajT" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "ajU" = ( /obj/structure/machinery/door/airlock/prison{ @@ -3796,16 +2962,10 @@ /area/prison/cellblock/maxsec/south) "ajV" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "ajW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "ajX" = ( /obj/structure/disposalpipe/segment{ @@ -3813,10 +2973,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "ajY" = ( /obj/structure/machinery/light{ @@ -3825,9 +2982,7 @@ /turf/closed/wall/r_wall/prison, /area/prison/research/secret/containment) "ajZ" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/containment) "aka" = ( /obj/structure/sink{ @@ -3849,10 +3004,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/research/secret) "akf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3861,42 +3013,28 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Chemistry" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/secret/chemistry) "akg" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research/secret/chemistry) "aki" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/chemistry) "akj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/prison/research/secret/chemistry) "akk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research/secret/chemistry) "akl" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -3917,19 +3055,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "akp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/south) "akq" = ( /obj/structure/machinery/light{ @@ -3939,10 +3071,7 @@ id = "suspended_WWN"; pixel_x = 24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "akr" = ( /obj/structure/machinery/light{ @@ -3952,19 +3081,13 @@ id = "suspended_WEN"; pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "aks" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "akt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3975,10 +3098,7 @@ icon_state = "door_open"; name = "Cell Access" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "akv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3987,20 +3107,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "akw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "akx" = ( /obj/structure/machinery/light{ @@ -4010,10 +3124,7 @@ id = "suspended_EWN"; pixel_x = 24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "aky" = ( /obj/structure/machinery/light{ @@ -4023,10 +3134,7 @@ id = "suspended_EEN"; pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "akA" = ( /obj/structure/largecrate/random, @@ -4073,20 +3181,14 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "akI" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "akJ" = ( /obj/effect/landmark/corpsespawner/scientist, @@ -4116,17 +3218,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/research/secret) "akP" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/west, /area/prison/research/secret) "akQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4138,10 +3234,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/research/secret) "akS" = ( /obj/structure/machinery/smartfridge, @@ -4151,16 +3244,11 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research/secret/chemistry) "akU" = ( /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/chemistry) "akV" = ( /turf/open/floor/plating, @@ -4172,18 +3260,13 @@ /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) "akX" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research/secret/chemistry) "akY" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research/secret/chemistry) "akZ" = ( /obj/structure/surface/table/reinforced, @@ -4192,10 +3275,7 @@ /obj/item/stack/sheet/mineral/phoron, /obj/item/stack/sheet/mineral/phoron, /obj/item/stack/sheet/mineral/phoron, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2/northwest, /area/prison/research/secret/chemistry) "alb" = ( /obj/structure/disposalpipe/segment{ @@ -4209,10 +3289,7 @@ /obj/effect/decal/siding{ icon_state = "siding2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "ald" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4227,10 +3304,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "alf" = ( /turf/closed/wall/r_wall/prison, @@ -4240,10 +3314,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/south) "alh" = ( /obj/structure/machinery/light/small{ @@ -4258,10 +3329,7 @@ dir = 8 }, /obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/south) "alj" = ( /obj/structure/window/reinforced, @@ -4269,20 +3337,14 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/south) "alk" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "all" = ( /obj/structure/disposalpipe/segment{ @@ -4320,10 +3382,7 @@ /obj/effect/decal/siding{ icon_state = "siding2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "als" = ( /obj/structure/machinery/light{ @@ -4435,18 +3494,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research/secret) "alQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/prison/research/secret) "alR" = ( /turf/closed/wall/prison, @@ -4454,10 +3508,7 @@ "alS" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/beakers, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2/northwest, /area/prison/research/secret/chemistry) "alT" = ( /obj/structure/surface/table/reinforced, @@ -4465,25 +3516,16 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2/northwest, /area/prison/research/secret/chemistry) "alU" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2/northwest, /area/prison/research/secret/chemistry) "alV" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2/northwest, /area/prison/research/secret/chemistry) "alW" = ( /obj/structure/surface/table/reinforced, @@ -4491,10 +3533,7 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2/northwest, /area/prison/research/secret/chemistry) "alX" = ( /obj/structure/machinery/light{ @@ -4506,20 +3545,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/north/north) "alZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/prison/cellblock/maxsec/south) "ama" = ( /obj/structure/surface/table/reinforced, @@ -4528,9 +3561,7 @@ /turf/open/floor/prison, /area/prison/research/secret/dissection) "amb" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research/secret) "amc" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -4540,10 +3571,7 @@ dir = 4 }, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/south) "ame" = ( /obj/structure/machinery/light/small{ @@ -4560,10 +3588,7 @@ dir = 8 }, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "amh" = ( /obj/structure/pipes/vents/pump{ @@ -4573,10 +3598,7 @@ /area/prison/cellblock/maxsec/south) "ami" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/prison/research/secret) "amj" = ( /obj/effect/landmark/hunter_primary, @@ -4593,10 +3615,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/south) "amm" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -4610,19 +3629,13 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "amo" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/bonegel, /obj/item/tool/surgery/bonesetter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "amp" = ( /obj/structure/surface/table/reinforced, @@ -4633,26 +3646,17 @@ /obj/item/tool/soap{ pixel_x = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "amq" = ( /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay/surgery) "amr" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay/surgery) "ams" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -4670,20 +3674,14 @@ "amv" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/prison/cellblock/maxsec/south) "amw" = ( /obj/structure/toilet{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/maxsec/south) "amx" = ( /obj/structure/machinery/flasher{ @@ -4717,17 +3715,11 @@ pixel_x = -4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "amC" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/prison/medbay/surgery) "amD" = ( /obj/structure/surface/table/reinforced, @@ -4760,69 +3752,47 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research/secret) "amI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/research/secret) "amJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret) "amK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/prison/research/secret) "amL" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "amM" = ( /obj/structure/machinery/computer/rdconsole, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "amN" = ( /obj/structure/machinery/computer/mecha, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "amO" = ( /obj/structure/machinery/computer/robotics, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "amP" = ( /obj/effect/decal/warning_stripes{ @@ -4841,24 +3811,15 @@ /area/prison/hanger/research) "amR" = ( /obj/structure/lamarr, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "amS" = ( /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hanger/research) "amT" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/north) "amV" = ( /obj/effect/decal/warning_stripes{ @@ -4889,10 +3850,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "anc" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -4909,10 +3867,7 @@ dir = 8; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/south) "anf" = ( /obj/structure/window/reinforced{ @@ -4922,10 +3877,7 @@ dir = 1 }, /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/maxsec/south) "ang" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -4954,29 +3906,17 @@ /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/retractor, /obj/item/tool/surgery/hemostat, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "ank" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay/surgery) "anl" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/prison/medbay/surgery) "anm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay/surgery) "ann" = ( /obj/structure/machinery/power/apc{ @@ -4984,19 +3924,14 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay/surgery) "ano" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "research_secret"; name = "Classified Research Shutters" }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research/secret) "anp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -5004,18 +3939,14 @@ name = "Classified Research Shutters" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research/secret) "anq" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "research_secret"; name = "Classified Research Shutters" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research/secret) "anr" = ( /obj/structure/surface/table/reinforced, @@ -5032,10 +3963,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "anv" = ( /turf/closed/wall/prison, @@ -5082,17 +4010,11 @@ /area/prison/security/checkpoint/maxsec_highsec) "anC" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/maxsec_highsec) "anD" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/maxsec_highsec) "anE" = ( /obj/structure/machinery/power/apc{ @@ -5100,24 +4022,15 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/maxsec_highsec) "anF" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/maxsec_highsec) "anG" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/maxsec_highsec) "anH" = ( /obj/structure/window/framed/prison/reinforced, @@ -5127,10 +4040,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/north/north) "anJ" = ( /obj/structure/machinery/light{ @@ -5140,56 +4050,36 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/north/north) "anK" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "anL" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/prison/medbay/surgery) "anM" = ( /obj/structure/machinery/optable, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay/surgery) "anN" = ( /obj/structure/machinery/computer/operating, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay/surgery) "anO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay/surgery) "anP" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research) "anQ" = ( /obj/structure/window/framed/prison/reinforced, @@ -5227,28 +4117,19 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "anY" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/north) "anZ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec_highsec) "aoa" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -5259,29 +4140,20 @@ /area/prison/security/checkpoint/maxsec_highsec) "aod" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec_highsec) "aoe" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "aof" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "aog" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5321,9 +4193,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/south) "aom" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/north/north) "aon" = ( /obj/structure/window/framed/prison/cell, @@ -5333,10 +4203,7 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/north) "aop" = ( /obj/structure/machinery/light/small{ @@ -5349,10 +4216,7 @@ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "aor" = ( /turf/closed/wall/prison, @@ -5362,45 +4226,27 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "aot" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/north) "aou" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/north/north) "aov" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/north/north) "aow" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/north) "aox" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "aoy" = ( /obj/structure/machinery/flasher{ @@ -5424,16 +4270,10 @@ /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/circular_saw, /obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "aoC" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/prison/medbay/surgery) "aoD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5444,10 +4284,7 @@ icon_state = "pipe-c" }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay/surgery) "aoE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5456,10 +4293,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay/surgery) "aoF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5469,10 +4303,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay/surgery) "aoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5481,10 +4312,7 @@ /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "Operating Theatre" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "aoH" = ( /obj/structure/pipes/vents/pump{ @@ -5493,28 +4321,19 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding6" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "aoI" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding9" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "aoJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research) "aoK" = ( /obj/structure/bed/chair/office/dark{ @@ -5530,36 +4349,21 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "aoO" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "aoP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/north/north) "aoQ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "aoR" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "aoS" = ( /obj/effect/landmark/hunter_primary, @@ -5567,32 +4371,20 @@ /area/prison/cellblock/highsec/north/north) "aoT" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "aoU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/north/north) "aoV" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "aoW" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec_highsec) "aoX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -5610,16 +4402,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2, /area/prison/security/checkpoint/maxsec_highsec) "apa" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/maxsec_highsec) "apc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5629,10 +4416,7 @@ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "ape" = ( /obj/structure/pipes/vents/scrubber, @@ -5671,40 +4455,23 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/north/north) "apk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/north) "apl" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "apm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/north) "apn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "apo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "app" = ( /obj/structure/machinery/light/small{ @@ -5723,10 +4490,7 @@ /area/prison/cellblock/maxsec/south) "aps" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "apt" = ( /turf/closed/wall/r_wall/prison, @@ -5746,29 +4510,20 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "apy" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/FixOVein, /obj/item/tool/surgery/surgicaldrill, /obj/item/tool/surgery/cautery, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "apz" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/prison/medbay/surgery) "apA" = ( /obj/effect/decal/warning_stripes{ @@ -5793,17 +4548,12 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/north) "apD" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay/surgery) "apE" = ( /obj/structure/machinery/holosign_switch{ @@ -5813,41 +4563,27 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay/surgery) "apF" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/prison/medbay/surgery) "apG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research) "apH" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "apI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "apJ" = ( /obj/structure/window/reinforced, @@ -5855,25 +4591,16 @@ dir = 8 }, /obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/medbay) "apK" = ( /turf/closed/wall/prison, /area/prison/medbay) "apL" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay) "apM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "apN" = ( /obj/effect/decal/cleanable/blood/oil, @@ -5887,23 +4614,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "apR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "apS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "apT" = ( /obj/effect/decal/cleanable/blood, @@ -5913,18 +4631,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 8 - }, +/turf/open/floor/prison/west, /area/prison/research/RD) "apU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 8 - }, +/turf/open/floor/prison/west, /area/prison/research/RD) "apV" = ( /obj/effect/landmark/good_item, @@ -5934,59 +4648,41 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "apX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "apY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/north/north) "apZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/north) "aqa" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/north) "aqb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/north/north) "aqc" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/north/north) "aqd" = ( /turf/closed/wall/r_wall/prison, @@ -5995,19 +4691,13 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "aqf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/north/north) "aqg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6016,28 +4706,20 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec_highsec) "aqh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/maxsec_highsec) "aqi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec_highsec) "aqj" = ( /obj/effect/decal/warning_stripes{ @@ -6060,29 +4742,18 @@ "aql" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec_highsec) "aqm" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/maxsec_highsec) "aqn" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec_highsec) "aqo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "aqq" = ( /obj/structure/machinery/light{ @@ -6092,10 +4763,7 @@ id = "suspended_WWS"; pixel_x = 24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "aqr" = ( /obj/structure/machinery/light{ @@ -6105,10 +4773,7 @@ id = "suspended_WES"; pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "aqs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6123,32 +4788,20 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aqu" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Medical Cell" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aqv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/prison/medbay) "aqw" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "aqx" = ( /obj/structure/machinery/light{ @@ -6168,10 +4821,7 @@ id = "suspended_EES"; pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "aqz" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -6183,55 +4833,38 @@ dir = 2; name = "Operating Theatre" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay/surgery) "aqA" = ( /obj/structure/machinery/door/airlock/glass_command, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "aqB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "aqC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "aqD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8 - }, +/turf/open/floor/prison/west, /area/prison/research/RD) "aqE" = ( /obj/structure/displaycase/destroyed, /obj/item/shard, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/research/RD) "aqF" = ( /obj/structure/surface/table/reinforced, @@ -6239,94 +4872,62 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/landing/console2) "aqG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "aqH" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "aqI" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/north/north) "aqJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/cellblock/highsec/north/north) "aqK" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "aqL" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec_highsec) "aqM" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec_highsec) "aqN" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec_highsec) "aqO" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec_highsec) "aqQ" = ( /obj/structure/surface/table/reinforced{ flipped = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "aqR" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -6334,9 +4935,7 @@ flipped = 1 }, /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/north/north) "aqS" = ( /obj/structure/pipes/vents/pump{ @@ -6355,20 +4954,14 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aqU" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/prison/medbay) "aqV" = ( /obj/structure/machinery/light{ @@ -6380,45 +4973,30 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "aqW" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aqX" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aqY" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aqZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "ara" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6427,10 +5005,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "arb" = ( /obj/structure/disposalpipe/segment{ @@ -6440,16 +5015,10 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "arc" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/prison/medbay) "ard" = ( /obj/structure/window/reinforced{ @@ -6461,67 +5030,46 @@ name = "Classified Research Lockdown" }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "are" = ( /obj/structure/closet/secure_closet/RD, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "arf" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research) "arh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research) "ari" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/research) "arj" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "ark" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "arl" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "arm" = ( /obj/effect/decal/warning_stripes{ @@ -6530,9 +5078,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 8 - }, +/turf/open/floor/prison/west, /area/prison/research/RD) "arn" = ( /obj/effect/decal/warning_stripes{ @@ -6543,9 +5089,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8 - }, +/turf/open/floor/prison/west, /area/prison/research/RD) "aro" = ( /obj/structure/window/framed/prison/reinforced, @@ -6557,40 +5101,25 @@ pixel_x = 12 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/north) "arq" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/cellblock/highsec/north/north) "arr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/north/north) "ars" = ( /obj/structure/girder, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "art" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/girder, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "aru" = ( /obj/structure/toilet{ @@ -6599,36 +5128,24 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/maxsec/south) "arv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "arw" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/prison/medbay) "arx" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay) "ary" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay) "arB" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ @@ -6664,10 +5181,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "arH" = ( /obj/structure/stairs/perspective{ @@ -6678,10 +5192,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "arI" = ( /obj/structure/machinery/light{ @@ -6694,65 +5205,43 @@ /area/prison/hangar_storage/research) "arK" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "arL" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "arM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "arN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research) "arO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research) "arP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/prison/research) "arQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "arR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "arT" = ( /obj/structure/machinery/power/apc{ @@ -6761,25 +5250,16 @@ start_charge = 0 }, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "arU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "arV" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/maxsec/south) "arW" = ( /obj/structure/pipes/unary/freezer{ @@ -6796,10 +5276,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "arZ" = ( /obj/structure/morgue, @@ -6812,43 +5289,28 @@ /turf/open/floor/prison, /area/prison/medbay/morgue) "asb" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "asc" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research) "asd" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/research) "ase" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "asf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "asg" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "asi" = ( /obj/structure/machinery/light/small{ @@ -6867,10 +5329,7 @@ "ask" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "asl" = ( /obj/structure/pipes/standard/manifold/visible{ @@ -6882,35 +5341,25 @@ /obj/structure/pipes/standard/manifold/visible{ layer = 2.3 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/medbay) "asn" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/medbay) "aso" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "asp" = ( /obj/structure/surface/table/reinforced, /obj/item/device/defibrillator, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "asq" = ( /obj/structure/surface/table/reinforced, @@ -6919,65 +5368,44 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "asr" = ( /obj/structure/surface/table/reinforced, /obj/item/bodybag/cryobag, /obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "ass" = ( /obj/structure/bed/chair/wheelchair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay) "ast" = ( /obj/structure/bed/chair/wheelchair, /obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/prison/medbay) "asu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "asv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "asw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "asx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6987,68 +5415,46 @@ dir = 2; name = "Research Hallway" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "asy" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "asz" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "asA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/prison/research) "asC" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "asD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "asF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "asG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Biological Research Department" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "asI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/hanger/research) "asJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -7058,67 +5464,45 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "asK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "asL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hangar_storage/research) "asM" = ( /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hangar_storage/research) "asO" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/north/north) "asP" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/north/north) "asQ" = ( /obj/structure/pipes/portables_connector{ dir = 1 }, /obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/medbay) "asR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/prison/medbay) "asS" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = 28 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "asT" = ( /obj/structure/surface/table/reinforced, @@ -7127,28 +5511,19 @@ pixel_x = 6; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "asU" = ( /obj/item/roller{ icon_state = "down" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "asV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research) "asW" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7156,58 +5531,40 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "asX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "asY" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research) "asZ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research) "ata" = ( /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "atb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research) "atd" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "ate" = ( /obj/structure/machinery/power/apc{ @@ -7215,10 +5572,7 @@ start_charge = 0 }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "atf" = ( /turf/closed/wall/r_wall/prison, @@ -7227,47 +5581,31 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "ath" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "ati" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "atj" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "atk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "atl" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "atm" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -7275,19 +5613,14 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/north/north) "ato" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2; name = "Maximum-Security Suspended Cellblock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "atp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7295,56 +5628,35 @@ dir = 2; name = "Maximum-Security Suspended Cellblock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "atq" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "atr" = ( /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/prison/medbay) "ats" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/prison/medbay) "att" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "atu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/prison/medbay) "atv" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "atw" = ( /obj/structure/surface/rack, @@ -7354,10 +5666,7 @@ /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "atx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7365,9 +5674,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Research Common Room" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "aty" = ( /obj/structure/window/framed/prison/reinforced, @@ -7375,28 +5682,19 @@ /area/prison/hangar_storage/research) "atz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/north/north) "atB" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "atD" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research) "atE" = ( /obj/structure/machinery/light{ @@ -7420,10 +5718,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "atI" = ( /obj/structure/machinery/power/apc{ @@ -7443,17 +5738,11 @@ /turf/open/floor/prison, /area/prison/research/secret) "atL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "atN" = ( /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "atO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7464,10 +5753,7 @@ icon_state = "door_open"; name = "Cell Access" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "atP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7476,26 +5762,17 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "atQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "atR" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "atS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7504,19 +5781,13 @@ /obj/structure/machinery/camera/autoname{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "atT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "atU" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -7532,64 +5803,40 @@ /area/prison/cellblock/maxsec/south) "aua" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aub" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "auc" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aud" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "aue" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/prison/medbay) "auf" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aug" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "auh" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research) "aui" = ( /obj/item/device/camera, @@ -7598,57 +5845,38 @@ "auj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research) "auk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research) "aul" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "aum" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "aun" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/research) "auo" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "aup" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/grilledcheese, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "auq" = ( /obj/structure/surface/table/reinforced, @@ -7656,22 +5884,16 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "aur" = ( /obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "aus" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "aut" = ( /obj/structure/bookcase, @@ -7682,10 +5904,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/north/north) "aux" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7706,49 +5925,31 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Maximum-Security Suspended Cellblock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "auB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "auC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "auD" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "auE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "auF" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "auG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -7756,20 +5957,14 @@ icon_state = "door_open"; name = "Cell Access" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "auH" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "auI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7786,10 +5981,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "auM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7798,70 +5990,47 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Infirmary Storage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "auN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "auP" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "auQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "auR" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "auS" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "auT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/hanger/research) "auU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "auV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "auW" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -7876,37 +6045,22 @@ pixel_x = -12 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "auY" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec) "auZ" = ( /turf/open/floor/prison, /area/prison/security/checkpoint/maxsec) "ava" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security/checkpoint/maxsec) "avb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/security/checkpoint/maxsec) "avc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec) "avd" = ( /obj/structure/machinery/light{ @@ -7915,74 +6069,50 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "ave" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay) "avf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "avg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/prison/medbay) "avh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/prison/medbay) "avi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/prison/medbay) "avj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "avk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "avl" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -7995,46 +6125,30 @@ /obj/structure/closet/secure_closet/chemical{ req_access_txt = "100" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "avp" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "avq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "avr" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/maxsec/south) "avs" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "avu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Research Hangar Storage" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "avw" = ( /obj/structure/pipes/vents/scrubber{ @@ -8055,16 +6169,10 @@ /area/prison/research) "avE" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/north/north) "avF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/north/north) "avH" = ( /obj/structure/window/framed/prison/reinforced, @@ -8072,10 +6180,7 @@ /area/prison/cellblock/highsec/north/north) "avI" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "avJ" = ( /obj/structure/closet, @@ -8111,9 +6216,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "avP" = ( /obj/structure/closet, @@ -8128,9 +6231,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "avR" = ( /obj/structure/sink{ @@ -8139,9 +6240,7 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "avS" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -8168,51 +6267,33 @@ /area/prison/chapel) "avW" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "avX" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, +/turf/open/floor/chapel/northeast, /area/prison/chapel) "avY" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "avZ" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, +/turf/open/floor/chapel/northeast, /area/prison/chapel) "awa" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "awb" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "awc" = ( /obj/structure/machinery/power/apc{ @@ -8220,10 +6301,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "awe" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -8237,20 +6315,14 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "awh" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/prison/medbay) "awi" = ( /obj/structure/surface/table/woodentable, @@ -8261,9 +6333,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay) "awk" = ( /obj/structure/machinery/light/small{ @@ -8273,39 +6343,27 @@ /area/prison/residential/north) "awl" = ( /obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "awm" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "awn" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "awo" = ( /turf/open/floor/plating, /area/prison/residential/north) "awp" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/prison/medbay) "awq" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "awr" = ( /obj/structure/machinery/light/small{ @@ -8317,20 +6375,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aww" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "Infirmary Storage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "awx" = ( /obj/structure/machinery/light, @@ -8338,52 +6390,37 @@ /area/prison/medbay/morgue) "awy" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "awz" = ( /obj/structure/surface/table/reinforced, /obj/item/pizzabox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "awA" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "awB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "awC" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "awD" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/head/chefhat, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "awF" = ( /obj/effect/landmark/crap_item, @@ -8394,9 +6431,7 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "awH" = ( /obj/structure/surface/rack, @@ -8405,9 +6440,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "awI" = ( /turf/open/floor/carpet, @@ -8432,36 +6465,24 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "awS" = ( /obj/structure/bed/chair, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "awT" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "awU" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/north) "awV" = ( /turf/open/floor/wood, @@ -8480,27 +6501,19 @@ /area/prison/chapel) "awY" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/prison/chapel) "awZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/prison/chapel) "axa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/prison/chapel) "axb" = ( /turf/open/floor/wood, @@ -8513,9 +6526,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "axd" = ( /obj/structure/bed/chair/wood/normal{ @@ -8524,9 +6535,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/prison/chapel) "axe" = ( /obj/structure/bed/chair/wood/normal{ @@ -8535,28 +6544,20 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/prison/chapel) "axf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "axg" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/prison/chapel) "axh" = ( /obj/effect/landmark/monkey_spawn, @@ -8571,10 +6572,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "axk" = ( /obj/structure/surface/table/reinforced, @@ -8586,52 +6584,34 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay) "axl" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/med_data/laptop{ pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "axm" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "axn" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/prison/medbay) "axo" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "axp" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "axr" = ( /obj/structure/pipes/vents/pump{ @@ -8643,41 +6623,29 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "axu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "axv" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "axw" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "axx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "axy" = ( /obj/effect/decal/warning_stripes{ @@ -8686,9 +6654,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "axz" = ( /obj/effect/decal/warning_stripes{ @@ -8697,9 +6663,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "axA" = ( /obj/effect/decal/warning_stripes{ @@ -8708,9 +6672,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "axB" = ( /obj/effect/decal/warning_stripes{ @@ -8719,9 +6681,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "axC" = ( /obj/effect/decal/warning_stripes{ @@ -8730,39 +6690,26 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "axE" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; name = "Staff-Research Maintenance" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/research) "axF" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "axG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "axH" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "axI" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -8772,10 +6719,7 @@ /area/prison/maintenance/residential/access/north) "axK" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "axL" = ( /turf/closed/wall/r_wall/prison, @@ -8824,41 +6768,28 @@ /area/prison/maintenance/residential/access/north) "axV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/north) "axW" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/north) "axX" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "axY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood, /area/prison/chapel) "aya" = ( -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, +/turf/open/floor/chapel/northeast, /area/prison/chapel) "ayb" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "ayc" = ( /obj/structure/barricade/wooden{ @@ -8872,35 +6803,22 @@ /turf/open/floor/prison, /area/prison/research/secret) "ayd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/maxsec) "aye" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "ayf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/prison/security/checkpoint/maxsec) "ayg" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/medbay) "ayh" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "ayk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -8912,18 +6830,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aym" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "ayn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -8933,70 +6845,47 @@ /area/prison/residential/north) "ayo" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/medbay/foyer) "ayp" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/medbay/foyer) "ayq" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/medbay/foyer) "ayr" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/medbay/foyer) "ays" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "ayt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "ayu" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "ayx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "ayy" = ( /turf/closed/wall/r_wall/prison, @@ -9016,9 +6905,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "ayD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9073,10 +6960,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/north) "ayM" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -9086,30 +6970,21 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/north) "ayO" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/north) "ayP" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/north) "ayR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/n) "ayS" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -9130,24 +7005,16 @@ /turf/open/floor/wood, /area/prison/chapel) "ayW" = ( -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/prison/chapel) "ayX" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/prison/chapel) "ayY" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/prison/chapel) "ayZ" = ( /obj/effect/landmark/corpsespawner/scientist, @@ -9157,10 +7024,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec) "azb" = ( /obj/effect/landmark/yautja_teleport, @@ -9171,10 +7035,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec) "azd" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -9182,19 +7043,13 @@ "azf" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "azg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "azh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9203,27 +7058,18 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Doctor's Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "azk" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/prison/medbay) "azl" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "azm" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -9232,35 +7078,25 @@ /turf/open/floor/prison, /area/prison/medbay) "azn" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/medbay/foyer) "azo" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/medbay/foyer) "azp" = ( /obj/structure/bed/chair/office/dark, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/medbay/foyer) "azq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/medbay/foyer) "azr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9273,35 +7109,25 @@ /area/prison/research) "azu" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "azv" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "azw" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/hanger/research) "azx" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/hanger/research) "azy" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/hanger/research) "azz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9333,25 +7159,16 @@ /area/prison/maintenance/staff_research) "azD" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/prison/medbay) "azG" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "azI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "azJ" = ( /obj/structure/bed/chair/comfy{ @@ -9367,25 +7184,16 @@ /area/prison/residential/north) "azL" = ( /obj/structure/bed/sofa/south/grey, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "azM" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "azN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "azO" = ( /obj/structure/pipes/vents/pump{ @@ -9407,60 +7215,39 @@ /area/prison/maintenance/residential/access/north) "azR" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "azS" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "azT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "azU" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/n) "azV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/recreation/highsec/n) "azW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/recreation/highsec/n) "azX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/recreation/highsec/n) "azY" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/recreation/highsec/n) "azZ" = ( /obj/structure/toilet{ @@ -9469,14 +7256,10 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/highsec/n) "aAa" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/highsec/n) "aAb" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -9490,10 +7273,7 @@ "aAe" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aAf" = ( /turf/open/floor/carpet, @@ -9510,16 +7290,10 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aAk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aAl" = ( /obj/structure/machinery/door/morgue{ @@ -9541,10 +7315,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/maxsec) "aAo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9554,9 +7325,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aAp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9565,9 +7334,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aAq" = ( /obj/structure/machinery/power/apc{ @@ -9580,9 +7347,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aAs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9591,10 +7356,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aAt" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -9602,10 +7364,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aAu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -9614,9 +7373,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aAv" = ( /turf/closed/wall/r_wall/prison, @@ -9626,63 +7383,42 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aAx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aAy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aAz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "aAA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = -28 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/maxsec) "aAB" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/maxsec) "aAC" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/maxsec) "aAD" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/maxsec) "aAE" = ( /obj/structure/toilet{ @@ -9691,10 +7427,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/medbay) "aAF" = ( /obj/structure/sink{ @@ -9703,10 +7436,7 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/prison/medbay) "aAG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -9715,53 +7445,37 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aAH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aAI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "aAJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay) "aAL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay) "aAN" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/prison/medbay) "aAO" = ( /turf/open/space, @@ -9769,43 +7483,26 @@ "aAP" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aAQ" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aAR" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/prison/medbay) "aAS" = ( /obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/medbay) "aAT" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/prison/medbay) "aAU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/medbay/foyer) "aAV" = ( /obj/structure/surface/table/reinforced, @@ -9818,28 +7515,19 @@ pixel_y = 8 }, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/medbay/foyer) "aAW" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/medbay/foyer) "aAX" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/medbay/foyer) "aAY" = ( /obj/structure/machinery/power/apc{ @@ -9847,10 +7535,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research) "aAZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9860,9 +7545,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "aBa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9871,9 +7554,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "aBb" = ( /obj/structure/machinery/light, @@ -9883,9 +7564,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "aBc" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -9895,19 +7574,13 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/prison/research) "aBe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "aBf" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -9917,10 +7590,7 @@ /turf/closed/wall/prison, /area/prison/recreation/highsec/n) "aBh" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/recreation/highsec/n) "aBi" = ( /obj/structure/surface/rack, @@ -9938,9 +7608,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding3" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/north) "aBn" = ( /obj/structure/flora/tree/dead/tree_1, @@ -9950,17 +7618,13 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding5" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/north) "aBu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aBv" = ( /obj/effect/decal/warning_stripes{ @@ -9972,54 +7636,35 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aBx" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aBy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aBz" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/n) "aBA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aBB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/n) "aBC" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "Toilet" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/highsec/n) "aBD" = ( /turf/closed/wall/prison, @@ -10038,28 +7683,19 @@ /area/prison/chapel) "aBG" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aBH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aBI" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aBJ" = ( /obj/structure/surface/table/woodentable, @@ -10098,25 +7734,16 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "Maximum-Security Wing" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aBN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aBO" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec) "aBP" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -10124,27 +7751,18 @@ dir = 2; name = "Infirmary Reception" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aBQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "Infirmary" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aBR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aBS" = ( /obj/structure/sign/safety/medical, @@ -10155,10 +7773,7 @@ dir = 2; name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/medbay/foyer) "aBU" = ( /obj/structure/window/framed/prison/reinforced, @@ -10167,24 +7782,17 @@ "aBV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "aBW" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "aBX" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding12" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/north) "aBY" = ( /obj/structure/toilet{ @@ -10193,9 +7801,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aBZ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -10204,29 +7810,21 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aCa" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aCb" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aCc" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aCd" = ( /obj/structure/machinery/shower{ @@ -10235,9 +7833,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aCe" = ( /obj/structure/bed, @@ -10249,55 +7845,37 @@ /turf/open/floor/wood, /area/prison/quarters/research) "aCg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/south) "aCh" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/south) "aCi" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/south) "aCj" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/north/south) "aCk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/south) "aCl" = ( /turf/closed/wall/prison, /area/prison/cellblock/highsec/north/south) "aCm" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/south) "aCn" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aCo" = ( /obj/structure/surface/table, @@ -10321,51 +7899,36 @@ /area/prison/recreation/highsec/n) "aCz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aCA" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aCB" = ( /obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aCC" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/recreation/highsec/n) "aCE" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/highsec/n) "aCF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/highsec/n) "aCG" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/highsec/n) "aCH" = ( /obj/structure/filingcabinet, @@ -10384,17 +7947,11 @@ /turf/open/floor/wood, /area/prison/chapel) "aCK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "aCL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aCM" = ( /obj/structure/window/framed/prison/reinforced{ @@ -10404,25 +7961,16 @@ /area/prison/chapel) "aCN" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/maxsec) "aCO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/maxsec) "aCP" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aCQ" = ( /obj/structure/surface/table/reinforced, @@ -10430,10 +7978,7 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aCR" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -10442,28 +7987,19 @@ /area/prison/security/checkpoint/maxsec) "aCS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/maxsec) "aCT" = ( /turf/closed/wall/prison, /area/prison/security/checkpoint/maxsec) "aCU" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec) "aCV" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aCW" = ( /turf/closed/wall/r_wall/prison, @@ -10473,75 +8009,48 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay) "aCY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/prison/medbay) "aCZ" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aDa" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/medbay) "aDb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aDc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aDd" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aDe" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aDf" = ( /obj/structure/bed/chair, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aDg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aDh" = ( /obj/structure/machinery/power/apc{ @@ -10549,17 +8058,11 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aDi" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aDj" = ( /obj/structure/sign/safety/restrictedarea, @@ -10569,42 +8072,28 @@ /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/research) "aDl" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/research) "aDm" = ( /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/research) "aDn" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "aDo" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "aDp" = ( /obj/structure/sink{ @@ -10615,14 +8104,10 @@ pixel_x = -26 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aDq" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aDr" = ( /obj/structure/sink{ @@ -10633,9 +8118,7 @@ pixel_x = 26 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aDs" = ( /obj/structure/machinery/light/small{ @@ -10684,10 +8167,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aDE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -10697,45 +8177,32 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aDG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aDH" = ( /obj/structure/surface/table/gamblingtable, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aDK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aDL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/n) "aDM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10745,48 +8212,31 @@ dir = 2; name = "North High-Security Recreation" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/recreation/highsec/n) "aDN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/recreation/highsec/n) "aDO" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/south) "aDP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/south) "aDQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aDR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/south) "aDS" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -10812,19 +8262,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security/checkpoint/maxsec) "aDW" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/maxsec) "aDX" = ( /obj/structure/surface/table/reinforced, @@ -10832,10 +8276,7 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aDY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -10849,35 +8290,23 @@ pixel_y = 8 }, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aEb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/maxsec) "aEc" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/security/checkpoint/maxsec) "aEd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec) "aEe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10892,47 +8321,32 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec) "aEg" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec) "aEh" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aEk" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aEl" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/eastleft, /obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aEm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10942,20 +8356,14 @@ /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aEn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aEo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10964,10 +8372,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aEq" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -10975,20 +8380,14 @@ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aEr" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aEs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10997,10 +8396,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aEt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11009,19 +8405,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "aEu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "aEv" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -11033,26 +8424,18 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "aEx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "aEz" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "aEA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11062,26 +8445,20 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aEB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aEC" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aED" = ( /turf/closed/wall/prison, @@ -11117,9 +8494,7 @@ /turf/open/floor/wood, /area/prison/quarters/research) "aEJ" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aEK" = ( /obj/structure/pipes/vents/scrubber{ @@ -11135,20 +8510,14 @@ /area/prison/maintenance/staff_research) "aEM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/central) "aEN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/cellblock/highsec/north/south) "aEO" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aEP" = ( /obj/structure/machinery/light/small{ @@ -11157,35 +8526,23 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/highsec/north/south) "aEQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/south) "aER" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/north/south) "aES" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "aET" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "aEU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/north/south) "aEV" = ( /obj/structure/window/framed/prison/cell, @@ -11195,10 +8552,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aEX" = ( /turf/closed/wall/r_wall/prison, @@ -11206,31 +8560,19 @@ "aEY" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "aEZ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/prison/hangar_storage/main) "aFa" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hangar_storage/main) "aFb" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hangar_storage/main) "aFc" = ( /obj/structure/machinery/power/apc{ @@ -11238,81 +8580,53 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/prison/hangar_storage/main) "aFd" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aFe" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aFg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aFh" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aFi" = ( /obj/structure/pipes/vents/scrubber, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aFj" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aFk" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aFl" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aFn" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/n) "aFo" = ( /obj/structure/surface/table/woodentable, @@ -11340,10 +8654,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "aFs" = ( /obj/structure/bed/chair/wood/normal{ @@ -11353,10 +8664,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, +/turf/open/floor/chapel/northeast, /area/prison/chapel) "aFt" = ( /obj/structure/bed/chair/wood/normal{ @@ -11366,10 +8674,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "aFu" = ( /obj/structure/machinery/door/morgue{ @@ -11390,10 +8695,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec) "aFx" = ( /obj/structure/pipes/vents/scrubber{ @@ -11407,10 +8709,7 @@ dir = 4 }, /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec) "aFA" = ( /turf/closed/wall/r_wall/prison, @@ -11425,15 +8724,10 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/maxsec) "aFE" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/residential/central) "aFF" = ( /obj/structure/pipes/vents/scrubber{ @@ -11444,38 +8738,25 @@ "aFG" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/maxsec) "aFH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/residential/central) "aFI" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/maxsec) "aFJ" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/maxsec) "aFK" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/maxsec) "aFL" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -11487,67 +8768,45 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/prison/medbay) "aFN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/prison/medbay) "aFO" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aFP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aFQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 2; name = "Infirmary Foyer" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "aFS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aFT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 2; name = "Biological Research Department" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "aFU" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "aFV" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -11561,70 +8820,47 @@ dir = 2; name = "Research Common Room" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "aFY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/prison/research) "aFZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research) "aGa" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aGb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aGc" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/south) "aGg" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/south) "aGh" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aGi" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -11635,9 +8871,7 @@ name = "Research Restrooms"; req_one_access = null }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/toilet/research) "aGj" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -11659,35 +8893,20 @@ /obj/structure/surface/rack, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "aGn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/hangar_storage/main) "aGo" = ( /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hangar_storage/main) "aGp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hangar_storage/main) "aGq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/hangar_storage/main) "aGs" = ( /obj/structure/sink{ @@ -11697,9 +8916,7 @@ /obj/structure/mirror{ pixel_x = -26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aGt" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -11708,39 +8925,29 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aGu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aGv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aGw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aGx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aGA" = ( /obj/structure/sink{ @@ -11750,17 +8957,13 @@ /obj/structure/mirror{ pixel_x = 26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aGB" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aGC" = ( /obj/structure/machinery/power/apc{ @@ -11768,38 +8971,25 @@ start_charge = 0 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/recreation/highsec/n) "aGD" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/recreation/highsec/n) "aGE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/recreation/highsec/n) "aGF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/recreation/highsec/n) "aGG" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/recreation/highsec/n) "aGH" = ( /obj/structure/surface/table/woodentable, @@ -11824,10 +9014,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/prison/chapel) "aGM" = ( /obj/structure/bed/chair/wood/normal{ @@ -11837,48 +9024,31 @@ dir = 1; network = list("PRISON") }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/prison/chapel) "aGN" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/prison/chapel) "aGO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Chapel" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "aGP" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/maxsec) "aGQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/security/checkpoint/maxsec) "aGS" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/maxsec) "aGT" = ( /obj/structure/surface/table/reinforced, @@ -11890,31 +9060,19 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aGU" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "aGV" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/prison/medbay) "aGW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/prison/medbay) "aGX" = ( /obj/structure/surface/table/reinforced, @@ -11926,79 +9084,52 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aGY" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "aGZ" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aHa" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "aHc" = ( /obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research) "aHd" = ( /obj/structure/closet/firecloset, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "aHe" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research) "aHf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "aHg" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/research) "aHh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/research) "aHi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12007,53 +9138,36 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Research Dorms" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/quarters/research) "aHj" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "aHk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/prison/quarters/research) "aHl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/quarters/research) "aHn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/quarters/research) "aHo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/quarters/research) "aHq" = ( /obj/structure/machinery/alarm/almayer{ @@ -12062,56 +9176,39 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/quarters/research) "aHs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/quarters/research) "aHt" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding4" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "aHv" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aHw" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/south) "aHx" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/north/south) "aHy" = ( /obj/structure/machinery/light{ @@ -12120,26 +9217,17 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/quarters/research) "aHz" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/prison/quarters/research) "aHA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/prison/quarters/research) "aHB" = ( /obj/structure/window/reinforced{ @@ -12149,24 +9237,17 @@ dir = 4; layer = 3.3 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aHC" = ( /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aHD" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "aHE" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -12187,56 +9268,37 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aHI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aHJ" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aHK" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aHL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aHN" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "aHO" = ( /obj/structure/machinery/door/window/northright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aHP" = ( /obj/structure/window/reinforced{ @@ -12246,9 +9308,7 @@ dir = 8; layer = 3.3 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aHQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -12258,17 +9318,11 @@ /turf/open/floor/wood, /area/prison/storage/highsec/n) "aHR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/chapel) "aHS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/chapel) "aHT" = ( /obj/item/weapon/gun/rifle/m16, @@ -12295,61 +9349,43 @@ /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/medbay/foyer) "aHZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/quarters/research) "aIa" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/quarters/research) "aIb" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/quarters/research) "aIc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/quarters/research) "aId" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/quarters/research) "aIe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/quarters/research) "aIf" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/prison/quarters/research) "aIg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/prison/quarters/research) "aIh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12362,22 +9398,14 @@ /area/prison/quarters/research) "aIj" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/hangar_storage/main) "aIk" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/hangar_storage/main) "aIl" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/hangar_storage/main) "aIm" = ( /obj/structure/machinery/light{ @@ -12411,9 +9439,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/north/south) "aIu" = ( /obj/structure/machinery/alarm/almayer{ @@ -12422,34 +9448,22 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aIv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/residential/central) "aIw" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aIx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/north) "aIy" = ( /turf/closed/wall/r_wall/prison, @@ -12469,18 +9483,13 @@ /obj/effect/decal/siding{ icon_state = "siding2" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "aIB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "aIC" = ( /obj/structure/machinery/power/apc{ @@ -12505,24 +9514,15 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/south) "aII" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/hangar_storage/main) "aIJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/hangar_storage/main) "aIK" = ( /obj/structure/machinery/light/small{ @@ -12568,10 +9568,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/highsec/n) "aIT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12580,9 +9577,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec/n) "aIU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12592,31 +9587,22 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec/n) "aIV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec/n) "aIW" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec/n) "aIX" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/highsec/n) "aIY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12651,10 +9637,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/north) "aJc" = ( /obj/structure/disposalpipe/segment{ @@ -12681,9 +9664,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/quarters/research) "aJh" = ( /obj/structure/closet, @@ -12700,10 +9681,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/prison/research) "aJk" = ( /obj/structure/bed, @@ -12743,10 +9721,7 @@ /obj/structure/surface/rack, /obj/item/clothing/head/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "aJr" = ( /obj/structure/bed/chair/office/light, @@ -12759,10 +9734,7 @@ /turf/open/floor/wood, /area/prison/residential/north) "aJu" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/north/south) "aJv" = ( /obj/effect/landmark/corpsespawner/prisoner, @@ -12770,44 +9742,31 @@ /area/prison/cellblock/highsec/north/south) "aJw" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/highsec/n) "aJy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/highsec/n) "aJz" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/highsec/n) "aJA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/highsec/n) "aJB" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/highsec/n) "aJC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aJD" = ( /obj/structure/surface/table/reinforced, @@ -12815,10 +9774,7 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aJE" = ( /obj/structure/surface/table/reinforced, @@ -12830,28 +9786,19 @@ dir = 1 }, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aJF" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aJG" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aJH" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -12862,10 +9809,7 @@ dir = 2; name = "Central Ring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/north) "aJJ" = ( /obj/structure/disposalpipe/segment, @@ -12881,9 +9825,7 @@ pixel_x = -26 }, /obj/item/paper/crumpled/bloody, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/quarters/research) "aJM" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -12892,9 +9834,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/quarters/research) "aJN" = ( /turf/open/floor/carpet, @@ -12931,10 +9871,7 @@ /turf/open/floor/wood, /area/prison/quarters/research) "aJW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/quarters/research) "aJY" = ( /obj/structure/bed/chair/office/dark{ @@ -12955,10 +9892,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "aKd" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -12970,33 +9904,22 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/prison/hangar_storage/main) "aKg" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hangar_storage/main) "aKh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/hangar_storage/main) "aKi" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "aKj" = ( /obj/structure/surface/table/woodentable, @@ -13028,10 +9951,7 @@ /area/prison/residential/north) "aKs" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/south) "aKt" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -13056,44 +9976,30 @@ /turf/open/floor/plating, /area/prison/security/checkpoint/highsec/n) "aKz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/north/south) "aKA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/north/south) "aKB" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aKC" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aKD" = ( /obj/structure/machinery/shower{ dir = 4 }, /obj/structure/machinery/door/window/northright, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/quarters/research) "aKE" = ( /obj/structure/bookcase, @@ -13113,10 +10019,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/highsec/n) "aKH" = ( /turf/closed/wall/r_wall/prison, @@ -13127,32 +10030,20 @@ }, /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/n) "aKJ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/n) "aKK" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/n) "aKL" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/highsec/n) "aKM" = ( /obj/structure/surface/table/woodentable, @@ -13160,41 +10051,26 @@ /turf/open/floor/carpet, /area/prison/quarters/research) "aKN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aKO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/north) "aKP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/north) "aKQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aKR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aKS" = ( /obj/structure/pipes/vents/scrubber{ @@ -13232,10 +10108,7 @@ name = "Main Hangar Storage" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "aKZ" = ( /obj/structure/window/framed/prison/reinforced, @@ -13245,88 +10118,55 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) "aLd" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/siding{ icon_state = "siding8" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/residential/central) "aLe" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/south) "aLg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/north/south) "aLh" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/south) "aLi" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/south) "aLj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/south) "aLk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/checkpoint/highsec/n) "aLl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/security/checkpoint/highsec/n) "aLm" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/bed/chair/office, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/security/checkpoint/highsec/n) "aLo" = ( /obj/structure/bed/chair/office{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/security/checkpoint/highsec/n) "aLp" = ( /obj/structure/stairs/perspective{ @@ -13337,10 +10177,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/n) "aLq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13377,59 +10214,36 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/security/monitoring/lowsec/ne) "aLv" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/maintenance/staff_research) "aLw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/hallway/staff) "aLy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/staff) "aLz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/staff) "aLA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/staff) "aLC" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/staff) "aLD" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/hallway/staff) "aLE" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -13456,71 +10270,44 @@ "aLL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/security/checkpoint/highsec/n) "aLM" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/security/checkpoint/highsec/n) "aLN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/north/south) "aLO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/south) "aLP" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/n) "aLQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/n) "aLS" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aLT" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aLU" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aLV" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aLW" = ( /obj/structure/disposalpipe/segment{ @@ -13542,10 +10329,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/hallway/central/north) "aLY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aLZ" = ( /obj/structure/disposalpipe/segment{ @@ -13560,26 +10344,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/lowsec/ne) "aMb" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/lowsec/ne) "aMc" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/lowsec/ne) "aMd" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -13596,10 +10371,7 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "aMj" = ( /obj/effect/landmark/crap_item, @@ -13612,10 +10384,7 @@ "aMl" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aMm" = ( /obj/structure/machinery/power/apc{ @@ -13624,10 +10393,7 @@ start_charge = 0 }, /obj/structure/janitorialcart, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aMn" = ( /obj/structure/surface/rack, @@ -13656,53 +10422,35 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/quarters/staff) "aMs" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/quarters/staff) "aMt" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /obj/item/grown/sunflower, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aMu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/quarters/staff) "aMv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/quarters/staff) "aMw" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/quarters/staff) "aMy" = ( /obj/structure/machinery/light{ @@ -13711,10 +10459,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/quarters/staff) "aMz" = ( /obj/structure/machinery/power/apc{ @@ -13725,19 +10470,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/quarters/staff) "aMA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/quarters/staff) "aMB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13746,43 +10485,30 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Staff Quarters" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aMC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/staff) "aMD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/hallway/staff) "aME" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/hallway/staff) "aMF" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/hallway/staff) "aMG" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/hallway/staff) "aMJ" = ( /turf/closed/wall/prison, @@ -13792,42 +10518,27 @@ /obj/item/restraint/handcuffs, /obj/item/clothing/mask/muzzle, /obj/item/weapon/chainofcommand, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/command/secretary_office) "aML" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/command/secretary_office) "aMM" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/command/secretary_office) "aMN" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/command/secretary_office) "aMO" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/command/secretary_office) "aMP" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -13845,9 +10556,7 @@ /area/prison/command/office) "aMT" = ( /obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aMU" = ( /obj/structure/sink{ @@ -13860,9 +10569,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aMV" = ( /obj/structure/machinery/light/small{ @@ -13875,33 +10582,23 @@ /obj/structure/mirror{ pixel_x = -26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aMW" = ( /obj/structure/machinery/door/window/westleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aMX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/north/south) "aMY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/south) "aMZ" = ( /obj/structure/machinery/light{ @@ -13910,19 +10607,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/south) "aNa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/north/south) "aNb" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -13938,16 +10629,10 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/south) "aNf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/north/south) "aNg" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -13979,10 +10664,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/security/checkpoint/highsec/n) "aNn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13995,9 +10677,7 @@ dir = 2; name = "North High-Security Cellblock" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/security/checkpoint/highsec/n) "aNo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14006,9 +10686,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/n) "aNp" = ( /turf/closed/wall/prison, @@ -14023,9 +10701,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/security/checkpoint/highsec/n) "aNw" = ( /obj/structure/stairs/perspective{ @@ -14038,16 +10714,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/n) "aNx" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/cellblock/lowsec/nw) "aNy" = ( /obj/structure/machinery/light/small{ @@ -14057,51 +10727,33 @@ /area/prison/cellblock/lowsec/nw) "aNA" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/lowsec/ne) "aNB" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/prison/security/monitoring/lowsec/ne) "aNC" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/lowsec/ne) "aND" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "aNI" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-y" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aNJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aNK" = ( /obj/structure/disposalpipe/segment{ @@ -14128,98 +10780,66 @@ /area/prison/residential/north) "aNP" = ( /obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aNQ" = ( /obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/quarters/staff) "aNR" = ( /obj/item/shard, /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/quarters/staff) "aNS" = ( /obj/structure/window/reinforced, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/quarters/staff) "aNT" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aNU" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/bible/booze, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aNV" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/nw) "aNW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/nw) "aNX" = ( /obj/structure/window/reinforced, /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/quarters/staff) "aNY" = ( /obj/structure/machinery/door/window/southright, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aNZ" = ( /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/quarters/staff) "aOa" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Staff Quarters" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aOb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/hallway/staff) "aOc" = ( /obj/structure/disposalpipe/segment{ @@ -14236,59 +10856,40 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aOe" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aOf" = ( /obj/structure/bed/chair/comfy, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aOg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/staff) "aOh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/staff) "aOi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/prison/hallway/staff) "aOj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "aOk" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -14314,9 +10915,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/prison/hallway/staff) "aOn" = ( /obj/structure/window/reinforced, @@ -14326,9 +10925,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/staff) "aOo" = ( /obj/structure/disposalpipe/segment{ @@ -14337,10 +10934,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/prison/hallway/staff) "aOp" = ( /obj/structure/disposalpipe/segment{ @@ -14360,16 +10954,10 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/hallway/staff) "aOr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/staff) "aOs" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/command/secretary_office) "aOt" = ( /turf/closed/wall/r_wall/prison, @@ -14382,10 +10970,7 @@ /turf/open/floor/carpet, /area/prison/command/secretary_office) "aOw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/prison/command/secretary_office) "aOy" = ( /obj/structure/bed/chair/comfy, @@ -14417,23 +11002,17 @@ /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aOE" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aOF" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aOG" = ( /obj/structure/machinery/shower{ @@ -14442,61 +11021,44 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aOI" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "aOJ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "aOK" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "aOL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "aOM" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("PRISON") }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "aON" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/security/checkpoint/highsec/n) "aOO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/security/checkpoint/highsec/n) "aOP" = ( /obj/structure/machinery/light{ @@ -14505,60 +11067,38 @@ /obj/structure/bed/chair/office{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/security/checkpoint/highsec/n) "aOR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/security/checkpoint/highsec/n) "aOS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aOT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/nw) "aOU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/prison/cellblock/lowsec/nw) "aOV" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/nw) "aOW" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/nw) "aOY" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aOZ" = ( /obj/effect/decal/siding/wood_siding{ @@ -14571,40 +11111,25 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/lowsec/ne) "aPb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/lowsec/ne) "aPc" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "aPf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aPg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aPh" = ( /obj/effect/landmark/monkey_spawn, @@ -14623,9 +11148,7 @@ /turf/open/floor/prison, /area/prison/cleaning) "aPl" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aPm" = ( /obj/structure/bed, @@ -14633,9 +11156,7 @@ dir = 4; health = 80 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aPn" = ( /obj/structure/bed, @@ -14644,9 +11165,7 @@ health = 80 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aPo" = ( /obj/structure/bed, @@ -14655,9 +11174,7 @@ health = 80 }, /obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aPp" = ( /turf/closed/wall/prison, @@ -14666,31 +11183,21 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/staff) "aPr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/hallway/staff) "aPs" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/prison/hallway/staff) "aPt" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/hallway/staff) "aPu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14699,10 +11206,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "aPv" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -14722,45 +11226,30 @@ /turf/open/floor/wood, /area/prison/hallway/staff) "aPx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/nw) "aPy" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/nw) "aPz" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aPA" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/nw) "aPB" = ( /obj/structure/showcase, /turf/open/floor/wood, /area/prison/hallway/staff) "aPC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aPD" = ( /obj/structure/showcase{ @@ -14776,10 +11265,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aPG" = ( /obj/structure/window/reinforced{ @@ -14792,17 +11278,11 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/hallway/staff) "aPI" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/prison/hallway/staff) "aPJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -14816,24 +11296,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "aPM" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aPN" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/command/secretary_office) "aPO" = ( /obj/structure/bed/chair/office/dark, @@ -14855,10 +11326,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/command/secretary_office) "aPS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14913,21 +11381,14 @@ /turf/open/floor/wood, /area/prison/command/office) "aQb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/cellblock/highsec/north/south) "aQc" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/cellblock/highsec/north/south) "aQd" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/cellblock/highsec/north/south) "aQe" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -14935,9 +11396,7 @@ dir = 2; name = "Security Booth" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/n) "aQf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -14946,30 +11405,18 @@ "aQg" = ( /obj/structure/surface/table/gamblingtable, /obj/item/spacecash/c1000, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aQh" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/prison/cellblock/lowsec/nw) "aQi" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/nw) "aQj" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/nw) "aQk" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -14977,9 +11424,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "aQl" = ( /obj/structure/window/framed/prison/cell, @@ -14989,10 +11434,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Low-Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/north) "aQn" = ( /obj/structure/window/framed/prison/cell, @@ -15004,9 +11446,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/ne) "aQp" = ( /turf/closed/wall/prison, @@ -15021,26 +11461,17 @@ dir = 2; name = "Northeast Low-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "aQt" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aQu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/cleaning) "aQv" = ( /obj/structure/reagent_dispensers/watertank, @@ -15055,9 +11486,7 @@ /obj/structure/surface/table/reinforced, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aQy" = ( /obj/structure/closet, @@ -15065,16 +11494,12 @@ dir = 4; health = 80 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aQz" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "aQA" = ( /obj/structure/machinery/shower{ @@ -15083,16 +11508,10 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/toilet/staff) "aQB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/staff) "aQC" = ( /turf/closed/wall/prison, @@ -15103,10 +11522,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/staff) "aQF" = ( /obj/structure/surface/table/woodentable/fancy, @@ -15118,10 +11534,7 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/command/secretary_office) "aQG" = ( /obj/structure/surface/table/woodentable/fancy, @@ -15151,10 +11564,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/command/secretary_office) "aQL" = ( /obj/structure/machinery/light{ @@ -15198,20 +11608,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/nw) "aQU" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "Toilet" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/nw) "aQV" = ( /obj/structure/pipes/vents/pump/on, @@ -15229,14 +11633,10 @@ /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/ne) "aRa" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/ne) "aRb" = ( /obj/structure/pipes/vents/scrubber, @@ -15246,10 +11646,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "aRe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15272,10 +11669,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aRi" = ( /obj/structure/machinery/shower{ @@ -15284,30 +11678,18 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aRj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aRk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aRl" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aRm" = ( /obj/structure/machinery/shower{ @@ -15316,18 +11698,12 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aRn" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aRo" = ( /obj/structure/surface/table/reinforced, @@ -15339,24 +11715,15 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aRp" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aRq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aRr" = ( /turf/closed/wall/r_wall/prison, @@ -15365,15 +11732,10 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/nw) "aRt" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "aRv" = ( /obj/structure/machinery/power/apc{ @@ -15381,102 +11743,65 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/nw) "aRw" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/nw) "aRx" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/nw) "aRz" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/ne) "aRA" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/cellblock/lowsec/ne) "aRB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/ne) "aRC" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/ne) "aRE" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/ne) "aRF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/ne) "aRG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/ne) "aRH" = ( /obj/effect/decal/siding/wood_siding, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "aRI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/security/monitoring/lowsec/ne) "aRK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "aRL" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -15486,9 +11811,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aRM" = ( /obj/structure/machinery/vending/cola, @@ -15506,10 +11829,7 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/command/secretary_office) "aRQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15541,10 +11861,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/command/secretary_office) "aRX" = ( /obj/structure/surface/rack, @@ -15585,9 +11902,7 @@ /area/prison/maintenance/residential/nw) "aSf" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "aSg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -15604,10 +11919,7 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aSl" = ( /obj/structure/machinery/shower{ @@ -15617,10 +11929,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aSm" = ( /obj/structure/machinery/shower{ @@ -15632,54 +11941,33 @@ health = 80 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aSn" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aSp" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aSq" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/highsec/n) "aSr" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/n) "aSs" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/highsec/n) "aSt" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aSu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15689,10 +11977,7 @@ /area/prison/cellblock/lowsec/nw) "aSw" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aSx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15701,10 +11986,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/nw) "aSy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15714,26 +11996,19 @@ dir = 2; name = "Low-Security Recreation" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "aSz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/nw) "aSA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/nw) "aSB" = ( /obj/structure/machinery/light, @@ -15741,31 +12016,21 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/nw) "aSC" = ( /obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "aSD" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/nw) "aSG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/cellblock/lowsec/nw) "aSH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15775,27 +12040,19 @@ dir = 2; name = "Northwest Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "aSI" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/central/north) "aSJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/north) "aSK" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -15805,10 +12062,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/central/north) "aSM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15818,32 +12072,23 @@ dir = 2; name = "Northeast Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/ne) "aSN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/ne) "aSO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/ne) "aSP" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/ne) "aSR" = ( /turf/open/floor/plating, @@ -15851,76 +12096,51 @@ "aSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/ne) "aST" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/ne) "aSU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/prison/cellblock/lowsec/ne) "aSW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aSX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aSZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aTd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/security/monitoring/lowsec/ne) "aTe" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/security/monitoring/lowsec/ne) "aTf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -15934,15 +12154,11 @@ /obj/structure/mirror{ pixel_x = -26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aTi" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aTj" = ( /obj/structure/machinery/light{ @@ -15951,16 +12167,11 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = 28 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aTk" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/staff) "aTl" = ( /obj/structure/bed/chair/comfy{ @@ -15987,38 +12198,24 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/command/secretary_office) "aTq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet, /area/prison/command/secretary_office) "aTr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/central/north) "aTs" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/central/north) "aTt" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/command/secretary_office) "aTu" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/maintenance/residential/nw) "aTw" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16029,15 +12226,11 @@ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/north/south) "aTy" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/north/south) "aTz" = ( /obj/structure/machinery/shower{ @@ -16048,25 +12241,16 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aTA" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aTB" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/highsec/n) "aTC" = ( /obj/structure/bed/chair/office/dark{ @@ -16075,10 +12259,7 @@ /turf/open/floor/prison, /area/prison/security/checkpoint/highsec/n) "aTD" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/highsec/n) "aTE" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -16095,89 +12276,57 @@ /turf/open/floor/prison, /area/prison/canteen) "aTH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/nw) "aTI" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/nw) "aTJ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/prison/cellblock/lowsec/nw) "aTL" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/prison/cellblock/lowsec/nw) "aTM" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/nw) "aTN" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/cellblock/lowsec/nw) "aTO" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/central/north) "aTQ" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/central/north) "aTR" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "aTS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/ne) "aTT" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/south) "aTU" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/ne) "aTV" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16185,66 +12334,48 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/prison/cellblock/lowsec/ne) "aTW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/prison/cellblock/lowsec/ne) "aTX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/security/monitoring/lowsec/ne) "aTY" = ( /obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/security/monitoring/lowsec/ne) "aTZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/security/monitoring/lowsec/ne) "aUa" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aUb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aUc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aUd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16255,18 +12386,14 @@ icon_state = "door_open"; name = "Staff Restrooms" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aUe" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/hallway/staff) "aUf" = ( /obj/structure/pipes/vents/pump/on, @@ -16290,10 +12417,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/command/secretary_office) "aUj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16302,32 +12426,24 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/command/secretary_office) "aUk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/command/secretary_office) "aUl" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/command/secretary_office) "aUm" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/command/secretary_office) "aUn" = ( /obj/structure/machinery/keycard_auth/lockdown/prison, @@ -16335,44 +12451,29 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/prison/command/secretary_office) "aUp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aUq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aUr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/highsec/n) "aUs" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/security/checkpoint/highsec/n) "aUt" = ( /obj/structure/pipes/vents/pump{ @@ -16385,10 +12486,7 @@ dir = 2; name = "Phone Booth" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aUv" = ( /obj/structure/surface/table/reinforced, @@ -16397,49 +12495,31 @@ }, /obj/item/explosive/grenade/high_explosive/airburst, /obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aUw" = ( /obj/structure/surface/table/reinforced, /obj/item/spacecash/c10, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/cellblock/lowsec/nw) "aUx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/nw) "aUy" = ( /obj/structure/toilet, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/nw) "aUz" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/nw) "aUA" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/nw) "aUB" = ( /obj/structure/sink{ @@ -16447,16 +12527,10 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/ne) "aUC" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/ne) "aUD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16466,10 +12540,7 @@ /area/prison/hallway/central/north) "aUE" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/ne) "aUF" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -16484,24 +12555,16 @@ "aUG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/ne) "aUH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/ne) "aUI" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aUJ" = ( /obj/structure/machinery/power/apc{ @@ -16509,27 +12572,20 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aUK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/hallway/staff) "aUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/staff) "aUM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16558,10 +12614,7 @@ dir = 2; name = "Warden's Secretary's Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/command/secretary_office) "aUR" = ( /obj/structure/window/framed/prison/reinforced, @@ -16576,10 +12629,7 @@ dir = 2; name = "Warden's Quarters" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/command/quarters) "aUU" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -16609,62 +12659,41 @@ /turf/open/floor/plating, /area/prison/hallway/central/east) "aVa" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "aVb" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "aVc" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "aVd" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "aVi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/north/south) "aVj" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/north/south) "aVm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aVn" = ( /obj/structure/machinery/shower{ @@ -16677,10 +12706,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aVo" = ( /obj/structure/machinery/shower{ @@ -16692,19 +12718,13 @@ health = 80 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aVp" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aVq" = ( /obj/structure/machinery/light/small{ @@ -16716,112 +12736,73 @@ start_charge = 0 }, /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aVr" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aVs" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/north/south) "aVt" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/north/south) "aVu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aVv" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec/n) "aVw" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/highsec/n) "aVx" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/nw) "aVy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aVA" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/nw) "aVB" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aVC" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aVD" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aVE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aVF" = ( /obj/structure/machinery/light/small{ @@ -16838,15 +12819,10 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/ne) "aVI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/ne) "aVJ" = ( /obj/structure/machinery/light/small{ @@ -16857,19 +12833,13 @@ "aVK" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aVM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/staff) "aVN" = ( /obj/structure/machinery/light{ @@ -16885,10 +12855,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/staff) "aVP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -16899,29 +12866,20 @@ /area/prison/hallway/staff) "aVQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/prison/hallway/staff) "aVR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "aVS" = ( /turf/closed/wall/prison, /area/prison/hallway/central/east) "aVT" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aVU" = ( /obj/structure/bed/chair, @@ -16929,44 +12887,29 @@ dir = 5 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aVV" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aVW" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aVX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aVY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/staff) "aVZ" = ( /obj/structure/closet, @@ -17002,9 +12945,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/command/quarters) "aWg" = ( /obj/structure/machinery/light{ @@ -17022,10 +12963,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/north/south) "aWn" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -17056,9 +12994,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aWt" = ( /obj/structure/sink{ @@ -17067,30 +13003,21 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aWu" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aWv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/central) "aWw" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aWx" = ( /obj/structure/machinery/shower{ @@ -17099,9 +13026,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aWy" = ( /obj/structure/bed/chair/office/light{ @@ -17118,17 +13043,13 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/north/south) "aWB" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/north/south) "aWD" = ( /obj/structure/machinery/shower{ @@ -17139,10 +13060,7 @@ dir = 8; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aWE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -17150,27 +13068,18 @@ dir = 2; name = "Security Records" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "aWF" = ( /obj/item/phone, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "aWG" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "aWH" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -17186,25 +13095,17 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "aWK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/nw) "aWL" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aWM" = ( /obj/structure/sink{ @@ -17212,28 +13113,19 @@ pixel_x = 11 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aWN" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aWO" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aWP" = ( /obj/structure/sink{ @@ -17241,16 +13133,10 @@ pixel_x = -12 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aWR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "aWS" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -17263,10 +13149,7 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/ne) "aWW" = ( /obj/structure/sink{ @@ -17274,10 +13157,7 @@ pixel_x = 12 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aWX" = ( /obj/structure/toilet{ @@ -17286,9 +13166,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "aWZ" = ( /obj/structure/machinery/alarm/almayer{ @@ -17300,10 +13178,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "aXb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -17315,32 +13190,20 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "aXd" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aXf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aXj" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/staff) "aXk" = ( /obj/structure/disposalpipe/junction{ @@ -17424,9 +13287,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/command/quarters) "aXx" = ( /obj/structure/machinery/light/small{ @@ -17436,9 +13297,7 @@ /area/prison/residential/central) "aXy" = ( /obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aXz" = ( /obj/structure/sink{ @@ -17448,9 +13307,7 @@ /obj/structure/mirror{ pixel_x = 28 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/command/quarters) "aXA" = ( /obj/structure/toilet{ @@ -17460,47 +13317,33 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aXB" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/central) "aXC" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aXD" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/central) "aXE" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aXF" = ( /obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "aXG" = ( /obj/structure/machinery/light/small{ @@ -17547,40 +13390,27 @@ /turf/open/floor/wood, /area/prison/security/monitoring/highsec) "aXP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/n) "aXQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/n) "aXR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/n) "aXS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Low-Security Recreation" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "aXT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "aXU" = ( /obj/structure/pipes/vents/scrubber{ @@ -17602,37 +13432,25 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/hallway/staff) "aXY" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/staff) "aXZ" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/staff) "aYa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/staff) "aYb" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/hallway/staff) "aYc" = ( /obj/structure/bookcase, @@ -17658,9 +13476,7 @@ dir = 4 }, /obj/structure/machinery/door/window/northright, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/command/quarters) "aYi" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -17719,52 +13535,34 @@ /area/prison/security/monitoring/highsec) "aYs" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/south) "aYt" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "aYu" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aYv" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aYw" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/north/south) "aYx" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aYy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -17773,10 +13571,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "aYz" = ( /obj/structure/filingcabinet, @@ -17807,10 +13602,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/lowsec/nw) "aYE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/nw) "aYF" = ( /obj/structure/machinery/door/airlock/prison{ @@ -17818,9 +13610,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "aYG" = ( /obj/structure/machinery/alarm/almayer{ @@ -17830,29 +13620,18 @@ /area/prison/hanger/main) "aYH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/nw) "aYI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/nw) "aYJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/ne) "aYK" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/hallway/staff) "aYL" = ( /turf/closed/wall/r_wall/prison, @@ -17866,9 +13645,7 @@ /obj/item/storage/box/lights, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/hallway/staff) "aYO" = ( /obj/structure/sign/safety/nonpress_0g{ @@ -17891,9 +13668,7 @@ /area/prison/residential/central) "aYS" = ( /obj/item/storage/box/mousetraps, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/hallway/staff) "aYT" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -17902,14 +13677,10 @@ name = "Staff Custodial Closet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/hallway/staff) "aYU" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "aYV" = ( /obj/structure/bed/chair/comfy{ @@ -17940,18 +13711,12 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Staff Hallway" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/staff) "aZc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/staff) "aZe" = ( /obj/structure/pipes/vents/pump{ @@ -17990,117 +13755,78 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aZm" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/nw) "aZn" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "aZp" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/nw) "aZq" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/nw) "aZr" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "aZs" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/ne) "aZu" = ( /obj/structure/machinery/flasher{ id = "canteen" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aZv" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "aZw" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "aZx" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "aZy" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/hallway/staff) "aZz" = ( /obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/hallway/staff) "aZA" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/hallway/staff) "aZB" = ( /obj/structure/machinery/vending/snack, @@ -18124,18 +13850,14 @@ "aZF" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/residential/central) "aZG" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/residential/central) "aZH" = ( /obj/structure/bed/chair/comfy{ @@ -18149,25 +13871,16 @@ /area/prison/security/monitoring/highsec) "aZL" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "aZM" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/cellblock/highsec/north/south) "aZN" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aZO" = ( /obj/effect/decal/warning_stripes{ @@ -18187,33 +13900,21 @@ /area/prison/residential/central) "aZR" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "aZS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "aZT" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "aZU" = ( /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aZV" = ( /obj/structure/machinery/shower{ @@ -18222,20 +13923,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/highsec/north/south) "aZW" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/nw) "aZX" = ( /obj/structure/machinery/light{ @@ -18243,10 +13938,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/ne) "aZY" = ( /obj/structure/machinery/power/apc{ @@ -18254,19 +13946,13 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/ne) "aZZ" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "baa" = ( /turf/closed/wall/prison, @@ -18277,25 +13963,16 @@ /area/prison/security/monitoring/highsec) "bac" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/north/south) "bad" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bae" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "baf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -18306,9 +13983,7 @@ "bag" = ( /obj/item/phone, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "hydrofloor" - }, +/turf/open/floor/hydrofloor, /area/prison/hallway/central/west) "bah" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -18324,26 +13999,17 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/residential/central) "bak" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/cellblock/lowsec/nw) "bal" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/yard) "bam" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/yard) "ban" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -18354,54 +14020,37 @@ /area/prison/hallway/central/east) "bap" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "baq" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bar" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/residential/central) "bas" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "bat" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "bau" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "bav" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/cellblock/highsec/north/south) "baw" = ( /turf/closed/wall/r_wall/prison, @@ -18410,10 +14059,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/security/checkpoint/vip) "baz" = ( /turf/closed/wall/prison, @@ -18422,29 +14068,20 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/nw) "baB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/ne) "baC" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/ne) "baD" = ( /obj/structure/pipes/vents/pump{ @@ -18453,10 +14090,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "baE" = ( /obj/effect/decal/warning_stripes{ @@ -18468,19 +14102,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baG" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baH" = ( /obj/structure/surface/table/reinforced, @@ -18488,19 +14116,13 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baI" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baJ" = ( /obj/effect/decal/warning_stripes{ @@ -18532,10 +14154,7 @@ "baO" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "baP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -18554,10 +14173,7 @@ /obj/structure/disposalpipe/junction{ icon_state = "pipe-y" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18570,26 +14186,17 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baU" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "baV" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baW" = ( /obj/structure/surface/rack, @@ -18599,10 +14206,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baX" = ( /obj/structure/machinery/light{ @@ -18630,49 +14234,33 @@ /area/prison/security/monitoring/highsec) "bbb" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bbc" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/north/south) "bbd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/north/south) "bbe" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bbf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bbh" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bbi" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bbj" = ( /obj/structure/pipes/vents/pump/on, @@ -18680,10 +14268,7 @@ /area/prison/residential/central) "bbk" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/residential/central) "bbl" = ( /obj/structure/surface/table, @@ -18698,9 +14283,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/residential/central) "bbm" = ( /obj/structure/pipes/vents/scrubber{ @@ -18731,35 +14314,23 @@ dir = 2; name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bbs" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bbt" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bbu" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bbv" = ( /obj/structure/surface/table/reinforced, @@ -18771,19 +14342,13 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bbw" = ( /obj/structure/machinery/shower{ pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/vip) "bbx" = ( /obj/structure/surface/table/reinforced, @@ -18799,16 +14364,10 @@ /turf/open/floor/prison, /area/prison/cellblock/vip) "bbA" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/security/checkpoint/vip) "bbB" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/security/checkpoint/vip) "bbC" = ( /obj/structure/window/framed/prison/reinforced, @@ -18852,17 +14411,11 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bbH" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/vip) "bbI" = ( /obj/structure/bed/chair/comfy{ @@ -18882,18 +14435,12 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/vip) "bbN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bbO" = ( /obj/structure/bed/chair/comfy{ @@ -18903,17 +14450,11 @@ /area/prison/residential/central) "bbP" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/vip) "bbQ" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/vip) "bbR" = ( /obj/structure/reagent_dispensers/fueltank, @@ -18928,20 +14469,14 @@ /area/prison/storage/vip) "bbT" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bbU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bbV" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bbW" = ( /obj/structure/largecrate/random, @@ -18960,18 +14495,12 @@ /area/prison/cellblock/highsec/north/south) "bbZ" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "bca" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/nw) "bcb" = ( /turf/open/floor/prison, @@ -18980,36 +14509,24 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bcd" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bce" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/central/east) "bcf" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bcg" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -19017,33 +14534,23 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bcj" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/yard) "bck" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/yard) "bcl" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/yard) "bcm" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/yard) "bcn" = ( /obj/structure/sink{ @@ -19055,10 +14562,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bco" = ( /obj/structure/sink{ @@ -19067,10 +14571,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bcp" = ( /obj/structure/sink{ @@ -19082,19 +14583,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bcq" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "bcr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19107,9 +14602,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bcs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19118,9 +14611,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bct" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -19128,27 +14619,20 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bcv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bcx" = ( /turf/closed/wall/prison, /area/prison/hallway/entrance) "bcy" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bcz" = ( /turf/open/floor/prison, @@ -19165,9 +14649,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bcC" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -19211,10 +14693,7 @@ /area/prison/maintenance/residential/nw) "bcO" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "bcQ" = ( /turf/open/floor/prison, @@ -19262,10 +14741,7 @@ /turf/open/floor/wood, /area/prison/security/monitoring/highsec) "bda" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/cellblock/highsec/north/south) "bdb" = ( /obj/structure/bed/chair/comfy{ @@ -19277,37 +14753,22 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "bdd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "bdf" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/highsec) "bdg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/highsec) "bdh" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/highsec) "bdi" = ( /obj/structure/surface/table/reinforced, @@ -19315,17 +14776,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bdj" = ( /obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/vip) "bdk" = ( /turf/open/floor/prison, @@ -19345,10 +14800,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bdp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -19382,9 +14834,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding2" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "bdw" = ( /obj/structure/machinery/power/apc{ @@ -19392,10 +14842,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/security/checkpoint/vip) "bdx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -19409,17 +14856,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "bdz" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bdA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19434,10 +14875,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/vip) "bdC" = ( /obj/structure/window/framed/prison, @@ -19447,44 +14885,29 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/highsec) "bdE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "bdF" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "bdG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "bdH" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/highsec) "bdI" = ( /turf/closed/wall/r_wall/prison, @@ -19499,28 +14922,19 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/vip) "bdL" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/nw) "bdN" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bdO" = ( /turf/closed/wall/r_wall/prison, @@ -19529,38 +14943,26 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bdS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Central Ring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "bdT" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bdU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bdV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19570,60 +14972,39 @@ dir = 2; name = "Yard" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bdW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bdX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bdY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bdZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/ne) "bea" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/ne) "beb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/central/east) "bec" = ( /turf/open/floor/prison, @@ -19631,10 +15012,7 @@ "bed" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "bef" = ( /obj/structure/stairs/perspective{ @@ -19644,33 +15022,21 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/canteen) "beg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "beh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bei" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bej" = ( /obj/effect/decal/cleanable/blood, @@ -19678,18 +15044,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bek" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bel" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19699,35 +15060,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "ben" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "beo" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bep" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "beq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "ber" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19766,9 +15116,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding8" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "bew" = ( /obj/effect/decal/warning_stripes{ @@ -19791,9 +15139,7 @@ "bez" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "beB" = ( /obj/structure/machinery/light{ @@ -19808,45 +15154,33 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "beE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding8" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "beF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "beG" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "beH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "beI" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -19854,30 +15188,19 @@ id = "kitchen"; name = "\improper Kitchen Access Shutters" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "beJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "beK" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/hanger/main) "beL" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/hanger/main) "beM" = ( /obj/structure/surface/table/reinforced, @@ -19889,10 +15212,7 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/hanger/main) "beN" = ( /obj/effect/landmark/good_item, @@ -19902,10 +15222,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/residential/central) "beR" = ( /obj/structure/machinery/door/airlock/almayer/security/colony, @@ -19918,29 +15235,20 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/highsec) "beV" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security/monitoring/highsec) "beW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2; name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "beX" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -19963,10 +15271,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bfc" = ( /turf/closed/wall/prison, @@ -19975,10 +15280,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/highsec) "bfe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19988,10 +15290,7 @@ /area/prison/security/monitoring/highsec) "bff" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/highsec) "bfg" = ( /turf/closed/wall/prison, @@ -20003,17 +15302,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/vip) "bfi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/security/checkpoint/vip) "bfj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "bfk" = ( /obj/structure/window/framed/prison/reinforced, @@ -20023,26 +15316,17 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/vip) "bfm" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/prison/security/checkpoint/vip) "bfn" = ( /turf/open/floor/prison, /area/prison/security/checkpoint/vip) "bfo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/vip) "bfq" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -20054,16 +15338,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "bfs" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/yard) "bft" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -20071,28 +15350,19 @@ dir = 1; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bfu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bfv" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bfw" = ( /turf/closed/wall/prison, @@ -20105,18 +15375,12 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bfz" = ( /obj/item/frame/table/reinforced, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bfC" = ( /obj/structure/window/framed/prison/reinforced, @@ -20129,10 +15393,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/central/east) "bfF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20154,10 +15415,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "bfH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20166,20 +15424,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bfI" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bfJ" = ( /obj/structure/bed/chair{ @@ -20191,10 +15443,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bfK" = ( /obj/structure/surface/table/reinforced, @@ -20205,10 +15454,7 @@ dir = 4 }, /obj/item/reagent_container/food/drinks/bottle/cognac, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bfL" = ( /obj/structure/bed/chair{ @@ -20221,10 +15467,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bfN" = ( /obj/structure/bed/chair{ @@ -20236,10 +15479,7 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bfO" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -20247,10 +15487,7 @@ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "bfP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20259,19 +15496,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "bfR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bfS" = ( /obj/structure/sign/safety/restrictedarea, @@ -20297,10 +15528,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/canteen) "bfV" = ( /obj/effect/decal/warning_stripes{ @@ -20322,10 +15550,7 @@ dir = 2; name = "Canteen" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bfZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20335,10 +15560,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bga" = ( /obj/structure/window/framed/prison, @@ -20348,10 +15570,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bgc" = ( /turf/open/organic/grass, @@ -20367,10 +15586,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bgf" = ( /obj/structure/disposalpipe/junction{ @@ -20380,40 +15596,29 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bgg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bgh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bgi" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bgj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/hanger/main) "bgk" = ( /obj/structure/bed/chair/office/dark{ @@ -20423,20 +15628,14 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/hanger/main) "bgl" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/hanger/main) "bgm" = ( /obj/structure/surface/table, @@ -20448,22 +15647,14 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/residential/central) "bgn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/residential/central) "bgp" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/highsec) "bgq" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -20475,26 +15666,17 @@ /turf/open/floor/prison, /area/prison/security/monitoring/highsec) "bgs" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/highsec) "bgt" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, /area/prison/security/monitoring/highsec) "bgu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security/monitoring/highsec) "bgv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/highsec) "bgw" = ( /obj/structure/pipes/vents/scrubber, @@ -20513,94 +15695,59 @@ /area/prison/cellblock/vip) "bgA" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) "bgB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/vip) "bgC" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/vip) "bgD" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/vip) "bgF" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/cellblock/lowsec/nw) "bgG" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bgH" = ( /obj/structure/surface/table/reinforced{ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bgI" = ( /obj/item/ammo_casing, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bgJ" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bgK" = ( /obj/item/ammo_casing, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bgL" = ( /obj/effect/decal/cleanable/blood, /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bgM" = ( /obj/structure/surface/table/reinforced{ dir = 4; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bgN" = ( /turf/open/floor/prison, @@ -20608,22 +15755,13 @@ "bgO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/ne) "bgP" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/cellblock/lowsec/ne) "bgQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bgS" = ( /obj/structure/bed/chair{ @@ -20632,20 +15770,14 @@ /obj/structure/disposalpipe/junction{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bgT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bgV" = ( /obj/structure/sink{ @@ -20657,10 +15789,7 @@ icon_state = "pipe-c" }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bgW" = ( /obj/structure/sink{ @@ -20670,10 +15799,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bgX" = ( /obj/structure/sink{ @@ -20687,10 +15813,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/kitchen) "bgY" = ( /obj/structure/disposalpipe/segment{ @@ -20700,161 +15823,112 @@ /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bgZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bha" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bhb" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bhc" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bhe" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/hanger/main) "bhf" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/residential/central) "bhg" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/security/monitoring/highsec) "bhh" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/monitoring/highsec) "bhi" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/security/monitoring/highsec) "bhj" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/highsec) "bhk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bhl" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bhm" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bhn" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/highsec) "bho" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/vip) "bhp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/vip) "bhq" = ( /obj/item/phone, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/vip) "bhs" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bht" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) "bhu" = ( /obj/structure/surface/table/reinforced, @@ -20866,18 +15940,12 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) "bhv" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) "bhw" = ( /obj/structure/window/framed/prison/reinforced, @@ -20888,66 +15956,47 @@ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) "bhy" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/vip) "bhz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/vip) "bhA" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/storage/vip) "bhB" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Northwest Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) "bhC" = ( -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "bhD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/siding{ icon_state = "siding8" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bhE" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "bhG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20957,86 +16006,59 @@ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bhH" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bhI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/highsec) "bhJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bhK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bhL" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bhM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bhN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bhO" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bhP" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/ne) "bhQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -21044,16 +16066,11 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Northeast Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/ne) "bhR" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "bhT" = ( /obj/structure/bed/chair{ @@ -21063,44 +16080,32 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bhU" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bhV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bhW" = ( /obj/structure/closet/crate/freezer, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "bhX" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bhY" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -21108,32 +16113,20 @@ dir = 2; name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/hanger/main) "bhZ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/prison/hanger/main) "bia" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hanger/main) "bib" = ( /obj/structure/surface/table/reinforced{ dir = 1; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bic" = ( /obj/effect/decal/warning_stripes{ @@ -21142,17 +16135,11 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hanger/main) "bid" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/residential/central) "bie" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -21160,19 +16147,13 @@ name = "Civilian Residences Admin" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/residential/central) "big" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/security/monitoring/highsec) "bik" = ( /obj/structure/machinery/light{ @@ -21181,10 +16162,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/security/monitoring/highsec) "bil" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -21192,10 +16170,7 @@ name = "Security Booth" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bim" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -21204,18 +16179,13 @@ opacity = 0 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/cellblock/vip) "bin" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/security/checkpoint/vip) "bio" = ( /obj/structure/machinery/light{ @@ -21224,10 +16194,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "bip" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -21242,19 +16209,13 @@ dir = 8; network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "bir" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/central/west) "bis" = ( /obj/structure/machinery/light{ @@ -21263,50 +16224,32 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/central/west) "bit" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Yard" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "biu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "biv" = ( /obj/item/frame/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "biw" = ( /obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "biy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Yard" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "biz" = ( /obj/structure/machinery/light{ @@ -21315,33 +16258,21 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "biA" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/central/east) "biB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/central/east) "biC" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "biE" = ( /obj/structure/pipes/vents/scrubber{ @@ -21350,10 +16281,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "biH" = ( /obj/structure/machinery/alarm/almayer{ @@ -21362,10 +16290,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "biI" = ( /obj/effect/decal/cleanable/blood, @@ -21375,19 +16300,13 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "biO" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/prison/hanger/main) "biP" = ( /obj/structure/pipes/vents/scrubber{ @@ -21399,10 +16318,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/east, /area/prison/hanger/main) "biR" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -21410,26 +16326,16 @@ name = "High-Security Monitoring" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "biS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/hanger/main) "biT" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/prison/hanger/main) "biU" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hanger/main) "biV" = ( /obj/effect/decal/warning_stripes{ @@ -21438,100 +16344,65 @@ /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hanger/main) "biY" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding8" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "biZ" = ( /turf/open/gm/river, /area/prison/residential/central) "bja" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/residential/central) "bjb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/residential/central) "bjc" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/residential/central) "bjd" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/residential/central) "bje" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/residential/central) "bjg" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/residential/central) "bjh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/prison/residential/central) "bji" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/security/monitoring/highsec) "bjj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bjk" = ( /obj/item/ammo_casing, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bjm" = ( /obj/structure/window/reinforced{ @@ -21563,76 +16434,49 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/security/monitoring/highsec) "bjq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/security/monitoring/highsec) "bjr" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/highsec) "bjt" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "bju" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/highsec) "bjv" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/cellblock/vip) "bjw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/cellblock/vip) "bjx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/vip) "bjy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/vip) "bjA" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/vip) "bjB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/vip) "bjD" = ( /obj/effect/decal/cleanable/blood, @@ -21655,119 +16499,74 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/vip) "bjI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/hanger/main) "bjJ" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/hanger/main) "bjK" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/vip) "bjL" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/vip) "bjN" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/machinery/camera/autoname{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/security/checkpoint/vip) "bjO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bjP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/prison/security/checkpoint/vip) "bjQ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/security/checkpoint/vip) "bjR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/monitoring/highsec) "bjS" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/security/checkpoint/vip) "bjT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/monitoring/highsec) "bjU" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bjW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/storage/vip) "bjX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/storage/vip) "bjY" = ( /obj/structure/machinery/power/apc{ @@ -21775,10 +16574,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/storage/vip) "bjZ" = ( /obj/structure/stairs/perspective{ @@ -21789,109 +16585,72 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/storage/vip) "bka" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/vip) "bkb" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/yard) "bkc" = ( /obj/structure/surface/table/reinforced, /obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bkd" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bke" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bkf" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bkg" = ( /obj/item/ammo_casing, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bkh" = ( /obj/structure/machinery/flasher_button{ id = "yard_flashers"; pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/east, /area/prison/yard) "bki" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bkj" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/toilet/canteen) "bkk" = ( /obj/structure/toilet, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/toilet/canteen) "bkl" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/toilet/canteen) "bkm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -21909,17 +16668,13 @@ /obj/structure/machinery/shower{ pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/toilet/canteen) "bkp" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/toilet/canteen) "bkr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -21935,38 +16690,23 @@ /area/prison/hanger/main) "bku" = ( /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bkw" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/hanger/main) "bkx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/east, /area/prison/hanger/main) "bky" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/hanger/main) "bkz" = ( /obj/effect/decal/siding{ icon_state = "siding4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bkB" = ( /obj/effect/landmark/hunter_primary, @@ -21974,34 +16714,22 @@ /area/prison/residential/central) "bkC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/residential/central) "bkD" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bkG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bkH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/residential/central) "bkI" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -22014,10 +16742,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/security/monitoring/highsec) "bkK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -22053,10 +16778,7 @@ dir = 8; network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bkQ" = ( /obj/structure/showcase{ @@ -22072,25 +16794,16 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/highsec) "bkS" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/vip) "bkT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/vip) "bkU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -22100,9 +16813,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "bkV" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -22123,10 +16834,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/monitoring/highsec) "bla" = ( /obj/structure/window/framed/prison/cell, @@ -22141,32 +16849,23 @@ /turf/open/floor/prison, /area/prison/security/checkpoint/vip) "bld" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/security/checkpoint/vip) "ble" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, /area/prison/security/checkpoint/vip) "blf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/hallway/central/west) "blg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/security/checkpoint/vip) "bli" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/storage/vip) "blk" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -22174,37 +16873,25 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/hallway/central/west) "bll" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/yard) "blm" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bln" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "blo" = ( /obj/item/frame/table/reinforced, /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "blp" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -22224,34 +16911,22 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding8" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bls" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "blt" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/good_item, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "blu" = ( /obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/east, /area/prison/yard) "blw" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -22261,25 +16936,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/toilet/canteen) "blz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/toilet/canteen) "blA" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/toilet/canteen) "blB" = ( /obj/effect/landmark/hunter_secondary, @@ -22290,10 +16957,7 @@ /turf/open/floor/prison, /area/prison/hallway/entrance) "blD" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/entrance) "blE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -22303,17 +16967,11 @@ /turf/open/floor/prison, /area/prison/hanger/main) "blF" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hanger/main) "blG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/hanger/main) "blH" = ( /turf/open/floor/prison, @@ -22322,27 +16980,18 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/residential/central) "blK" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "blP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/residential/central) "blQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22361,10 +17010,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/security/monitoring/highsec) "blS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -22395,19 +17041,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/south) "blY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/highsec) "blZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22416,19 +17056,13 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/vip) "bma" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/vip) "bmb" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -22454,10 +17088,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "bmi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22470,9 +17101,7 @@ dir = 2; name = "VIP Cellblock / Civilian Residences Access" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/security/checkpoint/vip) "bmj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22481,9 +17110,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/security/checkpoint/vip) "bml" = ( /obj/structure/disposalpipe/segment{ @@ -22507,9 +17134,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/storage/vip) "bmq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22518,10 +17143,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/storage/vip) "bmr" = ( /obj/structure/stairs/perspective{ @@ -22534,10 +17156,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/storage/vip) "bms" = ( /obj/structure/disposalpipe/segment{ @@ -22560,10 +17179,7 @@ dir = 2; name = "Low-Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "bmu" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -22583,37 +17199,26 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/yard) "bmz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/yard) "bmA" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bmB" = ( /obj/structure/surface/table/reinforced, /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bmC" = ( /obj/effect/landmark/good_item, @@ -22624,10 +17229,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding8" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bmF" = ( /turf/closed/wall/prison, @@ -22639,10 +17241,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/east, /area/prison/yard) "bmJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22650,10 +17249,7 @@ }, /obj/item/ammo_casing, /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bmK" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -22685,10 +17281,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/toilet/canteen) "bmO" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -22704,68 +17297,44 @@ dir = 4; network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bmR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/prison/hanger/main) "bmS" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/prison/hanger/main) "bmT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/prison/residential/central) "bmU" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/residential/central) "bmV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/residential/central) "bmW" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/prison/residential/central) "bmY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/prison/residential/central) "bmZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/security/monitoring/highsec) "bna" = ( /obj/structure/window/reinforced{ @@ -22787,184 +17356,120 @@ dir = 4; layer = 3.25 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "bne" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/highsec) "bnf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/cellblock/vip) "bng" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/vip) "bnh" = ( /turf/open/floor/plating, /area/prison/security/monitoring/highsec) "bni" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/vip) "bnk" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/vip) "bnl" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/vip) "bnm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/vip) "bnn" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/vip) "bno" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/vip) "bnq" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/security/checkpoint/vip) "bnr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/prison/security/checkpoint/vip) "bnt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/security/checkpoint/vip) "bnu" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/security/checkpoint/vip) "bnx" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/storage/vip) "bny" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/prison/storage/vip) "bnz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/storage/vip) "bnA" = ( /obj/structure/surface/table/reinforced, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bnB" = ( /obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bnC" = ( /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bnD" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/east, /area/prison/yard) "bnE" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "bnF" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bnG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bnK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22973,19 +17478,13 @@ /obj/structure/machinery/flasher{ id = "canteen" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bnL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "bnM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -22997,10 +17496,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bnO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23009,10 +17505,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bnP" = ( /obj/structure/machinery/power/apc{ @@ -23023,35 +17516,23 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bnQ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bnR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/toilet/canteen) "bnS" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bnT" = ( /obj/structure/machinery/power/apc{ @@ -23059,10 +17540,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bnU" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -23072,58 +17550,38 @@ /area/prison/hallway/entrance) "bnV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/prison/hanger/main) "bnW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/hanger/main) "bnX" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding10" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bnY" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bnZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Monorail Station West" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "boa" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "bob" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/security/monitoring/highsec) "boc" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -23142,10 +17600,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/security/monitoring/highsec) "bog" = ( /obj/item/shard, @@ -23156,10 +17611,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/security/checkpoint/vip) "boi" = ( /obj/structure/machinery/light{ @@ -23169,19 +17621,14 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "boj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/central/west) "bok" = ( /obj/structure/machinery/light{ @@ -23190,24 +17637,16 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/central/west) "bol" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bom" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bon" = ( /obj/structure/machinery/light{ @@ -23216,42 +17655,28 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "boo" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/central/east) "bop" = ( /obj/structure/machinery/camera/autoname{ dir = 4; network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "boq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bor" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bos" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -23261,35 +17686,23 @@ /turf/open/floor/plating, /area/prison/canteen) "bot" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bou" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "bow" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/canteen) "boy" = ( /obj/effect/decal/cleanable/blood, @@ -23297,141 +17710,91 @@ /area/prison/hanger/main) "boz" = ( /obj/effect/decal/siding, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "boA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/siding{ icon_state = "siding8" }, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/residential/central) "boB" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "boC" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/monorail/west) "boD" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/monorail/west) "boF" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "boG" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/security/monitoring/highsec) "boH" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/security/monitoring/highsec) "boI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/security/monitoring/highsec) "boJ" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/security/monitoring/highsec) "boK" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/highsec) "boL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "boM" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "boN" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "boO" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/highsec) "boP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/vip) "boQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/vip) "boR" = ( /obj/item/phone, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/vip) "boT" = ( /obj/structure/surface/table/reinforced, @@ -23439,50 +17802,33 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) "boU" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/storage/vip) "boV" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/storage/vip) "boW" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/storage/vip) "boX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Southwest Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/sw) "boZ" = ( /obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bpa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23492,19 +17838,13 @@ dir = 4; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bpc" = ( /obj/structure/surface/table/reinforced, /obj/effect/decal/cleanable/blood, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "bpe" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -23524,10 +17864,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/entrance) "bph" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23543,10 +17880,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hanger/main) "bpk" = ( /obj/structure/pipes/vents/pump{ @@ -23558,30 +17892,18 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "bpm" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/monorail/west) "bpn" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/monorail/west) "bpo" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "bpr" = ( /obj/structure/pipes/vents/scrubber{ @@ -23618,10 +17940,7 @@ "bpw" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "bpx" = ( /obj/structure/surface/table/reinforced, @@ -23629,44 +17948,26 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) "bpy" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/vip) "bpz" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/vip) "bpA" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/vip) "bpB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/cellblock/lowsec/sw) "bpC" = ( /obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "bpD" = ( /obj/structure/machinery/shower{ @@ -23675,9 +17976,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/toilet/canteen) "bpE" = ( /obj/structure/machinery/light{ @@ -23686,54 +17985,33 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "bpI" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/hanger/main) "bpJ" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/east, /area/prison/hanger/main) "bpL" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/monorail/west) "bpM" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "bpN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/security/monitoring/highsec) "bpO" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/security/monitoring/highsec) "bpP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23752,15 +18030,10 @@ /turf/open/floor/prison, /area/prison/security/monitoring/highsec) "bpV" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2, /area/prison/security/monitoring/highsec) "bpW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/highsec) "bpX" = ( /obj/structure/machinery/light, @@ -23768,16 +18041,10 @@ /area/prison/cellblock/vip) "bpY" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/vip) "bpZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/security/checkpoint/vip) "bqa" = ( /obj/effect/landmark/crap_item, @@ -23790,83 +18057,58 @@ /obj/structure/surface/table/reinforced{ flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bqd" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/reinforced{ flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bqe" = ( /obj/effect/landmark/crap_item, /obj/structure/surface/table/reinforced{ flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bqf" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "bqg" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "bqh" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/toilet/canteen) "bqi" = ( /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/toilet/canteen) "bqk" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bql" = ( /turf/closed/wall/prison, /area/prison/cellblock/lowsec/sw) "bqm" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/central/west) "bqn" = ( /obj/structure/bed/chair/comfy{ @@ -23875,16 +18117,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "bqo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/monorail/west) "bqp" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -23908,17 +18144,11 @@ /area/prison/security/monitoring/highsec) "bqw" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/highsec) "bqx" = ( /obj/structure/machinery/door/window/northright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/vip) "bqy" = ( /obj/effect/decal/cleanable/blood, @@ -23929,17 +18159,11 @@ dir = 5 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "bqA" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/vip) "bqB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23953,19 +18177,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/sw) "bqD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/se) "bqE" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -23978,18 +18196,12 @@ dir = 8 }, /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/hanger/main) "bqG" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/hanger/main) "bqH" = ( /obj/effect/landmark/hunter_primary, @@ -23997,71 +18209,48 @@ /area/prison/hanger/main) "bqI" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bqJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bqK" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/security/monitoring/highsec) "bqL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bqO" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /obj/effect/decal/siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bqP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bqR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "bqT" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/vip) "bqU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -24073,60 +18262,41 @@ /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/vip) "bqW" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/security/checkpoint/vip) "bqX" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/prison/security/checkpoint/vip) "bqY" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/vip) "bqZ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/vip) "bra" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/vip) "brb" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/vip) "brc" = ( /obj/structure/disposalpipe/junction{ @@ -24144,86 +18314,56 @@ "bre" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/sw) "brf" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "brg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "brh" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "brk" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "brl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "brm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Southeast Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/se) "brn" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/se) "bro" = ( /obj/structure/bed, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "brp" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "brq" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "brr" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -24232,10 +18372,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding1) "brs" = ( /obj/structure/sink{ @@ -24245,18 +18382,12 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/holding/holding1) "brt" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bru" = ( /turf/closed/wall/prison, @@ -24265,51 +18396,33 @@ /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/drinks/coffee, /obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "brw" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "brx" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bry" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/drinks/cans/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "brz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "brA" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "brB" = ( /obj/structure/machinery/power/apc{ @@ -24317,55 +18430,37 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "brD" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "brE" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "brF" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "brH" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/hanger/main) "brM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/residential/central) "brN" = ( /obj/structure/machinery/door/airlock/almayer/generic, @@ -24375,10 +18470,7 @@ "brO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/sw) "brP" = ( /obj/structure/window/framed/prison/cell, @@ -24388,20 +18480,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/sw) "brR" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "brS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24414,10 +18500,7 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "brU" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -24426,10 +18509,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/se) "brW" = ( /obj/structure/window/framed/prison/cell, @@ -24437,16 +18517,10 @@ /area/prison/cellblock/lowsec/se) "brX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/cellblock/lowsec/se) "brY" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/se) "brZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24462,37 +18536,25 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/highsec) "bsc" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/sw) "bsd" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "bse" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bsi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24509,19 +18571,13 @@ "bsk" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bsl" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/holding/holding1) "bsm" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -24533,29 +18589,17 @@ /area/space) "bso" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bsp" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/security/monitoring/highsec) "bsq" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bss" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/visitation) "bst" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -24567,19 +18611,14 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/hanger/main) "bsv" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/hanger/main) "bsw" = ( /obj/structure/surface/table/reinforced, @@ -24591,58 +18630,37 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/hanger/main) "bsz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/monorail/west) "bsA" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/monorail/west) "bsB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/sw) "bsC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/sw) "bsE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/sw) "bsF" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/lowsec/sw) "bsG" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "bsI" = ( /turf/closed/shuttle/elevator/gears, @@ -24651,22 +18669,14 @@ /obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "bsK" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "bsL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/se) "bsM" = ( /obj/structure/machinery/power/apc{ @@ -24674,23 +18684,14 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/sw) "bsN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/se) "bsO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/se) "bsP" = ( /obj/structure/machinery/light{ @@ -24698,80 +18699,53 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/sw) "bsQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Yard" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bsR" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/se) "bsS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bsT" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/packaged_burrito, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bsU" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bsV" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/chocolatebar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bsW" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "bsX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/girder, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "bsY" = ( /obj/structure/bed/chair/office/dark, @@ -24781,28 +18755,19 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "bta" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "btb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "btd" = ( /obj/structure/monorail, @@ -24813,26 +18778,17 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "btf" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "btg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "bth" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -24842,10 +18798,7 @@ dir = 2; name = "Visitation" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/visitation) "bti" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -24859,15 +18812,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/hallway/entrance) "btk" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/entrance) "btl" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/hallway/entrance) "btm" = ( /obj/structure/machinery/light{ @@ -24879,10 +18828,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/sw) "bto" = ( /obj/effect/landmark/hunter_secondary, @@ -24898,10 +18844,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/se) "bts" = ( /obj/effect/decal/warning_stripes{ @@ -24950,24 +18893,16 @@ /area/prison/hanger/main) "bty" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "btz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/highsec) "btD" = ( /obj/structure/surface/table/reinforced, /obj/item/device/matter_decompiler, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "btE" = ( /turf/closed/shuttle/elevator, @@ -24977,36 +18912,24 @@ /area/prison/hallway/central/west) "btG" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "btH" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "btI" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "btJ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "btK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -25020,54 +18943,36 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "btM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "btN" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/sw) "btP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/holding/holding1) "btQ" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/sw) "btR" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "btS" = ( /obj/structure/machinery/light/small{ @@ -25080,38 +18985,26 @@ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/se) "btU" = ( /obj/structure/surface/rack, /obj/item/clothing/head/welding, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "btW" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/se) "btX" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "btY" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -25121,10 +19014,7 @@ /turf/open/floor/prison, /area/prison/visitation) "bua" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bub" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -25132,10 +19022,7 @@ name = "Security Booth" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "buc" = ( /obj/structure/window/framed/prison/reinforced, @@ -25152,25 +19039,17 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/hallway/entrance) "bug" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/entrance) "buh" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/hallway/entrance) "bui" = ( /obj/effect/decal/warning_stripes{ @@ -25179,16 +19058,11 @@ /turf/open/floor/prison, /area/prison/hanger/main) "bul" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/visitation) "bun" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/south/north) "buo" = ( /turf/closed/shuttle/elevator{ @@ -25197,28 +19071,19 @@ /area/prison/hallway/central/west) "buq" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bur" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bus" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/holding/holding1) "but" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -25228,10 +19093,7 @@ dir = 2; name = "Holding Cell 1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "buu" = ( /obj/structure/machinery/light{ @@ -25241,36 +19103,24 @@ dir = 10 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "buv" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/no_raisin, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "buw" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bux" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/visitation) "buy" = ( /obj/structure/surface/table/reinforced, @@ -25282,17 +19132,11 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/visitation) "buz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/visitation) "buA" = ( /obj/structure/machinery/light/small{ @@ -25305,49 +19149,33 @@ /obj/structure/mirror{ pixel_x = -26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "buB" = ( /obj/structure/machinery/door/window/westleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "buC" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/visitation) "buD" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/visitation) "buE" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/hallway/entrance) "buF" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/hallway/entrance) "buG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -25356,28 +19184,19 @@ /turf/open/floor/prison, /area/prison/hanger/main) "buI" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/south/north) "buJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "buK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "buL" = ( /obj/structure/machinery/light{ @@ -25386,19 +19205,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "buM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/south/north) "buN" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -25406,40 +19219,25 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Central Ring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "buO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/lowsec/sw) "buP" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/sw) "buQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/hanger/main) "buR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/hanger/main) "buS" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -25451,23 +19249,14 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/se) "buV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/lowsec/se) "buW" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "buX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -25481,25 +19270,17 @@ /area/prison/maintenance/residential/se) "bva" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec/s) "bvb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bvc" = ( /obj/item/ammo_magazine/rifle/m16/ap, /turf/open/floor/prison, /area/prison/research/secret/containment) "bvd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "bvf" = ( /turf/closed/shuttle/elevator{ @@ -25508,29 +19289,20 @@ /area/prison/hallway/central/west) "bvi" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/sw) "bvj" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/yard) "bvk" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/yard) "bvl" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/yard) "bvm" = ( /obj/structure/surface/rack, @@ -25549,32 +19321,22 @@ "bvo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bvp" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bvq" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "bvr" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "bvs" = ( /obj/structure/machinery/shower{ @@ -25583,9 +19345,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "bvt" = ( /obj/structure/bed/chair{ @@ -25597,37 +19357,23 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/visitation) "bvv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/cellblock/highsec/south/north) "bvw" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/north) "bvy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bvz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "bvA" = ( /turf/closed/wall/prison, @@ -25637,92 +19383,60 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/north) "bvC" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bvD" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bvE" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/south/north) "bvF" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/south/north) "bvG" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bvH" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bvI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/visitation) "bvJ" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "bvK" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/visitation) "bvL" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/hallway/entrance) "bvM" = ( /turf/closed/wall/r_wall/prison, @@ -25736,17 +19450,13 @@ /obj/structure/surface/rack, /obj/item/storage/box/lights, /obj/item/device/lightreplacer, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "bvQ" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_y = -30 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/entrance) "bvS" = ( /obj/structure/machinery/power/apc{ @@ -25786,17 +19496,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "bwf" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/south/north) "bwj" = ( /turf/open/floor/plating, @@ -25807,19 +19511,13 @@ pixel_x = 11 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "bwl" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "bwn" = ( /obj/structure/machinery/power/apc{ @@ -25827,65 +19525,41 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bwo" = ( /obj/structure/toilet{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "bwp" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "bwq" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/cellblock/lowsec/se) "bwr" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/se) "bws" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/se) "bwt" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/prison/cellblock/lowsec/se) "bwu" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/holding/holding1) "bwv" = ( /obj/structure/machinery/power/apc{ @@ -25895,54 +19569,33 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bww" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bwx" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "bwy" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/visitation) "bwz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "bwA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bwC" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating, /area/prison/cellblock/highsec/south/north) "bwD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/north) "bwE" = ( /obj/structure/machinery/light/small{ @@ -25951,19 +19604,13 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/highsec/south/north) "bwF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "bwG" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/visitation) "bwH" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -25976,19 +19623,13 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/visitation) "bwK" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/visitation) "bwL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -26046,10 +19687,7 @@ /area/prison/monorail/east) "bwV" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bwW" = ( /turf/closed/wall/prison, @@ -26062,10 +19700,7 @@ name = "East Monorail Station" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "bxa" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -26076,10 +19711,7 @@ /area/prison/maintenance/residential/se) "bxe" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/monorail/west) "bxf" = ( /turf/open/floor/plating, @@ -26088,10 +19720,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/monorail/west) "bxh" = ( /obj/structure/pipes/vents/pump{ @@ -26104,10 +19733,7 @@ dir = 5 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/south/north) "bxk" = ( /turf/open/floor/plating, @@ -26116,61 +19742,40 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/north) "bxm" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/south/north) "bxo" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bxp" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/south/north) "bxq" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/south/north) "bxt" = ( /obj/structure/machinery/camera/autoname{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "bxu" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bxv" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/cellblock/highsec/south/north) "bxA" = ( /obj/vehicle/train/cargo/trolley, @@ -26185,10 +19790,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hallway/central/west) "bxG" = ( /obj/structure/machinery/light/small{ @@ -26198,10 +19800,7 @@ /area/prison/cellblock/lowsec/sw) "bxH" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "bxI" = ( /obj/structure/machinery/light/small{ @@ -26210,21 +19809,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/lowsec/se) "bxJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/se) "bxL" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/prison/cellblock/lowsec/se) "bxN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/se) "bxO" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -26234,16 +19826,10 @@ /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/north) "bxQ" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/cellblock/lowsec/se) "bxR" = ( /obj/structure/machinery/power/apc{ @@ -26251,26 +19837,17 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "bxT" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bxU" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "bxV" = ( /obj/structure/sink{ @@ -26278,18 +19855,12 @@ pixel_x = 12 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/holding/holding1) "bxW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding1) "bxX" = ( /obj/structure/machinery/power/apc{ @@ -26300,97 +19871,60 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bxY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bxZ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bya" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "byd" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "bye" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "byf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/visitation) "byg" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/visitation) "byh" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/visitation) "byi" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/visitation) "byj" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/visitation) "byk" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "byl" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bym" = ( /obj/structure/machinery/disposal, @@ -26401,25 +19935,16 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "byn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "byo" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "byp" = ( /obj/structure/closet, @@ -26431,17 +19956,12 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/sw) "byr" = ( /obj/structure/girder/reinforced, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "bys" = ( /obj/structure/bed, @@ -26456,10 +19976,7 @@ /area/prison/maintenance/hangar_barracks) "byw" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/hangar) "byx" = ( /obj/structure/machinery/light/small{ @@ -26472,56 +19989,35 @@ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/south/north) "byC" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "byE" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "byF" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/south/north) "byG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/hangar) "byH" = ( /obj/structure/pipes/vents/pump/on, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/hangar) "byI" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/hangar) "byJ" = ( /obj/structure/machinery/power/apc{ @@ -26529,18 +20025,12 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/hangar) "byK" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/hangar) "byL" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -26551,30 +20041,18 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/monorail/east) "byN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/monorail/east) "byO" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/monorail/east) "byP" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "byQ" = ( /obj/structure/machinery/power/apc{ @@ -26582,29 +20060,17 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "byR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/monorail/west) "byS" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "bza" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/highsec/s) "bzb" = ( /obj/structure/disposalpipe/segment, @@ -26616,10 +20082,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/sw) "bzd" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -26632,18 +20095,14 @@ /turf/open/floor/plating, /area/prison/cellblock/lowsec/sw) "bze" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/sw) "bzf" = ( /obj/structure/toilet{ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/sw) "bzg" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -26652,24 +20111,18 @@ /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/sw) "bzi" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/sw) "bzj" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/sw) "bzk" = ( /obj/structure/sink{ @@ -26677,41 +20130,27 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/se) "bzl" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/se) "bzm" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/se) "bzo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/cellblock/lowsec/se) "bzp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "bzq" = ( /obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "bzr" = ( /obj/structure/sink{ @@ -26724,9 +20163,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "bzs" = ( /obj/structure/machinery/door/airlock/prison{ @@ -26734,21 +20171,13 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/se) "bzt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/cellblock/lowsec/se) "bzu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/holding/holding1) "bzv" = ( /turf/closed/wall/prison, @@ -26756,10 +20185,7 @@ "bzw" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/holding/holding1) "bzx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -26767,20 +20193,14 @@ dir = 2; name = "Prison Store" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "bzy" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/store) "bzz" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/south/north) "bzD" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -26788,19 +20208,13 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Visitation" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "bzE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "East Hallway" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bzG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -26840,10 +20254,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/hangar) "bzM" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -26860,20 +20271,14 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/hangar) "bzQ" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/hangar) "bzR" = ( /obj/structure/shuttle/diagonal{ @@ -26896,62 +20301,38 @@ /turf/open/floor/plating, /area/prison/monorail/east) "bzW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/monorail/east) "bzX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/monorail/east) "bzY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/monorail/east) "bzZ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "bAa" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/maintenance/residential/sw) "bAe" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/cellblock/highsec/south/north) "bAf" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/south/north) "bAi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding1) "bAn" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/security/monitoring/lowsec/sw) "bAo" = ( /obj/structure/machinery/light{ @@ -26960,10 +20341,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/security/monitoring/lowsec/sw) "bAp" = ( /obj/structure/disposalpipe/segment{ @@ -26974,28 +20352,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/security/monitoring/lowsec/sw) "bAq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/security/monitoring/lowsec/sw) "bAr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/prison/cellblock/lowsec/sw) "bAs" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -27003,26 +20372,17 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/prison/cellblock/lowsec/sw) "bAt" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/sw) "bAu" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/sw) "bAv" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -27030,29 +20390,21 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/sw) "bAw" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/central/south) "bAx" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/central/south) "bAy" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -27060,37 +20412,23 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/se) "bAA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bAB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "bAC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "bAD" = ( /obj/structure/machinery/shower{ pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bAE" = ( /turf/open/floor/prison, @@ -27102,73 +20440,46 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bAG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/east) "bAH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/east) "bAI" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bAJ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bAL" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bAM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bAN" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bAO" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/prison/hallway/east) "bAP" = ( /obj/structure/grille, @@ -27176,10 +20487,7 @@ /turf/open/space, /area/space) "bAQ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/prison/hallway/east) "bAR" = ( /obj/structure/bed, @@ -27204,9 +20512,7 @@ /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "bAV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -27219,40 +20525,25 @@ /area/prison/security/checkpoint/hangar) "bAX" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/hangar) "bAY" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/hangar) "bAZ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/hangar) "bBa" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/hangar) "bBb" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/hangar) "bBc" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/hangar) "bBd" = ( /turf/closed/shuttle{ @@ -27263,22 +20554,16 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/monorail/east) "bBf" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/prison/monorail/east) "bBg" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/monorail/east) "bBh" = ( /turf/closed/wall/prison, @@ -27289,10 +20574,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "bBl" = ( /obj/structure/machinery/power/apc{ @@ -27342,26 +20624,17 @@ /area/prison/maintenance/residential/se) "bBv" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/monorail/west) "bBw" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/monorail/west) "bBx" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "bBy" = ( /obj/structure/machinery/light/small{ @@ -27388,69 +20661,48 @@ /turf/open/floor/plating, /area/prison/security/monitoring/lowsec/sw) "bBI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/security/monitoring/lowsec/sw) "bBJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/security/monitoring/lowsec/sw) "bBK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/security/monitoring/lowsec/sw) "bBL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/security/monitoring/lowsec/sw) "bBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/prison/cellblock/lowsec/sw) "bBN" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "bBO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/sw) "bBQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/prison/cellblock/lowsec/sw) "bBR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27459,19 +20711,13 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/sw) "bBS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/sw) "bBU" = ( /obj/structure/machinery/light{ @@ -27480,45 +20726,32 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/sw) "bBV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/sw) "bBX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/cellblock/lowsec/sw) "bBY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/sw) "bBZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/girder/reinforced, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/north) "bCa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27528,51 +20761,32 @@ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/north) "bCb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bCc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bCd" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/central/south) "bCe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) "bCf" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/south/north) "bCg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/south/north) "bCh" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -27587,10 +20801,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/central/south) "bCj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27599,9 +20810,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/se) "bCk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27610,10 +20819,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/prison/cellblock/lowsec/se) "bCl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27622,10 +20828,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/se) "bCm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -27634,17 +20837,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/se) "bCo" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/prison/medbay) "bCp" = ( /obj/structure/machinery/light{ @@ -27656,10 +20853,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/se) "bCq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27671,10 +20865,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/se) "bCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27683,10 +20874,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/prison/cellblock/lowsec/se) "bCs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27695,10 +20883,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/cellblock/lowsec/se) "bCt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27707,23 +20892,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/cellblock/lowsec/se) "bCv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/cellblock/lowsec/sw) "bCw" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "bCx" = ( /obj/structure/machinery/shower{ @@ -27732,28 +20908,19 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bCy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "bCz" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "bCA" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -27761,26 +20928,18 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/south/north) "bCB" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bCC" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/east) "bCE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -27802,10 +20961,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/hallway/east) "bCH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/east) "bCJ" = ( /obj/effect/landmark/corpsespawner/prisoner, @@ -27822,10 +20978,7 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/access/south) "bCM" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/prison/hallway/east) "bCN" = ( /obj/structure/bed, @@ -27851,31 +21004,19 @@ /turf/open/floor/plating, /area/prison/maintenance/hangar_barracks) "bCR" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/prison/hallway/east) "bCS" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/prison/hallway/east) "bCT" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/landing/console) "bCU" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/hangar) "bCV" = ( /obj/structure/surface/table/reinforced, @@ -27887,37 +21028,25 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/hangar) "bCW" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/monorail/east) "bCX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/monorail/east) "bCY" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "bCZ" = ( /obj/structure/pipes/vents/pump{ @@ -27947,45 +21076,31 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/se) "bDf" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "bDg" = ( /obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret/dissection) "bDi" = ( /obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "bDj" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "bDk" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "bDl" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "bDm" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -27997,115 +21112,82 @@ /area/prison/security/monitoring/lowsec/sw) "bDo" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/sw) "bDp" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/sw) "bDq" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/sw) "bDr" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/prison/cellblock/lowsec/sw) "bDs" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Southwest Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/sw) "bDt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Southeast Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/se) "bDu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/se) "bDv" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/se) "bDw" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/se) "bDz" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/se) "bDA" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/se) "bDB" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bDC" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bDD" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "bDE" = ( /obj/structure/monorail, @@ -28129,10 +21211,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/east) "bDH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28141,10 +21220,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/east) "bDI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28153,10 +21229,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/east) "bDK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28180,10 +21253,7 @@ }, /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/east) "bDM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28256,27 +21326,18 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bDV" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bDW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "bDX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28291,9 +21352,7 @@ /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "Security Barracks" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/quarters/security) "bDZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28316,36 +21375,23 @@ /turf/open/floor/prison, /area/prison/quarters/security) "bEd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/maintenance/hangar_barracks) "bEe" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/maintenance/hangar_barracks) "bEf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "bEg" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/monorail/east) "bEh" = ( /obj/structure/machinery/door/unpowered/shuttle, /obj/structure/machinery/door/poddoor/shutters/transit/open, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/prison/monorail/east) "bEi" = ( /obj/structure/machinery/door/airlock/almayer/generic, @@ -28359,64 +21405,43 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "bEl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hallway/central/west) "bEm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 8; name = "South High-Security Cellblock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hallway/central/west) "bEn" = ( /turf/closed/wall/r_wall/prison, /area/prison/hallway/central/west) "bEo" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/lowsec/sw) "bEp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/lowsec/sw) "bEq" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/lowsec/sw) "bEs" = ( /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bEt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -28425,10 +21450,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bEu" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -28444,33 +21466,21 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bEw" = ( /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bEx" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bEy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/prison/hallway/east) "bEz" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -28488,10 +21498,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/prison/hallway/east) "bED" = ( /obj/structure/bed, @@ -28529,10 +21536,7 @@ /turf/open/floor/prison, /area/prison/hallway/east) "bEJ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "bEK" = ( /obj/structure/pipes/vents/scrubber, @@ -28556,76 +21560,52 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bEQ" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bER" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bES" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bET" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bEU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/south/north) "bEV" = ( /obj/structure/pipes/vents/scrubber, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "bEW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bEX" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "bEY" = ( /obj/structure/machinery/light{ @@ -28635,52 +21615,34 @@ dir = 4 }, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "bEZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "bFb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/south/north) "bFd" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "bFe" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "bFf" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "bFg" = ( /obj/structure/machinery/power/apc{ @@ -28689,10 +21651,7 @@ start_charge = 0 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "bFh" = ( /obj/structure/largecrate/random/case/double, @@ -28703,67 +21662,44 @@ /turf/open/floor/plating, /area/prison/maintenance/research_medbay) "bFj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/checkpoint/highsec/s) "bFk" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/security/monitoring/lowsec/sw) "bFl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/sw) "bFm" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/sw) "bFn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/security/checkpoint/highsec/s) "bFo" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/security/checkpoint/highsec/s) "bFp" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/camera/autoname{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/checkpoint/highsec/s) "bFq" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/security/checkpoint/highsec/s) "bFr" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/lowsec/sw) "bFs" = ( /obj/structure/pipes/vents/pump{ @@ -28773,83 +21709,53 @@ /area/prison/security/monitoring/lowsec/sw) "bFt" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security/monitoring/lowsec/sw) "bFu" = ( /obj/structure/filingcabinet, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/lowsec/sw) "bFv" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/closed/wall/prison, /area/prison/security/monitoring/lowsec/sw) "bFw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/sw) "bFx" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/sw) "bFy" = ( /obj/structure/machinery/camera/autoname{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "bFz" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/se) "bFA" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/se) "bFB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/lowsec/se) "bFC" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "bFD" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/holding/holding2) "bFE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/holding/holding2) "bFF" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -28857,37 +21763,22 @@ name = "Telecommunications" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/telecomms) "bFG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/hallway/east) "bFH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hallway/east) "bFI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/hallway/east) "bFJ" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/east) "bFK" = ( /obj/structure/disposalpipe/segment, @@ -28974,59 +21865,43 @@ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bFY" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bFZ" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "bGa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/north) "bGd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/north) "bGe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/item/ammo_casing, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/north) "bGf" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/south/north) "bGg" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -29058,16 +21933,11 @@ /area/prison/cellblock/highsec/south/north) "bGm" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "bGn" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "bGp" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -29094,10 +21964,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/security/checkpoint/highsec/s) "bGv" = ( /obj/structure/disposalpipe/segment{ @@ -29115,9 +21982,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/s) "bGx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -29126,9 +21991,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/s) "bGy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -29147,9 +22010,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/s) "bGA" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -29160,10 +22021,7 @@ /area/prison/hallway/central/west) "bGB" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bGC" = ( /obj/item/stack/rods, @@ -29173,25 +22031,18 @@ "bGD" = ( /obj/item/frame/table, /obj/item/shard, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/lowsec/sw) "bGE" = ( /obj/item/shard, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/lowsec/sw) "bGF" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/lowsec/sw) "bGG" = ( /obj/effect/decal/cleanable/blood, @@ -29201,19 +22052,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/lowsec/sw) "bGH" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/se) "bGI" = ( /obj/effect/decal/cleanable/blood, @@ -29221,25 +22066,16 @@ /area/prison/holding/holding2) "bGJ" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bGK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bGL" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bGM" = ( /obj/structure/sink{ @@ -29249,36 +22085,24 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding2) "bGN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding2) "bGO" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/prison/telecomms) "bGP" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "bGQ" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -29309,39 +22133,25 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bGW" = ( /obj/structure/machinery/telecomms/bus, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "bGX" = ( /obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/prison/telecomms) "bGY" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/prison/hallway/east) "bGZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/east) "bHa" = ( /obj/structure/machinery/power/apc{ @@ -29358,9 +22168,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bHc" = ( /obj/structure/bed/chair/office/light{ @@ -29393,10 +22201,7 @@ /area/prison/maintenance/hangar_barracks) "bHk" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/north) "bHl" = ( /obj/structure/machinery/power/apc{ @@ -29436,10 +22241,7 @@ "bHv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/security/checkpoint/highsec/s) "bHw" = ( /obj/structure/stairs/perspective{ @@ -29450,10 +22252,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/s) "bHx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -29463,17 +22262,12 @@ /turf/open/floor/prison, /area/prison/security/checkpoint/highsec/s) "bHy" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/s) "bHA" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/sw) "bHB" = ( /obj/structure/surface/table/reinforced, @@ -29482,10 +22276,7 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/sw) "bHC" = ( /obj/structure/machinery/computer/cameras{ @@ -29493,19 +22284,13 @@ }, /obj/effect/decal/cleanable/blood/gibs, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/sw) "bHD" = ( /obj/structure/machinery/computer/secure_data, /obj/effect/decal/cleanable/blood/gibs, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/sw) "bHE" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -29519,27 +22304,18 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "bHG" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bHH" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding2) "bHI" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -29555,19 +22331,13 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bHL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/telecomms) "bHN" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -29600,9 +22370,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/hallway/east) "bHU" = ( /obj/structure/disposalpipe/segment{ @@ -29639,21 +22407,14 @@ /area/prison/maintenance/hangar_barracks) "bIb" = ( /obj/structure/machinery/door/airlock/glass, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/monorail/east) "bIc" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/south/north) "bIe" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/north) "bIf" = ( /obj/structure/surface/table/woodentable, @@ -29662,10 +22423,7 @@ /area/prison/residential/south) "bIg" = ( /obj/structure/girder, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "bIh" = ( /obj/structure/machinery/light/small{ @@ -29675,25 +22433,18 @@ /area/prison/residential/south) "bIi" = ( /obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bIj" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "bIk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/north) "bIl" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -29704,15 +22455,11 @@ /area/prison/medbay) "bIm" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/north) "bIn" = ( /obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bIo" = ( /obj/structure/machinery/light/small{ @@ -29721,9 +22468,7 @@ /turf/open/floor/wood, /area/prison/residential/south) "bIp" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/security/checkpoint/highsec/s) "bIq" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -29731,25 +22476,16 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/security/checkpoint/highsec/s) "bIr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/security/checkpoint/highsec/s) "bIt" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/security/checkpoint/highsec/s) "bIu" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -29759,18 +22495,12 @@ /area/prison/hallway/central/west) "bIw" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bIx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bIy" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -29781,18 +22511,13 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/prison/hallway/east) "bIB" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/hallway/east) "bID" = ( /obj/structure/disposalpipe/segment, @@ -29807,10 +22532,7 @@ dir = 2; name = "Security Barracks" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/quarters/security) "bIG" = ( /obj/structure/surface/table/reinforced, @@ -29825,20 +22547,14 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/north) "bIK" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bIL" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -29848,10 +22564,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "bIN" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -29872,17 +22585,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/s) "bIQ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "bIS" = ( /obj/structure/pipes/vents/scrubber{ @@ -29890,28 +22597,19 @@ }, /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bIT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bIU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bIV" = ( /obj/structure/machinery/light{ @@ -29921,78 +22619,45 @@ dir = 9 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bIW" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/telecomms) "bIX" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/prison/hallway/east) "bIY" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/prison/hallway/east) "bIZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/prison/hallway/east) "bJa" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bJb" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/prison/hallway/east) "bJc" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security) "bJd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding2) "bJe" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security) "bJf" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bJg" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bJh" = ( /obj/structure/machinery/disposal, @@ -30000,10 +22665,7 @@ dir = 1 }, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security) "bJi" = ( /obj/structure/surface/table/reinforced, @@ -30018,10 +22680,7 @@ /turf/open/floor/prison, /area/prison/maintenance/hangar_barracks) "bJl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/east) "bJo" = ( /obj/structure/bed/chair/office/dark{ @@ -30046,35 +22705,23 @@ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/south/north) "bJs" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/storage/highsec/s) "bJt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/storage/highsec/s) "bJu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/storage/highsec/s) "bJv" = ( /obj/structure/machinery/power/apc{ @@ -30082,10 +22729,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/storage/highsec/s) "bJw" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -30094,9 +22738,7 @@ dir = 2; name = "Security Booth" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/s) "bJx" = ( /obj/structure/surface/table/reinforced, @@ -30104,10 +22746,7 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "bJy" = ( /obj/structure/surface/table/reinforced, @@ -30116,19 +22755,13 @@ pixel_y = 8 }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "bJz" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bJA" = ( /obj/structure/bookcase, @@ -30141,65 +22774,44 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bJE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bJF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Holding Cell 2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bJG" = ( /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bJH" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/prison/security/checkpoint/highsec/s) "bJI" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bJJ" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/telecomms) "bJL" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/prison/hallway/east) "bJM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -30215,23 +22827,16 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/prison/hallway/east) "bJO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Intake Processing" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/intake) "bJP" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/intake) "bJQ" = ( /obj/structure/disposalpipe/segment, @@ -30239,67 +22844,43 @@ dir = 2; name = "Security Department" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bJR" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2; name = "Security Department" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bJS" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security) "bJT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security) "bJU" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bJV" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security) "bJW" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/monorail/east) "bJX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/monorail/east) "bJY" = ( /obj/structure/machinery/light/small, @@ -30338,10 +22919,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "bKf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -30350,10 +22928,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "bKg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -30363,17 +22938,11 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/highsec/s) "bKh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/s) "bKi" = ( /obj/structure/window/reinforced{ @@ -30385,10 +22954,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec/s) "bKk" = ( /obj/structure/window/reinforced{ @@ -30408,24 +22974,15 @@ /area/prison/residential/south) "bKn" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "bKo" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "bKp" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "bKq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -30487,26 +23044,17 @@ dir = 2; name = "Central Ring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) "bKB" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bKC" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bKD" = ( /turf/open/floor/prison, @@ -30515,48 +23063,33 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "bKG" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/prison/intake) "bKH" = ( /obj/structure/closet/secure_closet/security_empty, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bKI" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security) "bKJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bKK" = ( /obj/structure/disposalpipe/segment{ @@ -30565,29 +23098,20 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bKL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/security) "bKM" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security) "bKN" = ( /turf/closed/wall/prison, @@ -30602,10 +23126,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/toilet/security) "bKQ" = ( /obj/structure/bed/chair/office/dark{ @@ -30644,10 +23165,7 @@ "bKX" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "bKY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -30656,10 +23174,7 @@ /turf/open/floor/wood, /area/prison/residential/south) "bKZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/monorail/east) "bLa" = ( /obj/structure/pipes/vents/scrubber{ @@ -30671,10 +23186,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/monorail/east) "bLd" = ( /obj/structure/machinery/light{ @@ -30685,20 +23197,14 @@ /area/prison/residential/south) "bLf" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/north) "bLg" = ( /turf/closed/wall/r_wall/prison, /area/prison/storage/highsec/s) "bLh" = ( /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "bLi" = ( /obj/structure/machinery/light, @@ -30709,96 +23215,61 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "bLk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/highsec/s) "bLl" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bLm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec/s) "bLn" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/highsec/s) "bLp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "bLq" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "bLr" = ( /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bLs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bLt" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding2) "bLu" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/telecomms) "bLv" = ( /turf/closed/wall/r_wall/prison, /area/prison/security) "bLw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/telecomms) "bLx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -30808,26 +23279,17 @@ /area/prison/telecomms) "bLy" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bLz" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bLA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bLD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -30836,19 +23298,14 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Telecommunications" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/telecomms) "bLG" = ( /obj/structure/bed/stool, /turf/open/floor/prison, /area/prison/intake) "bLH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security) "bLI" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -30858,10 +23315,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bLJ" = ( /obj/structure/machinery/shower{ @@ -30869,9 +23323,7 @@ layer = 3.3 }, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bLK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -30882,9 +23334,7 @@ /area/prison/residential/south) "bLM" = ( /obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bLP" = ( /obj/structure/bed/chair/comfy{ @@ -30896,10 +23346,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "bLR" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -30918,37 +23365,25 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bLV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bLW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bLX" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bLY" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -30960,34 +23395,23 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bMa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bMd" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "bMe" = ( /obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMf" = ( /obj/structure/machinery/shower{ @@ -30995,19 +23419,14 @@ layer = 3.3 }, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "bMh" = ( /turf/closed/wall/r_wall/prison, @@ -31030,35 +23449,23 @@ /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bMp" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/research/secret) "bMq" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/security) "bMr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/security/checkpoint/medsec) "bMs" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/security/checkpoint/medsec) "bMt" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -31077,25 +23484,17 @@ pixel_x = 12 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding2) "bMy" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bMz" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/telecomms) "bMA" = ( /obj/structure/pipes/vents/pump{ @@ -31119,41 +23518,26 @@ /area/prison/residential/south) "bMD" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "bME" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bMF" = ( /obj/structure/closet/secure_closet/security_empty, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bMG" = ( /obj/structure/closet/secure_closet/security, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bMI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bMJ" = ( /obj/structure/sink{ @@ -31163,10 +23547,7 @@ pixel_y = 28 }, /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bMK" = ( /obj/structure/sink{ @@ -31175,22 +23556,13 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bML" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/monorail/east) "bMM" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/monorail/east) "bMN" = ( /obj/structure/sink{ @@ -31200,9 +23572,7 @@ /obj/structure/mirror{ pixel_x = -26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMO" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -31211,47 +23581,35 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMS" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMX" = ( /obj/structure/sink{ @@ -31261,76 +23619,47 @@ /obj/structure/mirror{ pixel_x = 26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bMY" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/recreation/highsec/s) "bMZ" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/recreation/highsec/s) "bNa" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/prison/intake) "bNb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/prison/intake) "bNc" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/recreation/highsec/s) "bNd" = ( /turf/closed/wall/prison, /area/prison/intake) "bNe" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/recreation/highsec/s) "bNf" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/recreation/highsec/s) "bNg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/recreation/highsec/s) "bNh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/recreation/highsec/s) "bNi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/recreation/highsec/s) "bNj" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -31349,35 +23678,23 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/recreation/highsec/s) "bNm" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bNn" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bNo" = ( /obj/structure/closet/wardrobe/orange, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bNq" = ( /obj/structure/machinery/disposal, @@ -31385,10 +23702,7 @@ /obj/structure/machinery/camera/autoname{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bNr" = ( /turf/closed/wall/prison, @@ -31403,95 +23717,60 @@ /area/prison/residential/south) "bNt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/prison/laundry) "bNu" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2, /area/prison/laundry) "bNv" = ( /turf/closed/wall/r_wall/prison, /area/prison/security/checkpoint/medsec) "bNw" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/medsec) "bNx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/medsec) "bNy" = ( /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/medsec) "bNz" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bNA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/prison/medbay) "bNB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/security/checkpoint/medsec) "bNC" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bND" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bNE" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/security/checkpoint/medsec) "bNF" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/medsec) "bNG" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/medsec) "bNH" = ( /turf/closed/wall/r_wall/prison, @@ -31511,39 +23790,24 @@ /turf/open/floor/prison, /area/prison/storage/medsec) "bNL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/storage/medsec) "bNM" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/prison/storage/medsec) "bNN" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/prison/storage/medsec) "bNO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/storage/medsec) "bNP" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/storage/medsec) "bNQ" = ( /turf/open/floor/prison, @@ -31591,10 +23855,7 @@ "bOg" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/prison/hallway/east) "bOh" = ( /obj/structure/bed/stool, @@ -31610,45 +23871,29 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bOk" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2, /area/prison/security) "bOl" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security) "bOm" = ( /turf/closed/wall/prison, /area/prison/recreation/highsec/s) "bOn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/recreation/highsec/s) "bOo" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/s) "bOp" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/prison/security) "bOq" = ( /turf/closed/wall/r_wall/prison, @@ -31676,10 +23921,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security) "bOy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -31690,10 +23932,7 @@ icon_state = "door_open"; name = "Security Restrooms" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bOz" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -31706,10 +23945,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bOD" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -31721,27 +23957,18 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bOI" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bOK" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bOL" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -31764,41 +23991,27 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bOP" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bOR" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bOS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bOT" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bOV" = ( /obj/structure/toilet{ @@ -31807,9 +24020,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bOW" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -31818,18 +24029,13 @@ name = "Solitary Confinement"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/south/north) "bOX" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/recreation/highsec/s) "bOY" = ( /obj/structure/pipes/vents/scrubber, @@ -31842,33 +24048,21 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/s) "bPc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/s) "bPe" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "Toilet" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bPf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bPg" = ( /obj/structure/machinery/door/airlock/prison{ @@ -31876,59 +24070,39 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/south/north) "bPh" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bPi" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bPj" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bPk" = ( /obj/item/shard, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bPo" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bPp" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/medsec) "bPq" = ( /obj/structure/pipes/vents/pump/on, @@ -31942,33 +24116,21 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/medsec) "bPs" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bPt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/security/checkpoint/medsec) "bPy" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/medsec) "bPz" = ( /obj/structure/pipes/vents/pump/on, @@ -31977,17 +24139,11 @@ "bPA" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/medsec) "bPC" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/storage/medsec) "bPD" = ( /obj/structure/machinery/power/apc{ @@ -31995,24 +24151,15 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/storage/medsec) "bPF" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/cellblock/protective) "bPG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/cellblock/protective) "bPH" = ( /obj/structure/bed/stool, @@ -32040,10 +24187,7 @@ capacity = 1e+006; dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "bPQ" = ( /turf/closed/wall/prison, @@ -32132,27 +24276,18 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security) "bQh" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security) "bQi" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bQj" = ( /turf/closed/wall/r_wall/prison, @@ -32161,10 +24296,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security) "bQl" = ( /obj/structure/pipes/vents/pump{ @@ -32184,10 +24316,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bQo" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -32196,19 +24325,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bQp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bQq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -32217,10 +24340,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bQr" = ( /obj/structure/machinery/light{ @@ -32229,28 +24349,19 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "bQs" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bQt" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; name = "Garden" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bQu" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -32258,18 +24369,12 @@ name = "Garden" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bQv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "bQw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -32288,84 +24393,56 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/s) "bQB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/s) "bQC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/recreation/highsec/s) "bQD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/recreation/highsec/s) "bQE" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bQF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/s) "bQG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bQH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bQI" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bQJ" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQK" = ( /obj/structure/surface/rack, @@ -32373,55 +24450,34 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQM" = ( /obj/structure/surface/rack, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQO" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/s) "bQR" = ( /obj/structure/machinery/power/apc{ @@ -32429,38 +24485,27 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bQS" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/medsec) "bQT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2, /area/prison/security/checkpoint/medsec) "bQU" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/medsec) "bQV" = ( /obj/structure/surface/table/reinforced, @@ -32469,24 +24514,15 @@ pixel_y = 8 }, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bQW" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/prison/security/checkpoint/medsec) "bQX" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/prison/security/checkpoint/medsec) "bQY" = ( /obj/structure/surface/table/reinforced, @@ -32498,19 +24534,13 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bQZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/medsec) "bRa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -32519,10 +24549,7 @@ /turf/open/floor/prison, /area/prison/security/checkpoint/medsec) "bRb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/medsec) "bRc" = ( /obj/structure/machinery/light{ @@ -32540,10 +24567,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/storage/medsec) "bRf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -32552,28 +24576,19 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Medium-Security Storage" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/storage/medsec) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/storage/medsec) "bRh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/storage/medsec) "bRi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -32584,24 +24599,15 @@ "bRj" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "bRk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "bRl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "bRm" = ( /obj/structure/machinery/light{ @@ -32634,20 +24640,14 @@ /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/engineering) "bRs" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /obj/item/clothing/gloves/yellow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/engineering) "bRu" = ( /obj/structure/surface/table/reinforced, @@ -32726,45 +24726,32 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/intake) "bRI" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/intake) "bRJ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/intake) "bRK" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/intake) "bRM" = ( /turf/closed/wall/prison, /area/prison/engineering/atmos) "bRN" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security) "bRO" = ( /obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security) "bRW" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -32794,10 +24781,7 @@ /area/prison/cellblock/highsec/south/north) "bSd" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/south/north) "bSf" = ( /obj/structure/machinery/light/small{ @@ -32810,10 +24794,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/recreation/highsec/s) "bSi" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -32834,59 +24815,39 @@ dir = 2; name = "South High-Security Recreation" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/recreation/highsec/s) "bSn" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/s) "bSo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/s) "bSp" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bSq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSr" = ( /obj/structure/surface/rack, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSt" = ( /obj/structure/surface/rack, @@ -32894,25 +24855,16 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/recreation/highsec/s) "bSw" = ( /obj/structure/surface/rack, @@ -32924,20 +24876,14 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSy" = ( /obj/structure/surface/rack, @@ -32947,10 +24893,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -32959,10 +24902,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSA" = ( /obj/item/clothing/under/color/orange, @@ -32973,33 +24913,21 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bSB" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/medsec) "bSC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/medsec) "bSD" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bSE" = ( /obj/structure/surface/table/reinforced, @@ -33007,10 +24935,7 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bSF" = ( /turf/open/floor/prison, @@ -33022,26 +24947,18 @@ /area/prison/security/checkpoint/medsec) "bSH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/medsec) "bSI" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/medsec) "bSJ" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/medsec) "bSK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -33049,24 +24966,15 @@ /area/prison/storage/medsec) "bSL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/storage/medsec) "bSM" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/cellblock/protective) "bSN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/prison/cellblock/protective) "bSO" = ( /obj/structure/bookcase, @@ -33215,30 +25123,21 @@ "bTm" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/intake) "bTn" = ( /obj/structure/surface/table/reinforced, /obj/item/paper/prison_station/inmate_handbook, /obj/item/paper/prison_station/inmate_handbook, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/intake) "bTo" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/intake) "bTp" = ( /obj/structure/disposalpipe/junction{ @@ -33247,10 +25146,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/intake) "bTq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -33259,43 +25155,28 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/intake) "bTr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/intake) "bTt" = ( /obj/structure/surface/table/reinforced, /obj/item/paper/prison_station/inmate_handbook, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/intake) "bTu" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bTv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bTw" = ( /obj/structure/surface/table/reinforced, @@ -33303,15 +25184,10 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bTx" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/intake) "bTy" = ( /obj/structure/surface/table/reinforced, @@ -33319,10 +25195,7 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bTz" = ( /obj/structure/toilet{ @@ -33331,10 +25204,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/toilet/security) "bTA" = ( /obj/item/reagent_container/glass/bucket/mopbucket, @@ -33356,9 +25226,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding12" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/south) "bTF" = ( /obj/structure/flora/tree/dead/tree_1, @@ -33368,9 +25236,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding10" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/south) "bTH" = ( /obj/structure/bed/chair/comfy{ @@ -33406,18 +25272,14 @@ /area/prison/maintenance/residential/access/south) "bTQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "bTR" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, /area/prison/maintenance/residential/access/south) "bTS" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "bTT" = ( /obj/structure/pipes/vents/pump{ @@ -33427,38 +25289,26 @@ /area/prison/recreation/highsec/s) "bTU" = ( /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/recreation/highsec/s) "bTV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bTW" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bTY" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bTZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -33467,10 +25317,7 @@ dir = 2; name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bUa" = ( /obj/structure/window/framed/prison/reinforced, @@ -33499,10 +25346,7 @@ dir = 2; name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) "bUe" = ( /obj/structure/pipes/vents/pump{ @@ -33511,18 +25355,12 @@ /turf/open/floor/prison, /area/prison/storage/medsec) "bUf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/cellblock/protective) "bUg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/cellblock/protective) "bUh" = ( /obj/structure/pipes/vents/pump{ @@ -33659,10 +25497,7 @@ /area/prison/engineering/atmos) "bUG" = ( /obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/intake) "bUH" = ( /obj/structure/bed/chair/office/dark{ @@ -33677,10 +25512,7 @@ /area/prison/intake) "bUJ" = ( /obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/intake) "bUK" = ( /obj/effect/landmark/corpsespawner/prison_security, @@ -33694,33 +25526,23 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bUP" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bUQ" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding3" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/south) "bUR" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding6" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/south) "bUS" = ( /obj/structure/shuttle/diagonal{ @@ -33733,10 +25555,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "bUV" = ( /obj/structure/machinery/light{ @@ -33761,20 +25580,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bVa" = ( /obj/structure/monorail, /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bVb" = ( /obj/effect/decal/warning_stripes{ @@ -33787,10 +25600,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bVc" = ( /obj/effect/decal/warning_stripes{ @@ -33810,96 +25620,61 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "bVf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "bVg" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/north) "bVh" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/north) "bVi" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/recreation/highsec/s) "bVj" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/recreation/highsec/s) "bVk" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/recreation/highsec/s) "bVl" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/recreation/highsec/s) "bVm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/recreation/highsec/s) "bVn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/recreation/highsec/s) "bVo" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/recreation/highsec/s) "bVp" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/recreation/highsec/s) "bVq" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) "bVr" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -33908,10 +25683,7 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/holding/holding2) "bVs" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -33921,16 +25693,11 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "bVt" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) "bVu" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -33942,9 +25709,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bVw" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -33963,9 +25728,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bVy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -33974,9 +25737,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bVz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -33988,9 +25749,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bVA" = ( /obj/structure/machinery/light{ @@ -34002,10 +25761,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/security/checkpoint/medsec) "bVB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -34014,10 +25770,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/security/checkpoint/medsec) "bVC" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -34025,35 +25778,25 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/security/checkpoint/medsec) "bVD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/security/checkpoint/medsec) "bVE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bVF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/security/checkpoint/medsec) "bVG" = ( /obj/structure/surface/table/reinforced, @@ -34070,38 +25813,23 @@ /area/prison/security/checkpoint/medsec) "bVJ" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/storage/medsec) "bVK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/prison/storage/medsec) "bVL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/storage/medsec) "bVM" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "bVN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/protective) "bVO" = ( /obj/structure/machinery/power/port_gen/pacman/super, @@ -34139,41 +25867,30 @@ dir = 8 }, /obj/structure/machinery/meter, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/prison/engineering/atmos) "bVW" = ( /obj/structure/pipes/standard/simple/visible/yellow{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/engineering/atmos) "bVX" = ( /obj/structure/pipes/standard/manifold/visible/yellow, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/engineering/atmos) "bVY" = ( /obj/structure/pipes/standard/simple/visible/yellow{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/engineering/atmos) "bVZ" = ( /obj/structure/pipes/standard/simple/visible/yellow{ dir = 10 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/prison/engineering/atmos) "bWb" = ( /obj/structure/pipes/standard/simple/visible/supply, @@ -34203,10 +25920,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/prison/hallway/east) "bWh" = ( /obj/structure/disposalpipe/segment, @@ -34219,10 +25933,7 @@ }, /obj/effect/landmark/corpsespawner/prison_security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/prison/hallway/east) "bWj" = ( /obj/structure/machinery/power/apc{ @@ -34230,39 +25941,25 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/intake) "bWl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/intake) "bWm" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security) "bWn" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bWo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/security) "bWp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -34341,39 +26038,27 @@ icon_state = "W" }, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bWG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bWH" = ( /obj/structure/monorail, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bWI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bWJ" = ( /obj/effect/decal/warning_stripes{ @@ -34394,9 +26079,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "bWP" = ( /obj/structure/machinery/light{ @@ -34405,10 +26088,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "bWQ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -34422,30 +26102,21 @@ dir = 4; network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/security/checkpoint/medsec) "bWS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/security/checkpoint/medsec) "bWT" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/security/checkpoint/medsec) "bWU" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; name = "Medium-Security Storage" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/storage/medsec) "bWV" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -34453,31 +26124,20 @@ dir = 2; name = "Medium-Security Storage" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/storage/medsec) "bWW" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "bWX" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "bWY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "bWZ" = ( /obj/effect/landmark/survivor_spawner, @@ -34507,17 +26167,11 @@ /area/prison/engineering) "bXe" = ( /obj/structure/machinery/power/monitor, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "bXf" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "bXg" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -34532,25 +26186,16 @@ /turf/open/floor/plating, /area/prison/engineering) "bXj" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/engineering) "bXk" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Atmospherics" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "bXl" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/engineering/atmos) "bXm" = ( /obj/structure/machinery/power/apc{ @@ -34561,51 +26206,33 @@ /area/prison/engineering/atmos) "bXn" = ( /obj/structure/pipes/binary/pump/high_power/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/engineering/atmos) "bXo" = ( /obj/structure/machinery/pipedispenser, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering/atmos) "bXp" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering/atmos) "bXq" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/toolbox/mechanical, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering/atmos) "bXr" = ( /obj/structure/machinery/computer/atmos_alert, /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering/atmos) "bXs" = ( /obj/structure/pipes/standard/simple/visible/yellow{ dir = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/engineering/atmos) "bXt" = ( /obj/structure/pipes/binary/pump/high_power{ @@ -34647,10 +26274,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/prison/hallway/east) "bXB" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -34659,28 +26283,19 @@ dir = 2; name = "Intake Processing" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bXC" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2; name = "Intake Processing" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bXD" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/spray/pepper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bXE" = ( /obj/structure/machinery/computer/cameras{ @@ -34726,29 +26341,20 @@ icon_state = "SE-out" }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bXN" = ( /obj/structure/monorail, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bXO" = ( /obj/effect/decal/warning_stripes{ @@ -34761,10 +26367,7 @@ icon_state = "SW-out" }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "bXP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -34779,10 +26382,7 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/access/south) "bXU" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/intake) "bXW" = ( /obj/structure/surface/table/reinforced, @@ -34800,26 +26400,19 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/medsec) "bYa" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/medsec) "bYb" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "bYc" = ( /obj/effect/spawner/random/toolbox, @@ -34848,10 +26441,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/engineering) "bYh" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -34860,10 +26450,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/engineering) "bYj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -34897,59 +26484,38 @@ /area/prison/engineering/atmos) "bYo" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security) "bYp" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bYq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bYr" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bYs" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security) "bYt" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security) "bYu" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/east, /area/prison/security) "bYv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -34960,33 +26526,23 @@ "bYw" = ( /obj/structure/surface/table/reinforced, /obj/item/device/taperecorder, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bYx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "bYy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "bYz" = ( -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/south) "bYA" = ( /obj/structure/surface/table/woodentable, @@ -35050,34 +26606,24 @@ /turf/open/floor/prison, /area/prison/recreation/medsec) "bYT" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "bYU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "bYV" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "bYW" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "bYX" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/recreation/medsec) "bYY" = ( /obj/effect/decal/cleanable/blood, @@ -35128,17 +26674,11 @@ /area/prison/engineering) "bZj" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hallway/engineering) "bZk" = ( /obj/structure/pipes/standard/simple/hidden/yellow, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/prison/hallway/engineering) "bZl" = ( /obj/structure/machinery/power/apc{ @@ -35146,82 +26686,49 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "bZm" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "bZn" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "bZo" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "bZp" = ( /turf/closed/wall/prison, /area/prison/security) "bZq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "bZr" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "bZs" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/prison/hallway/engineering) "bZt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/engineering) "bZu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/engineering) "bZv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/engineering) "bZw" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/prison/hallway/engineering) "bZx" = ( /obj/structure/window/framed/prison/reinforced, @@ -35244,10 +26751,7 @@ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bZA" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -35309,10 +26813,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security) "bZI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35321,10 +26822,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bZK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35337,20 +26835,14 @@ /turf/open/floor/prison, /area/prison/security) "bZM" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/south) "bZN" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security) "bZO" = ( /obj/structure/window/framed/prison/cell, @@ -35367,50 +26859,32 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/security) "bZQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "bZR" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "bZS" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "bZT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "bZU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/south) "bZV" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "bZW" = ( /turf/closed/wall/r_wall/prison, @@ -35418,10 +26892,7 @@ "bZX" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/handcuffs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "bZY" = ( /obj/structure/machinery/light{ @@ -35444,22 +26915,13 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/access/south) "cad" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/cellblock/mediumsec/north) "cae" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "caf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/north) "cag" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -35470,62 +26932,39 @@ /area/prison/cellblock/mediumsec/north) "cai" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/north) "caj" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "cak" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "cal" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "cam" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/north) "cao" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/north) "caq" = ( /obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "car" = ( /obj/structure/machinery/door/poddoor/almayer/open{ name = "emergency lockdown"; use_power = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/protective) "cau" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -35538,17 +26977,13 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/highsec/south/south) "cay" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/south/south) "caz" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/south/south) "caA" = ( /obj/structure/machinery/light{ @@ -35558,9 +26993,7 @@ /area/prison/recreation/medsec) "caB" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "caC" = ( /obj/structure/window/framed/prison/reinforced, @@ -35570,25 +27003,19 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "caE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "caF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "caG" = ( /turf/open/floor/prison, @@ -35605,27 +27032,19 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "caJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "caK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "caL" = ( /obj/structure/machinery/light{ @@ -35636,10 +27055,7 @@ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "caM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -35680,10 +27096,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "caT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35692,10 +27105,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/hallway/engineering) "caU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35705,10 +27115,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/prison/hallway/engineering) "caV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35732,31 +27139,22 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/west) "caZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "cba" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cbb" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cbc" = ( /turf/open/floor/plating, @@ -35795,10 +27193,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/engineering) "cbk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35819,9 +27214,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Engineering Hallway" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/hallway/engineering) "cbn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -35846,35 +27239,25 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cbq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/north) "cbr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/north) "cbs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/north) "cbt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35888,24 +27271,17 @@ /area/prison/cellblock/mediumsec/north) "cbv" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/north) "cbw" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/north) "cbx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "cby" = ( /obj/structure/window/framed/prison/cell, @@ -35915,24 +27291,17 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/north) "cbA" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "cbB" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "cbC" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -35953,10 +27322,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/security) "cbI" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security) "cbR" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -35964,15 +27330,11 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/south/south) "cbS" = ( /obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cbU" = ( /obj/structure/machinery/power/apc{ @@ -35983,33 +27345,22 @@ /turf/open/floor/prison, /area/prison/recreation/medsec) "cbV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/recreation/medsec) "cbW" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/recreation/medsec) "cbX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cbY" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "cbZ" = ( /turf/open/floor/plating, @@ -36030,25 +27381,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/mediumsec/north) "ccc" = ( /obj/structure/machinery/shower{ pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/mediumsec/north) "ccd" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/mediumsec/north) "cce" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36063,10 +27408,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cch" = ( /obj/structure/machinery/light/small{ @@ -36124,10 +27466,7 @@ /area/prison/cellblock/mediumsec/south) "ccp" = ( /obj/structure/pipes/standard/simple/hidden/yellow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/engineering) "ccq" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -36143,10 +27482,7 @@ dir = 1 }, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/engineering) "cct" = ( /obj/structure/pipes/vents/pump{ @@ -36173,9 +27509,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Engineering Hallway" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/hallway/engineering) "ccB" = ( /obj/effect/decal/warning_stripes{ @@ -36221,10 +27555,7 @@ /obj/structure/machinery/door/airlock/almayer/command/colony{ name = "Head of Security's Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/head) "ccL" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -36232,10 +27563,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/head) "ccM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36268,32 +27596,20 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/south/south) "ccT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "ccU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "ccV" = ( /turf/closed/wall/prison, /area/prison/cellblock/mediumsec/north) "ccW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "ccX" = ( /obj/effect/landmark/monkey_spawn, @@ -36305,10 +27621,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cde" = ( /turf/closed/wall/prison, @@ -36316,46 +27629,31 @@ "cdf" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "cdi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/south) "cdk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/south) "cdl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/south/south) "cdm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/south/south) "cdr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -36370,18 +27668,14 @@ dir = 5 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cdu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cdv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36393,10 +27687,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/recreation/medsec) "cdx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -36406,47 +27697,31 @@ dir = 2; name = "Medium-Security Recreation" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/recreation/medsec) "cdy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cdz" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cdA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/prison/cellblock/mediumsec/north) "cdB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/prison/cellblock/mediumsec/north) "cdC" = ( /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/mediumsec/north) "cdE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -36457,60 +27732,42 @@ /turf/open/floor/wood, /area/prison/library) "cdG" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/prison/engineering) "cdH" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) "cdI" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/engineering) "cdJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hallway/engineering) "cdK" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hallway/engineering) "cdL" = ( /obj/structure/pipes/standard/simple/hidden/yellow{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hallway/engineering) "cdM" = ( /obj/structure/pipes/standard/simple/hidden/yellow{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hallway/engineering) "cdN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/pipes/standard/simple/hidden/yellow{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hallway/engineering) "cdO" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -36518,87 +27775,58 @@ /obj/structure/pipes/standard/simple/hidden/yellow{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/hallway/engineering) "cdP" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "cdQ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/hallway/engineering) "cdR" = ( /obj/structure/machinery/door/poddoor/two_tile/opened{ id = "execution" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/execution) "cdS" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/execution) "cdT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security) "cdU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security) "cdV" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security) "cdW" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security) "cdX" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security) "cdY" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security) "cea" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security) "ceb" = ( /obj/structure/surface/table/woodentable, @@ -36627,74 +27855,54 @@ icon_state = "coil1"; name = "cable piece" }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cen" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "ceo" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /obj/item/ammo_casing, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cep" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/south) "ceq" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cer" = ( /obj/item/ammo_casing, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "ces" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cev" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/prison/security) "cew" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cex" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cey" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cez" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -36705,38 +27913,27 @@ /area/prison/recreation/medsec) "ceA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/prison/cellblock/mediumsec/north) "ceB" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/mediumsec/north) "ceC" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "ceD" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "ceE" = ( /obj/structure/bookcase, @@ -36774,64 +27971,39 @@ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/south/south) "ceK" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/engineering) "ceL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/south) "ceM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/engineering) "ceN" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "ceO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hallway/engineering) "ceP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hallway/engineering) "ceQ" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hallway/engineering) "ceR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hallway/engineering) "ceS" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -36870,20 +28042,14 @@ dir = 2; name = "Briefing" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/briefing) "ceX" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2; name = "Briefing" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/briefing) "ceY" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -36891,10 +28057,7 @@ dir = 2; name = "Riot Armory" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/armory/riot) "ceZ" = ( /obj/structure/machinery/door_control{ @@ -36902,17 +28065,11 @@ name = "Riot Armory Access"; pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "cfa" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "cfb" = ( /obj/structure/machinery/door_control{ @@ -36920,10 +28077,7 @@ name = "Lethal Armory Access"; pixel_x = 24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "cfc" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -36931,10 +28085,7 @@ dir = 2; name = "Lethal Armory" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/armory/lethal) "cfd" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -36946,25 +28097,18 @@ /area/prison/security/head) "cfh" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cfi" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) "cfk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/cellblock/protective) "cfl" = ( /turf/open/floor/plating, @@ -36976,25 +28120,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/protective) "cfn" = ( /obj/structure/machinery/shower{ pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/protective) "cfo" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/protective) "cfp" = ( /obj/structure/surface/table/reinforced, @@ -37027,10 +28165,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "cfu" = ( /obj/structure/window/framed/prison/reinforced, @@ -37040,23 +28175,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "cfw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "cfx" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "cfy" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -37127,43 +28253,28 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/briefing) "cfM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/briefing) "cfN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/briefing) "cfO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/briefing) "cfP" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/briefing) "cfQ" = ( /obj/structure/closet/gimmick{ @@ -37173,25 +28284,17 @@ /obj/item/weapon/shield/riot, /obj/item/clothing/head/helmet/riot, /obj/item/clothing/suit/armor/riot, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/armory/riot) "cfR" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/armory/riot) "cfS" = ( /obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "cfT" = ( /obj/structure/sink{ @@ -37204,9 +28307,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "cfU" = ( /obj/structure/machinery/light/small{ @@ -37219,50 +28320,31 @@ /obj/structure/mirror{ pixel_x = -26 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "cfV" = ( /obj/structure/machinery/door/window/westleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "cfW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/south/south) "cfX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/armory/riot) "cfY" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "cfZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/armory/lethal) "cga" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/armory/lethal) "cgb" = ( /obj/structure/closet, @@ -37282,23 +28364,14 @@ /turf/open/floor/wood, /area/prison/security/head) "cgh" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/south/south) "cgi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/south/south) "cgj" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/highsec/south/south) "cgk" = ( /obj/structure/bed/chair/comfy{ @@ -37326,45 +28399,30 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "cgq" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/mediumsec/north) "cgr" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cgt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "cgu" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "cgv" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/cellblock/protective) "cgw" = ( /obj/structure/machinery/power/apc{ @@ -37372,36 +28430,23 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/cellblock/protective) "cgx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/prison/cellblock/protective) "cgy" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "cgz" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/cellblock/protective) "cgA" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/cellblock/protective) "cgB" = ( /obj/structure/surface/table/reinforced, @@ -37420,17 +28465,11 @@ dir = 8; health = 80 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "cgF" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "cgG" = ( /turf/open/floor/wood, @@ -37547,17 +28586,13 @@ /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "chd" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "che" = ( /obj/structure/machinery/shower{ @@ -37566,16 +28601,11 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "chf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/armory/riot) "chh" = ( /obj/structure/girder, @@ -37627,26 +28657,17 @@ /obj/structure/machinery/door/poddoor/two_tile/vertical/open{ id = "riot_armory" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/armory/riot) "chp" = ( /obj/structure/machinery/door/poddoor/two_tile/vertical/open{ id = "lethal_armory" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/armory/lethal) "chq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/armory/lethal) "chr" = ( /obj/structure/surface/rack, @@ -37688,36 +28709,25 @@ "chy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "chz" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "chA" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "chB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "chC" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -37725,10 +28735,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "chD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37741,9 +28748,7 @@ dir = 2; name = "Protective Custody Cells" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/cellblock/protective) "chE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37752,10 +28757,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "chF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37771,10 +28773,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "chH" = ( /turf/closed/wall/r_wall/prison, @@ -37787,15 +28786,10 @@ name = "Solitary Confinement"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/cellblock/protective) "chJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/prison/cellblock/protective) "chK" = ( /obj/structure/bed/chair, @@ -37885,10 +28879,7 @@ /turf/open/floor/prison, /area/prison/security/armory/riot) "cif" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/armory/lethal) "cig" = ( /obj/structure/machinery/power/apc{ @@ -37897,18 +28888,12 @@ start_charge = 0 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/armory/riot) "cih" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security) "cii" = ( /obj/structure/machinery/power/apc{ @@ -37917,10 +28902,7 @@ start_charge = 0 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/armory/lethal) "cij" = ( /obj/structure/surface/rack, @@ -37959,9 +28941,7 @@ id = "pirate_cargo"; name = "Rocinante Cargo Bay Door" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/pirate) "ciq" = ( /obj/item/ammo_casing, @@ -37971,9 +28951,7 @@ id = "pirate_cargo"; name = "Rocinante Cargo Bay Door" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/pirate) "cir" = ( /obj/effect/landmark/corpsespawner/prison_security, @@ -37984,9 +28962,7 @@ id = "pirate_cargo"; name = "Rocinante Cargo Bay Door" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/pirate) "cis" = ( /obj/item/ammo_casing, @@ -37995,9 +28971,7 @@ id = "pirate_cargo"; name = "Rocinante Cargo Bay Door" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/pirate) "ciu" = ( /obj/structure/shuttle/diagonal{ @@ -38016,104 +28990,63 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "ciz" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/north) "ciA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "ciB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/north) "ciC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/north) "ciD" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/north) "ciE" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "ciF" = ( /obj/structure/girder/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "ciG" = ( /obj/item/frame/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "ciH" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "ciI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "ciJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/cellblock/protective) "ciK" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/protective) "ciL" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/prison/cellblock/protective) "ciM" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -38123,81 +29056,49 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/prison/cellblock/protective) "ciO" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/protective) "ciP" = ( /obj/structure/machinery/camera/autoname{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/protective) "ciQ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/protective) "ciR" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/protective) "ciS" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/protective) "ciT" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/cellblock/protective) "ciU" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/parole/protective_custody) "ciV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/parole/protective_custody) "ciW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/prison/parole/protective_custody) "ciX" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/parole/protective_custody) "cja" = ( /obj/structure/disposalpipe/segment{ @@ -38257,10 +29158,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/armory/riot) "cjl" = ( /obj/structure/machinery/light{ @@ -38269,10 +29167,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/armory/lethal) "cjm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38294,36 +29189,25 @@ name = "Toilet"; opacity = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/security/head) "cjp" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/south/south) "cjq" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/south/south) "cjr" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/south) "cjt" = ( /obj/effect/decal/warning_stripes{ @@ -38379,10 +29263,7 @@ /area/prison/pirate) "cjA" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec_medsec) "cjB" = ( /turf/closed/wall/prison, @@ -38395,24 +29276,17 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "cjE" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/north) "cjG" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/north) "cjJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -38424,15 +29298,11 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "cjL" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "cjN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38440,26 +29310,19 @@ }, /obj/item/frame/table, /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/north) "cjO" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/north) "cjP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/mediumsec/north) "cjQ" = ( /obj/structure/window/framed/prison/reinforced, @@ -38472,33 +29335,23 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "cjT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/prison/cellblock/protective) "cjU" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/protective) "cjY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/prison/cellblock/protective) "cjZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38508,18 +29361,13 @@ dir = 2; name = "Protective Custody Parole Waiting" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/parole/protective_custody) "cka" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/parole/protective_custody) "ckb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38528,10 +29376,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/parole/protective_custody) "ckc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/parole/protective_custody) "ckd" = ( /obj/structure/bed/chair{ @@ -38561,9 +29406,7 @@ /area/prison/pirate) "ckj" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "ckk" = ( /obj/item/ammo_casing, @@ -38578,9 +29421,7 @@ /turf/open/floor/plating, /area/prison/pirate) "ckn" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cko" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -38593,10 +29434,7 @@ /area/prison/security/armory/riot) "ckq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security/armory/riot) "ckr" = ( /obj/structure/surface/rack, @@ -38643,34 +29481,25 @@ /obj/structure/mirror{ pixel_x = -28 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/security/head) "cky" = ( /obj/structure/toilet{ pixel_y = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/security/head) "ckz" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/machinery/door/window/westright, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/security/head) "ckA" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "ckB" = ( /obj/structure/surface/table/reinforced, @@ -38678,10 +29507,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec_medsec) "ckC" = ( /obj/structure/surface/table/reinforced, @@ -38693,41 +29519,26 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec_medsec) "ckD" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec_medsec) "ckE" = ( /obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "ckF" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/south/south) "ckG" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/south/south) "ckI" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -38736,20 +29547,14 @@ "ckJ" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/protective) "ckK" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/protective) "ckL" = ( /obj/structure/surface/table/reinforced, @@ -38757,32 +29562,20 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/protective) "ckM" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/protective) "ckN" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "ckO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "ckP" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -38790,36 +29583,25 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/cellblock/protective) "ckQ" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/parole/protective_custody) "ckR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/prison/parole/protective_custody) "ckS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/parole/protective_custody) "ckT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -38874,34 +29656,22 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "cld" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "cle" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/prison/cellblock/highsec/south/south) "clf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/south) "clj" = ( /obj/structure/bed/chair/office/dark{ @@ -38912,55 +29682,35 @@ dir = 1; icon_state = "exposed01-supply" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec_medsec) "clk" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec_medsec) "cll" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/south) "clm" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/south) "clo" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/north) "clp" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/north) "clq" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "clr" = ( /obj/structure/machinery/power/apc{ @@ -38968,28 +29718,19 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/protective) "cls" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/protective) "clt" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/protective) "clu" = ( /obj/structure/surface/table/reinforced, @@ -38998,35 +29739,23 @@ pixel_y = 8 }, /obj/effect/landmark/item_pool_spawner/prison_lock/master, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/protective) "clv" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/protective) "clw" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/protective) "clx" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/prison/parole/protective_custody) "cly" = ( /turf/closed/wall/r_wall/prison, @@ -39035,10 +29764,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/prison/parole/protective_custody) "clC" = ( /obj/structure/disposalpipe/segment{ @@ -39109,10 +29835,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "clP" = ( /obj/structure/pipes/vents/scrubber{ @@ -39121,43 +29844,29 @@ /turf/open/floor/plating, /area/prison/disposal) "clQ" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/south) "clS" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/north, /area/prison/security/checkpoint/highsec_medsec) "clT" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/highsec_medsec) "clU" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "clV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "clW" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -39171,9 +29880,7 @@ /area/prison/cellblock/highsec/south/south) "clY" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "cmc" = ( /obj/structure/machinery/light/small{ @@ -39182,32 +29889,23 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/highsec/south/south) "cmd" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/protective) "cme" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cmf" = ( /obj/effect/landmark/good_item, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cmg" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cmh" = ( /turf/open/floor/prison, @@ -39222,10 +29920,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/protective) "cmk" = ( /obj/structure/window/framed/prison/reinforced, @@ -39238,36 +29933,26 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Protective Custody Monitoring" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/security/monitoring/protective) "cmm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/cellblock/protective) "cmn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/cellblock/protective) "cmo" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "cmp" = ( /obj/effect/decal/cleanable/blood, @@ -39275,15 +29960,11 @@ /area/prison/cellblock/protective) "cmq" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "cmr" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "cms" = ( /obj/structure/machinery/light, @@ -39309,9 +29990,7 @@ /area/prison/disposal) "cmw" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/briefing) "cmx" = ( /obj/structure/window/framed/prison/reinforced, @@ -39347,116 +30026,75 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/checkpoint/highsec_medsec) "cmI" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "cmK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/prison/cellblock/highsec/south/south) "cmL" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/prison/red/northeast, /area/prison/cellblock/highsec/south/south) "cmM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "cmN" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/protective) "cmO" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/protective) "cmP" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/protective) "cmQ" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/protective) "cmR" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "cmS" = ( /obj/item/ammo_casing, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cmT" = ( /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cmU" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "cmV" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/highsec_medsec) "cmW" = ( /obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/protective) "cmX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "cmY" = ( /obj/structure/reagent_dispensers/fueltank, @@ -39491,30 +30129,18 @@ /turf/open/floor/prison, /area/prison/execution) "cne" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/briefing) "cnf" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/briefing) "cnh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/briefing) "cni" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/protective) "cnj" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -39529,18 +30155,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec_medsec) "cnn" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec_medsec) "cnp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39555,23 +30177,15 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/cellblock/highsec/south/south) "cnr" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cnt" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/north) "cnu" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -39666,10 +30280,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cnN" = ( /obj/effect/decal/warning_stripes{ @@ -39706,35 +30317,23 @@ /area/prison/execution) "cnQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cnR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "cnS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cnT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cnU" = ( /obj/structure/machinery/light{ @@ -39743,19 +30342,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/briefing) "cnV" = ( /obj/structure/bed, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "cnX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -39765,10 +30359,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/briefing) "cnZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39783,10 +30374,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/briefing) "cod" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -39795,15 +30383,10 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/east) "coj" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/briefing) "cok" = ( /obj/structure/machinery/light/small{ @@ -39816,9 +30399,7 @@ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "com" = ( /obj/structure/machinery/conveyor, @@ -39852,9 +30433,7 @@ /obj/item/ammo_magazine/rifle/mar40, /obj/item/weapon/gun/rifle/mar40, /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cor" = ( /obj/item/ammo_magazine/rifle/mar40, @@ -39862,9 +30441,7 @@ dir = 1; flipped = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cos" = ( /obj/effect/decal/warning_stripes{ @@ -39891,32 +30468,20 @@ /turf/open/floor/plating, /area/prison/disposal) "cox" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "coy" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/south) "coz" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/south) "coA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/south) "coB" = ( /obj/effect/decal/warning_stripes{ @@ -39942,19 +30507,13 @@ /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/briefing) "coG" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/briefing) "coH" = ( /obj/structure/shuttle/engine/heater, @@ -39965,16 +30524,10 @@ /turf/open/floor/plating, /area/prison/cellblock/mediumsec/west) "coK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/east) "coL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/east) "coM" = ( /obj/structure/machinery/door/airlock/prison{ @@ -39982,15 +30535,10 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/east) "coN" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/east) "coO" = ( /obj/effect/decal/warning_stripes{ @@ -40015,10 +30563,7 @@ /turf/open/floor/plating, /area/prison/disposal) "coS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/briefing) "coT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40042,10 +30587,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "coX" = ( /obj/effect/decal/warning_stripes{ @@ -40077,17 +30619,13 @@ dir = 1; flipped = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cpb" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cpc" = ( /obj/item/ammo_magazine/rifle/mar40, @@ -40112,10 +30650,7 @@ name = "Remote Door Control"; pixel_x = 24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cpf" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -40125,10 +30660,7 @@ /turf/open/floor/plating, /area/prison/security/briefing) "cph" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/prison/cellblock/highsec/south/south) "cpi" = ( /obj/structure/shuttle/engine/router{ @@ -40140,30 +30672,20 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) "cpl" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/cellblock/highsec/south/south) "cpm" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/west) "cpp" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/cellblock/protective) "cpq" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/north) "cpr" = ( /obj/structure/machinery/light/small{ @@ -40175,10 +30697,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/east) "cpu" = ( /obj/structure/machinery/conveyor, @@ -40229,29 +30748,20 @@ /area/prison/disposal) "cpC" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cpE" = ( /obj/item/device/assembly/signaller{ code = 2; frequency = 1449 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cpF" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/execution) "cpG" = ( /obj/structure/shuttle/engine/propulsion, @@ -40259,23 +30769,16 @@ /area/prison/pirate) "cpH" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cpI" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/mediumsec/east) "cpJ" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/mediumsec/east) "cpM" = ( /obj/structure/machinery/disposal/deliveryChute{ @@ -40323,18 +30826,14 @@ /area/prison/cellblock/mediumsec/east) "cpV" = ( /obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "cpW" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "cpX" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -40352,16 +30851,10 @@ /turf/open/floor/plating, /area/prison/cellblock/mediumsec/west) "cqb" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/cellblock/mediumsec/east) "cqc" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/east) "cqd" = ( /obj/structure/window/framed/prison/cell, @@ -40373,37 +30866,26 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/west) "cqg" = ( /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "cqh" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/cellblock/mediumsec/east) "cqk" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "cql" = ( /obj/structure/bed/chair, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "cqo" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -40411,9 +30893,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/east) "cqp" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -40423,10 +30903,7 @@ /area/prison/cellblock/mediumsec/east) "cqq" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/east) "cqr" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -40444,19 +30921,13 @@ /turf/open/floor/plating, /area/prison/disposal) "cqv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/south) "cqw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/west) "cqx" = ( /obj/structure/reagent_dispensers/fueltank, @@ -40493,18 +30964,14 @@ /area/prison/pirate) "cqI" = ( /obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/west) "cqJ" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/west) "cqK" = ( /turf/closed/wall/prison, @@ -40516,10 +30983,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/west) "cqM" = ( /turf/open/floor/plating, @@ -40529,34 +30993,23 @@ /turf/open/floor/plating, /area/prison/cellblock/mediumsec/west) "cqO" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "cqP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/cellblock/mediumsec/east) "cqS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/west) "cqT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/east) "cqV" = ( /obj/effect/landmark/crap_item, @@ -40567,19 +31020,13 @@ dir = 1 }, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/east) "cqX" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/east) "cqY" = ( /obj/structure/machinery/light{ @@ -40588,25 +31035,16 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/east) "cra" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/east) "crb" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/east) "crc" = ( /obj/effect/decal/cleanable/blood, @@ -40615,15 +31053,11 @@ "crd" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/donkpockets, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "cre" = ( /obj/item/ammo_magazine/rifle/mar40, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "crf" = ( /obj/structure/bed, @@ -40631,15 +31065,11 @@ dir = 1 }, /obj/item/weapon/gun/rifle/mar40, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "crg" = ( /obj/structure/closet, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "crh" = ( /obj/structure/machinery/light/small{ @@ -40726,67 +31156,45 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/west) "cru" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/west) "crv" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/west) "crw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/west) "crx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/west) "cry" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/west) "crz" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/east) "crB" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/east) "crD" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/east) "crG" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "crH" = ( /obj/structure/bed, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "crI" = ( /obj/structure/bed, @@ -40801,10 +31209,7 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/highsec/south/south) "crL" = ( /obj/structure/machinery/door/airlock/highsecurity{ @@ -40814,25 +31219,18 @@ /area/prison/cellblock/mediumsec/west) "crM" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "crN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "crO" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/west) "crP" = ( /obj/item/device/radio, @@ -40870,72 +31268,50 @@ /turf/open/floor/plating, /area/prison/pirate) "crW" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/mediumsec/west) "crX" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/mediumsec/west) "crY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/west) "crZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/east) "csa" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/east) "csc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/east) "csd" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "cse" = ( /obj/structure/bed, /obj/structure/closet/walllocker/emerglocker/west, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csf" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -40951,10 +31327,7 @@ /turf/open/floor/plating, /area/prison/pirate) "csk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/west) "csl" = ( /turf/closed/wall/almayer/outer, @@ -40962,26 +31335,20 @@ "csm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "cso" = ( /obj/structure/bed, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csp" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -41039,10 +31406,7 @@ "csy" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/west) "csz" = ( /obj/structure/machinery/door/airlock/prison{ @@ -41050,15 +31414,10 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/west) "csA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/west) "csB" = ( /obj/structure/window/framed/prison/cell, @@ -41088,10 +31447,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/east) "csH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/east) "csJ" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -41107,42 +31463,32 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csM" = ( /obj/structure/bed, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /obj/item/ammo_magazine/rifle/mar40, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csP" = ( /obj/structure/bed, /obj/effect/landmark/survivor_spawner, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csQ" = ( /obj/structure/surface/table/reinforced, @@ -41155,9 +31501,7 @@ /turf/open/space, /area/space) "csT" = ( -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "csU" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -41202,26 +31546,17 @@ /turf/open/floor/plating, /area/prison/pirate) "ctb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/west) "ctc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/west) "ctd" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/west) "cte" = ( /obj/structure/machinery/light{ @@ -41230,43 +31565,28 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "ctf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "ctg" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/south) "ctj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "ctl" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/east) "ctm" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -41280,17 +31600,11 @@ "cto" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/south) "ctp" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/south) "ctq" = ( /obj/item/weapon/gun/rifle/mar40, @@ -41301,27 +31615,19 @@ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/west) "cts" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/medsec/central) "ctu" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/east) "cty" = ( /obj/structure/machinery/medical_pod/sleeper, @@ -41354,37 +31660,25 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/west) "ctF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/west) "ctG" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/medsec/central) "ctH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/medsec/central) "ctI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -41393,19 +31687,13 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/medsec/central) "ctJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/east) "ctK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -41414,9 +31702,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "ctL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -41441,9 +31727,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "ctP" = ( /obj/structure/closet/walllocker/emerglocker/north, @@ -41457,9 +31741,7 @@ dir = 4; flipped = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "ctQ" = ( /obj/effect/landmark/corpsespawner/prison_security, @@ -41468,81 +31750,53 @@ /turf/open/floor/plating, /area/prison/cellblock/mediumsec/west) "ctR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/west) "ctS" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "ctT" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "ctU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) "ctV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/south) "ctW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/south) "ctX" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/south) "ctY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) "ctZ" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cub" = ( /turf/closed/wall/r_wall/prison, /area/prison/security/monitoring/medsec/central) "cuc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/medsec/central) "cud" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/medsec/central) "cue" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/east) "cug" = ( /obj/structure/toilet{ @@ -41551,9 +31805,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/pirate) "cuh" = ( /obj/structure/sink{ @@ -41562,17 +31814,13 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/pirate) "cui" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Toilet" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/prison/pirate) "cuj" = ( /obj/item/stack/sheet/metal{ @@ -41592,18 +31840,14 @@ dir = 2; name = "Rocinante Secondary Airlock" }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "cum" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /obj/structure/largecrate/random, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "cun" = ( /turf/closed/wall/prison, @@ -41613,19 +31857,13 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cup" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cuq" = ( /obj/structure/pipes/vents/pump{ @@ -41634,27 +31872,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cur" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/south) "cus" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) "cut" = ( /obj/structure/pipes/vents/pump{ @@ -41664,28 +31894,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cuu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cuv" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cuw" = ( /obj/structure/pipes/vents/pump{ @@ -41695,9 +31916,7 @@ dir = 4; flipped = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "cuy" = ( /obj/structure/machinery/door/airlock/prison{ @@ -41705,16 +31924,11 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/north) "cuz" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/west) "cuA" = ( /obj/structure/largecrate/random, @@ -41725,10 +31939,7 @@ /area/prison/cellblock/mediumsec/west) "cuE" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/medsec/central) "cuF" = ( /obj/structure/machinery/power/apc{ @@ -41736,10 +31947,7 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/medsec/central) "cuI" = ( /obj/structure/machinery/door/airlock/prison{ @@ -41747,9 +31955,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/south/south) "cuJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -41769,9 +31975,7 @@ /area/prison/cellblock/mediumsec/west) "cuL" = ( /obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cuM" = ( /obj/structure/machinery/light/small{ @@ -41780,24 +31984,16 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/south) "cuN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/south) "cuO" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/west) "cuP" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cuR" = ( /obj/structure/window/framed/prison/cell, @@ -41807,72 +32003,47 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/south) "cuT" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cuU" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cuV" = ( /obj/structure/toilet{ dir = 8; pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/south) "cuZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cvc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cvd" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/south) "cvf" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/medsec/central) "cvh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/medsec/central) "cvj" = ( /obj/structure/monorail{ @@ -41891,9 +32062,7 @@ /obj/structure/pipes/standard/tank/air{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cvm" = ( /obj/structure/pipes/standard/manifold/visible/cyan{ @@ -41928,9 +32097,7 @@ /area/prison/pirate) "cvq" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cvt" = ( /obj/structure/machinery/light/small{ @@ -41951,46 +32118,31 @@ /obj/structure/pipes/standard/tank/carbon_dioxide{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cvw" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/west) "cvx" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/medsec/central) "cvy" = ( /obj/structure/surface/rack, /obj/item/clothing/head/soft/ferret, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/medsec/central) "cvA" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cvB" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cvD" = ( /obj/structure/pipes/portables_connector{ @@ -42022,9 +32174,7 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "cvH" = ( /obj/structure/pipes/standard/manifold/visible/yellow{ @@ -42099,10 +32249,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cvS" = ( /obj/structure/pipes/standard/simple/visible/yellow{ @@ -42129,19 +32276,13 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cvW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cvX" = ( /obj/structure/pipes/binary/circulator{ @@ -42193,10 +32334,7 @@ /turf/open/floor/plating, /area/prison/pirate) "cwd" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/prison/cellblock/mediumsec/west) "cwg" = ( /obj/structure/pipes/standard/simple/visible/yellow{ @@ -42222,9 +32360,7 @@ pixel_x = -12 }, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cwl" = ( /obj/structure/pipes/standard/simple/insulated{ @@ -42256,36 +32392,23 @@ /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/cellblock/mediumsec/west) "cwr" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/west) "cws" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/south) "cwt" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/south) "cwu" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "cwv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/prison/cellblock/mediumsec/east) "cwx" = ( /obj/structure/pipes/standard/simple/insulated{ @@ -42311,10 +32434,7 @@ /area/prison/pirate) "cwA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cwB" = ( /obj/structure/pipes/binary/pump{ @@ -42347,28 +32467,19 @@ /turf/open/floor/plating, /area/prison/pirate) "cwG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/prison/cellblock/mediumsec/west) "cwJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cwK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) "cwL" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -42385,9 +32496,7 @@ dir = 4 }, /obj/structure/girder/reinforced, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cwQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -42397,15 +32506,10 @@ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cwT" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/prison/cellblock/mediumsec/east) "cwU" = ( /obj/structure/shuttle/diagonal{ @@ -42418,9 +32522,7 @@ /obj/structure/pipes/standard/tank/phoron{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cwX" = ( /obj/structure/pipes/standard/simple/insulated, @@ -42432,27 +32534,20 @@ unacidable = 1; unslashable = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "cxa" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/cellblock/mediumsec/south) "cxc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cxd" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cxg" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -42467,9 +32562,7 @@ /obj/structure/machinery/door/airlock/highsecurity{ name = "Solitary Confinement" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/south) "cxl" = ( /obj/structure/shuttle/engine/heater, @@ -42493,23 +32586,17 @@ "cxq" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cxr" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "cxu" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cxx" = ( /obj/structure/shuttle/engine/router{ @@ -42544,27 +32631,18 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/south) "cxE" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating, /area/prison/cellblock/mediumsec/south) "cxF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "cxG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/south) "cxI" = ( /obj/structure/pipes/vents/pump/on, @@ -42601,34 +32679,23 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cxP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cxT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "cxU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "cxV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -42641,17 +32708,12 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cxX" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cya" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -42664,9 +32726,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cyc" = ( /obj/structure/machinery/power/apc{ @@ -42674,79 +32734,55 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "cyd" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cyf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cyj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/south) "cyk" = ( /obj/item/frame/table, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "cyn" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/prison/cellblock/mediumsec/south) "cyo" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/south) "cyp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cyq" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cyr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/south) "cyw" = ( /obj/structure/machinery/disposal/deliveryChute{ @@ -42761,18 +32797,13 @@ dir = 4 }, /obj/item/frame/table, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cyz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) "cyB" = ( /obj/structure/machinery/light{ @@ -42781,10 +32812,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "cyD" = ( /turf/closed/wall/r_wall/prison, @@ -42795,10 +32823,7 @@ name = "Medium-Security Monitoring" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/medsec/south) "cyF" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -42806,16 +32831,11 @@ dir = 2; name = "Medium-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/medsec/south) "cyG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/south) "cyI" = ( /obj/structure/machinery/light{ @@ -42824,19 +32844,13 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cyJ" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/prison/cellblock/mediumsec/south) "cyK" = ( /obj/structure/monorail{ @@ -42849,23 +32863,14 @@ "cyL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "cyM" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/mediumsec/south) "cyN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/mediumsec/south) "cyO" = ( /turf/open/floor/plating, @@ -42874,17 +32879,11 @@ /obj/structure/sink{ pixel_y = 23 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/mediumsec/south) "cyQ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/monitoring/medsec/south) "cyS" = ( /obj/structure/monorail{ @@ -42911,70 +32910,44 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/medsec/south) "cyV" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/medsec/south) "cyW" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/medsec/south) "cyX" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/medsec/south) "cyY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/monitoring/medsec/south) "cyZ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "cza" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/medsec/south) "czb" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/mediumsec/south) "czc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/prison/cellblock/mediumsec/south) "czd" = ( /obj/structure/disposaloutlet, @@ -42988,18 +32961,13 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/prison/cellblock/mediumsec/south) "czf" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/south) "czg" = ( /obj/structure/machinery/light/small{ @@ -43018,28 +32986,17 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "czj" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/monitoring/medsec/south) "czk" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/cellblock/mediumsec/south) "czl" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/south) "czo" = ( /turf/open/floor/prison, @@ -43060,18 +33017,13 @@ /area/prison/security/monitoring/medsec/south) "czs" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/security/monitoring/medsec/south) "czt" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "czu" = ( /obj/structure/machinery/light/small{ @@ -43081,16 +33033,11 @@ /area/prison/cellblock/mediumsec/south) "czv" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "czw" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/south) "czx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43122,28 +33069,18 @@ /area/prison/security/monitoring/medsec/south) "czD" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/medsec/south) "czG" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2, /area/prison/security/monitoring/medsec/south) "czH" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/medsec/south) "czI" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/medsec/south) "czJ" = ( /obj/structure/bed/chair/comfy{ @@ -43154,25 +33091,16 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/medsec/south) "czK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/prison/darkredcorners2/west, /area/prison/security/monitoring/medsec/south) "czL" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/medsec/south) "czM" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -43182,19 +33110,13 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/medsec/south) "czO" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/monitoring/medsec/south) "czZ" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -43202,9 +33124,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/south) "cAc" = ( /obj/structure/window/framed/prison/reinforced, @@ -43244,9 +33164,7 @@ icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/south) "cBB" = ( /obj/structure/surface/table/reinforced, @@ -43254,24 +33172,18 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) "cBD" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "cBY" = ( /obj/structure/barricade/handrail/type_b{ dir = 4 }, /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "cDl" = ( /obj/effect/decal/warning_stripes{ @@ -43280,17 +33192,11 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/hanger/research) "cMW" = ( /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/prison/cellblock/protective) "cNc" = ( /obj/structure/machinery/light/small, @@ -43298,18 +33204,12 @@ /area/prison/cellblock/mediumsec/east) "cOP" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "cPc" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "cPH" = ( /obj/structure/machinery/light{ @@ -43323,19 +33223,13 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/canteen) "cSA" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "cWg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -43344,10 +33238,7 @@ /turf/open/floor/prison, /area/prison/canteen) "cWx" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "cWW" = ( /obj/structure/largecrate/random/case/small, @@ -43355,26 +33246,17 @@ /area/prison/security/checkpoint/maxsec) "cXK" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/monorail/west) "cYf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "cYv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/RD) "cYR" = ( /obj/structure/machinery/power/apc{ @@ -43382,10 +33264,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/prison/security/monitoring/lowsec/ne) "cZY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43398,10 +33277,7 @@ /turf/closed/wall/prison, /area/prison/cellblock/lowsec/ne) "dcN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/storage/medsec) "deI" = ( /turf/closed/shuttle/elevator{ @@ -43410,10 +33286,7 @@ /area/prison/hallway/central/west) "deQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/central/east) "dgl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43453,10 +33326,7 @@ icon_state = "poster1"; pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "dnc" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -43467,27 +33337,20 @@ dir = 2; name = "Protective Custody Cells" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/north) "dni" = ( /obj/structure/bed, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) "dnt" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/cellblock/mediumsec/north) "dou" = ( /turf/open/floor/plating, @@ -43498,10 +33361,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/storage/vip) "dqf" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -43519,9 +33379,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "dyt" = ( /obj/structure/largecrate/random/barrel/green, @@ -43538,19 +33396,13 @@ /area/prison/residential/north) "dzH" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "dAz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/highsec) "dBI" = ( /obj/structure/largecrate/random, @@ -43560,10 +33412,7 @@ "dCC" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/baguette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "dDv" = ( /obj/structure/machinery/light{ @@ -43575,34 +33424,22 @@ /obj/structure/bed/chair/office{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "dEm" = ( /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "dHr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/north, /area/prison/hanger/research) "dIT" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/prison/telecomms) "dJf" = ( /obj/structure/sink{ @@ -43610,9 +33447,7 @@ pixel_x = -12 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "dMw" = ( /obj/structure/surface/rack, @@ -43632,10 +33467,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/prison/hanger/research) "dRQ" = ( /obj/structure/machinery/alarm/almayer{ @@ -43652,9 +33484,7 @@ /area/prison/maintenance/residential/nw) "dTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "dUw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43685,10 +33515,7 @@ /obj/structure/bed/chair/office{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/nw) "eeO" = ( /obj/effect/decal/warning_stripes{ @@ -43700,10 +33527,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "efk" = ( /obj/structure/surface/table/reinforced, @@ -43730,9 +33554,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/security/checkpoint/vip) "eoP" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -43786,10 +33608,7 @@ dir = 2; name = "Low-Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "ezq" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -43800,9 +33619,7 @@ dir = 2; name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/highsec/south/south) "eEq" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -43821,20 +33638,14 @@ /area/prison/residential/north) "eHA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "eKr" = ( /turf/open/floor/plating, /area/prison/storage/medsec) "eKD" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/cellblock/mediumsec/east) "eKH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43853,10 +33664,7 @@ /turf/open/shuttle/elevator/grating, /area/prison/hallway/central/west) "eMW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/telecomms) "eNJ" = ( /obj/structure/window/framed/prison/reinforced, @@ -43867,10 +33675,7 @@ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "ePO" = ( /obj/structure/reagent_dispensers/watertank, @@ -43880,20 +33685,14 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "eRY" = ( /turf/closed/wall/r_wall/prison, /area/prison/cellblock/mediumsec/north) "eTo" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) "eTt" = ( /obj/structure/machinery/light, @@ -43907,27 +33706,19 @@ /area/prison/parole/protective_custody) "eWi" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "eWk" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/north/south) "eXA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "eYV" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -43940,9 +33731,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/mediumsec/north) "faW" = ( /obj/structure/girder/displaced, @@ -43964,9 +33753,7 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "Research Dorms" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/quarters/research) "fhc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43979,9 +33766,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/prison/cellblock/protective) "fkx" = ( /obj/structure/machinery/light, @@ -43995,18 +33780,13 @@ /area/prison/maintenance/staff_research) "foY" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "fqG" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/telecomms) "ftk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -44035,10 +33815,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "fxZ" = ( /obj/structure/machinery/door/airlock/prison{ @@ -44047,18 +33824,13 @@ opacity = 0 }, /obj/structure/curtain/open, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/north/south) "fyi" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "fCr" = ( /obj/structure/machinery/light/small{ @@ -44068,10 +33840,7 @@ /area/prison/maintenance/residential/sw) "fEZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/cellblock/mediumsec/east) "fFq" = ( /obj/structure/window/framed/prison/cell, @@ -44081,10 +33850,7 @@ "fGf" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research/secret/testing) "fHI" = ( /obj/structure/machinery/light{ @@ -44094,15 +33860,10 @@ /area/prison/cellblock/mediumsec/east) "fLH" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "fLR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) "fLT" = ( /obj/structure/window/framed/prison/reinforced, @@ -44116,16 +33877,11 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "fMU" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/telecomms) "fNt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -44134,39 +33890,26 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "fOl" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "fPR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "fQu" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "fRC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/north) "fUs" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -44186,10 +33929,7 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/nw) "gbI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/security/checkpoint/highsec_medsec) "gbV" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -44199,9 +33939,7 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/east) "gcr" = ( /obj/structure/disposalpipe/segment{ @@ -44226,10 +33964,7 @@ /area/prison/cellblock/mediumsec/south) "gfl" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/central/east) "ghp" = ( /obj/structure/disposalpipe/segment{ @@ -44251,10 +33986,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/prison/research/secret/bioengineering) "gne" = ( /obj/effect/decal/warning_stripes{ @@ -44263,26 +33995,18 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "gpm" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "gpx" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/telecomms) "grW" = ( /turf/closed/shuttle/elevator/button/freight, @@ -44294,10 +34018,7 @@ /turf/open/floor/prison, /area/prison/visitation) "gtK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/prison/telecomms) "gvb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44309,18 +34030,13 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Medium-Security Storage" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/storage/medsec) "gvj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "gwI" = ( /obj/effect/decal/warning_stripes{ @@ -44329,18 +34045,12 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/hanger/research) "gxV" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "gAa" = ( /obj/structure/machinery/light/small{ @@ -44360,10 +34070,7 @@ /area/prison/hallway/central/south) "gBz" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "gBM" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -44374,10 +34081,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "gFN" = ( /obj/structure/surface/table/almayer, @@ -44396,20 +34100,14 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "gIv" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/canteen) "gIz" = ( /obj/structure/machinery/vending/cola, @@ -44419,9 +34117,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "gJz" = ( /obj/structure/bed/chair/comfy{ @@ -44454,10 +34150,7 @@ }, /obj/effect/decal/siding/wood_siding, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "gML" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -44469,18 +34162,13 @@ pixel_x = 4; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/north/south) "gOD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "gOT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44489,35 +34177,24 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/cellblock/protective) "gPF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/prison/cellblock/mediumsec/west) "gPR" = ( /turf/closed/wall/prison, /area/prison/maintenance/staff_research) "gPU" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/west) "gQP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "gRU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44560,10 +34237,7 @@ use_power = 0 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/cellblock/mediumsec/east) "hdp" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -44595,10 +34269,7 @@ "hjN" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "hlO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44607,19 +34278,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) "hmc" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "hmQ" = ( /obj/structure/surface/table/reinforced, @@ -44627,10 +34292,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "hmU" = ( /obj/structure/machinery/light/small, @@ -44640,10 +34302,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/east) "hnD" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -44665,10 +34324,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/n) "hqX" = ( /obj/structure/machinery/light{ @@ -44691,17 +34347,11 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/east) "hyX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/storage/medsec) "hzb" = ( /obj/item/stack/cable_coil/cut{ @@ -44718,29 +34368,20 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "hBf" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "hCM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "hEK" = ( /obj/structure/machinery/light/small, @@ -44749,48 +34390,31 @@ "hEL" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "hFD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/north, /area/prison/maintenance/residential/sw) "hGm" = ( /obj/structure/sign/poster{ icon_state = "poster8"; pixel_y = -32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "hHy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "hHP" = ( /obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/staff) "hKn" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/prison/cellblock/lowsec/nw) "hKp" = ( /obj/effect/alien/weeds/node, @@ -44806,16 +34430,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/cellblock/highsec/south/north) "hMP" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/highsec/south/north) "hND" = ( /obj/structure/disposalpipe/segment{ @@ -44829,56 +34448,37 @@ /area/prison/hallway/central/north) "hNI" = ( /obj/structure/bed/chair/office, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "hNY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "hOy" = ( /obj/structure/surface/table/reinforced{ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "hQm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "hQS" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/chapel) "hQW" = ( /obj/item/tool/mop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "hRg" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck/uno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "hRZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -44886,9 +34486,7 @@ /area/prison/recreation/staff) "hSK" = ( /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "hTe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44902,9 +34500,7 @@ dir = 8 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "hUO" = ( /obj/structure/machinery/power/smes/buildable{ @@ -44914,27 +34510,18 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) "hWd" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/hallway/central/south) "hXj" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/north) "hXJ" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "hXW" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -44945,10 +34532,7 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "hYq" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, @@ -44959,10 +34543,7 @@ flipped = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "ibG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -44973,9 +34554,7 @@ /obj/item/ammo_magazine/pistol/b92fs, /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/prison/whitepurplefull, /area/prison/research/secret) "ibJ" = ( /obj/structure/largecrate/random, @@ -44986,16 +34565,11 @@ icon_state = "wood_siding12" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/north) "ifS" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "igb" = ( /obj/structure/largecrate/random/barrel/blue, @@ -45003,17 +34577,12 @@ /area/prison/cellblock/mediumsec/west) "igB" = ( /obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "igJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "iif" = ( /obj/effect/landmark/hunter_primary, @@ -45021,16 +34590,10 @@ /area/prison/hallway/central/south) "iiI" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/east) "iob" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "ioD" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -45040,10 +34603,7 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) "iph" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -45053,19 +34613,13 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/east) "iqo" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "irh" = ( /obj/effect/decal/siding/wood_siding{ @@ -45088,18 +34642,13 @@ /area/prison/cellblock/highsec/south/south) "isr" = ( /obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/telecomms) "iuH" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/west) "ixb" = ( /obj/structure/pipes/vents/pump{ @@ -45114,18 +34663,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "ixF" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "izT" = ( /obj/structure/window/framed/prison/reinforced, @@ -45136,10 +34680,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "iBN" = ( /obj/structure/machinery/light/small{ @@ -45152,10 +34693,7 @@ req_one_access_txt = "19;200" }, /obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/telecomms) "iDV" = ( /obj/item/trash/chips, @@ -45163,9 +34701,7 @@ /area/prison/maintenance/residential/access/south) "iEp" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/telecomms) "iGo" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -45184,40 +34720,28 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/nw) "iHC" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/telecomms) "iIg" = ( /obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "iIA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "iLz" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/central) "iND" = ( /obj/structure/bed/chair/office, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/security/checkpoint/highsec/n) "iOc" = ( /obj/structure/machinery/light{ @@ -45239,10 +34763,7 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/sw) "iSi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "iVr" = ( /obj/structure/bed/chair/comfy, @@ -45253,32 +34774,22 @@ /turf/open/floor/prison, /area/prison/recreation/medsec) "iWG" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/cellblock/mediumsec/west) "iWJ" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "iWK" = ( /obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/prison/telecomms) "iYD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "jan" = ( /obj/structure/pipes/vents/pump{ @@ -45291,18 +34802,13 @@ /area/prison/residential/south) "jaQ" = ( /obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "jbq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research) "jdx" = ( /obj/structure/sign/safety/medical, @@ -45314,19 +34820,13 @@ flipped = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "jfe" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "jfp" = ( /turf/closed/wall/prison, @@ -45347,10 +34847,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/cellblock/lowsec/nw) "jmk" = ( /obj/structure/largecrate/random/barrel/red, @@ -45361,19 +34858,13 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "jmY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "jno" = ( /obj/structure/disposalpipe/segment{ @@ -45392,10 +34883,7 @@ pixel_y = 3 }, /obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "joJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -45404,19 +34892,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "jpt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/south) "jpy" = ( /obj/structure/disposalpipe/segment{ @@ -45449,32 +34931,21 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/nw) "jsm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/hanger/research) "jtk" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "juy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/mediumsec/north) "juA" = ( /obj/item/trash/burger, /turf/open/floor/plating, /area/prison/maintenance/residential/access/south) "jvk" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/hallway/central/east) "jxi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -45493,18 +34964,12 @@ /turf/open/floor/prison, /area/prison/security/monitoring/highsec) "jDr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/hanger/research) "jFe" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "jFi" = ( /obj/effect/decal/warning_stripes{ @@ -45514,20 +34979,14 @@ icon_state = "SE-out" }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "jFs" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/highsec/south/north) "jFQ" = ( /obj/structure/disposalpipe/segment{ @@ -45542,51 +35001,34 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "jJE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, +/turf/open/floor/chapel/northeast, /area/prison/chapel) "jKf" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/prison/maintenance/staff_research) "jMq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/prison/telecomms) "jNo" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "jNC" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/storage/medsec) "jOj" = ( /obj/structure/surface/table/reinforced, /obj/item/tank/nitrogen, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "jRi" = ( /obj/structure/machinery/light{ @@ -45606,9 +35048,7 @@ /area/prison/cellblock/mediumsec/east) "jSv" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/prison/cellblock/lowsec/nw) "jTC" = ( /obj/structure/sink{ @@ -45616,16 +35056,10 @@ pixel_x = -12 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "jTN" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/cellblock/highsec/south/north) "jUC" = ( /turf/closed/wall/r_wall/prison, @@ -45641,10 +35075,7 @@ /area/prison/residential/north) "jWj" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "kag" = ( /obj/structure/largecrate/random/barrel/white, @@ -45656,10 +35087,7 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "kdj" = ( /obj/structure/machinery/light{ @@ -45670,10 +35098,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "kdm" = ( /obj/structure/bed/chair{ @@ -45682,55 +35107,35 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "kdI" = ( /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/prison/cellblock/highsec/south/north) "kep" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "keX" = ( /obj/effect/landmark/corpsespawner/prison_security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/central/south) "kfj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/storage/medsec) "kgy" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/highsec/south/north) "kik" = ( /obj/structure/surface/table/gamblingtable, /obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "kjh" = ( /obj/structure/machinery/light/small{ @@ -45739,58 +35144,39 @@ /turf/open/floor/plating, /area/prison/cellblock/mediumsec/west) "kkA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/prison/hanger/research) "kmh" = ( /obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "knf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/west) "kog" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "koj" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "kpc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "kqo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "krJ" = ( /obj/item/reagent_container/glass/bucket, @@ -45811,16 +35197,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "kue" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) "kyS" = ( /obj/structure/pipes/vents/pump/on, @@ -45829,10 +35211,7 @@ "kzE" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "kzI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -45842,10 +35221,7 @@ /area/prison/security/checkpoint/vip) "kzZ" = ( /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "kCz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -45858,10 +35234,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "kDz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -45872,10 +35245,7 @@ "kEk" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/highsec/south/north) "kGq" = ( /turf/open/floor/prison, @@ -45888,26 +35258,18 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "kJw" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/cellblock/protective) "kLB" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Chapel" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/chapel) "kRq" = ( /obj/structure/machinery/light/small{ @@ -45937,19 +35299,13 @@ /area/prison/security/monitoring/highsec) "ldp" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/cellblock/highsec/south/south) "ldw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/west) "ldD" = ( /obj/effect/decal/siding/wood_siding{ @@ -45958,9 +35314,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/south) "ldR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -45969,10 +35323,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/cellblock/lowsec/se) "leU" = ( /obj/structure/surface/table, @@ -45988,10 +35339,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/recreation/highsec/s) "liM" = ( /obj/structure/machinery/light/small, @@ -46003,38 +35351,23 @@ "ljn" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) "lks" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "llz" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/north, /area/prison/security/checkpoint/highsec_medsec) "llD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/west, /area/prison/cellblock/mediumsec/east) "lmt" = ( /obj/structure/surface/table/reinforced, /obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "lmA" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -46056,16 +35389,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/east) "ltv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/storage/medsec) "lxE" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -46073,17 +35400,11 @@ /area/prison/maintenance/residential/sw) "lyj" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "lyJ" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "lzy" = ( /obj/structure/window/framed/prison/reinforced, @@ -46099,10 +35420,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, +/turf/open/floor/chapel/northeast, /area/prison/chapel) "lBC" = ( /obj/structure/disposalpipe/segment{ @@ -46112,10 +35430,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/prison/cellblock/protective) "lCQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -46129,19 +35444,14 @@ name = "Classified Research Shutters" }, /obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/research/secret) "lGA" = ( /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "lHc" = ( /obj/effect/landmark/monkey_spawn, @@ -46151,10 +35461,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "lIs" = ( /turf/closed/wall/prison, @@ -46171,19 +35478,13 @@ /area/prison/telecomms) "lME" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec_medsec) "lMU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/security/checkpoint/highsec_medsec) "lQK" = ( /obj/item/trash/c_tube, @@ -46201,10 +35502,7 @@ pixel_y = -32 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "lVe" = ( /obj/structure/window/reinforced{ @@ -46214,16 +35512,11 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "lVw" = ( /obj/item/trash/cheesie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "lWT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46239,10 +35532,7 @@ /turf/open/floor/plating, /area/prison/hanger/main) "mbv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/cellblock/mediumsec/east) "mbG" = ( /obj/structure/largecrate/random, @@ -46255,9 +35545,7 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/security/checkpoint/highsec_medsec) "mca" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46266,9 +35554,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "mdH" = ( /obj/structure/janitorialcart, @@ -46302,9 +35588,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/north) "mpg" = ( /obj/structure/closet/gmcloset, @@ -46314,10 +35598,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "mpA" = ( /obj/structure/bed/chair, @@ -46334,16 +35615,10 @@ /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/store) "mxM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/east) "myY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46362,10 +35637,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "mAT" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -46378,9 +35650,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "mCC" = ( /obj/structure/surface/table/reinforced{ @@ -46388,17 +35658,12 @@ flipped = 1 }, /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "mDi" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) "mFF" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -46417,18 +35682,13 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/highsec/north/south) "mJH" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "mLi" = ( /obj/structure/machinery/door/airlock/prison{ @@ -46439,15 +35699,10 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/north) "mLG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/prison/hallway/central/south) "mMO" = ( /obj/structure/machinery/light{ @@ -46467,10 +35722,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/prison/cellblock/protective) "mOL" = ( /obj/structure/bed/chair/comfy{ @@ -46510,25 +35762,17 @@ /area/prison/residential/south) "mSQ" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "mVf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/prison/hanger/research) "mVq" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "mWT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -46538,17 +35782,11 @@ /area/prison/hallway/central/west) "mWZ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "mYM" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "mZt" = ( /obj/structure/largecrate/random, @@ -46566,19 +35804,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/east) "ndk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/south) "ndE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46592,52 +35824,35 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "ndW" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding12" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/south) "niK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/south) "niY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "nkB" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "nmr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/telecomms) "non" = ( /obj/structure/machinery/washing_machine{ @@ -46647,16 +35862,11 @@ desc = "The double washing machine in common spacer folklore signifies doom to all who gaze upon it."; pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "npb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "nsx" = ( /turf/closed/wall/prison, @@ -46707,18 +35917,13 @@ icon_state = "poster14"; pixel_x = -32 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "nGQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/highsec/south/north) "nGR" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -46738,10 +35943,7 @@ dir = 4 }, /obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "nJm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46760,18 +35962,14 @@ /area/prison/maintenance/residential/sw) "nKm" = ( /obj/structure/closet/jcloset, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "nLr" = ( /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding12" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/south) "nLC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -46792,9 +35990,7 @@ "nNc" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "nPN" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -46808,10 +36004,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/s) "nSK" = ( /obj/structure/window/reinforced{ @@ -46819,39 +36012,26 @@ health = 80 }, /obj/structure/machinery/gibber, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/research) "nTn" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "nUH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "nVg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/central/east) "nWl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Low-Security" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) "nWJ" = ( /turf/open/floor/prison, @@ -46864,49 +36044,33 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "South High-Security Recreation" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/recreation/highsec/s) "nXN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/telecomms) "nYP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/research/secret/containment) "nZP" = ( /obj/structure/bed/chair/office{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "obV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "ocS" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "odp" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -46933,10 +36097,7 @@ "old" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/south) "omn" = ( /obj/structure/surface/table/reinforced, @@ -46945,33 +36106,22 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "omu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/north) "ona" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "onp" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "onA" = ( /obj/structure/machinery/light{ @@ -46992,33 +36142,21 @@ /area/prison/residential/south) "oqC" = ( /obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/prison/monorail/west) "oqL" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "osO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/prison/cellblock/mediumsec/north) "oud" = ( /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) "ovc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47033,34 +36171,22 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "oxT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/storage/medsec) "oyQ" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "oyZ" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/holding/holding1) "oAs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -47075,10 +36201,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "oDn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -47099,19 +36222,14 @@ "oHo" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/appletart, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "oHs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/highsec/south/north) "oIj" = ( /obj/effect/decal/warning_stripes{ @@ -47120,33 +36238,22 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "oIw" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "oJi" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "oLL" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "oNe" = ( /obj/effect/decal/warning_stripes{ @@ -47155,20 +36262,14 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "oNp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/telecomms) "oNG" = ( /obj/effect/decal/warning_stripes{ @@ -47177,9 +36278,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "oOJ" = ( /obj/structure/pipes/vents/scrubber{ @@ -47191,25 +36290,17 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "oTg" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "oTO" = ( /obj/item/storage/bible/booze, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/central) "oUR" = ( /obj/structure/machinery/light, @@ -47233,17 +36324,11 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "oZV" = ( /obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "paf" = ( /obj/structure/disposalpipe/segment{ @@ -47263,10 +36348,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/prison/red/southeast, /area/prison/cellblock/highsec/south/south) "pcP" = ( /obj/structure/window/framed/prison, @@ -47291,10 +36373,7 @@ "pft" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/telecomms) "pgg" = ( /obj/structure/machinery/autolathe/full, @@ -47318,10 +36397,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "pnT" = ( /obj/structure/surface/rack, @@ -47340,18 +36416,12 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "pob" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/highsec/north/south) "ppb" = ( /obj/structure/bed/chair/comfy{ @@ -47360,10 +36430,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "pph" = ( /obj/structure/machinery/light/small, @@ -47380,10 +36447,7 @@ /area/prison/cellblock/highsec/north/north) "pqi" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "prq" = ( /obj/structure/bed/chair/comfy{ @@ -47398,17 +36462,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) "prF" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "ptn" = ( /obj/item/device/radio/headset, @@ -47427,38 +36485,23 @@ /area/prison/cellblock/mediumsec/west) "pvG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/yard) "pvI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/cellblock/highsec/south/north) "pvJ" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "pwl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/central/south) "pxa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) "pzJ" = ( /turf/open/floor/plating, @@ -47477,34 +36520,23 @@ /obj/structure/bed/chair/office{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "pFp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "pGf" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/security/checkpoint/maxsec) "pGv" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/prison/telecomms) "pHT" = ( /obj/structure/pipes/vents/pump{ @@ -47522,10 +36554,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "pPB" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -47536,9 +36565,7 @@ dir = 4 }, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) "pSO" = ( /obj/item/shard, @@ -47546,16 +36573,11 @@ /turf/open/floor/plating, /area/prison/cellblock/mediumsec/east) "pVz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/prison/telecomms) "pXk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/hanger/research) "pXC" = ( /obj/effect/decal/cleanable/blood, @@ -47568,17 +36590,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/east) "qai" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom, /area/prison/maintenance/residential/nw) "qbj" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -47586,15 +36603,10 @@ /area/prison/hallway/central/south) "qbV" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10 - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/south) "qco" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/telecomms) "qdT" = ( /obj/structure/surface/table/reinforced, @@ -47603,10 +36615,7 @@ pixel_y = 7 }, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) "qgb" = ( /obj/structure/stairs/perspective{ @@ -47614,10 +36623,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "qjI" = ( /obj/structure/window/framed/prison/reinforced, @@ -47633,20 +36639,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) "qla" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/south) "qlh" = ( /obj/effect/decal/warning_stripes{ @@ -47655,19 +36655,13 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "qqm" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "qqn" = ( /obj/structure/disposalpipe/segment{ @@ -47688,38 +36682,26 @@ /area/prison/residential/south) "qwg" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/prison/hanger/research) "qxY" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/s) "qzW" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "qEB" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "Infirmary" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "qEE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -47734,10 +36716,7 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/prison/cellblock/mediumsec/south) "qIb" = ( /obj/structure/window/framed/prison, @@ -47745,17 +36724,11 @@ /area/prison/cellblock/highsec/north/south) "qIg" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/cellblock/mediumsec/east) "qKo" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "qLI" = ( /turf/open/floor/grass, @@ -47765,16 +36738,10 @@ dir = 8 }, /obj/structure/machinery/door/window/brigdoor/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "qNw" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/cellblock/highsec/south/north) "qNS" = ( /obj/structure/pipes/vents/scrubber{ @@ -47792,9 +36759,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "qXa" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -47803,17 +36768,12 @@ "qYn" = ( /obj/structure/surface/table/reinforced, /obj/item/tank/air, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "rba" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "rdD" = ( /obj/structure/bed/chair/comfy{ @@ -47842,22 +36802,15 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Medium-Security Storage" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/prison/storage/medsec) "rjx" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/protective) "rmb" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/prison/medbay) "rpB" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -47871,10 +36824,7 @@ network = list("PRISON") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/monitoring/medsec/central) "rqT" = ( /obj/structure/bed/chair/office/dark{ @@ -47885,17 +36835,12 @@ "rrG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/east, /area/prison/cellblock/mediumsec/east) "rsG" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "rtS" = ( /obj/structure/closet, @@ -47904,10 +36849,7 @@ /area/prison/quarters/research) "ruu" = ( /obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "ruY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -47928,50 +36870,34 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "rxG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) "rDG" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/prison/hallway/east) "rDL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "rFO" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "rKA" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/telecomms) "rLO" = ( /obj/structure/reagent_dispensers/watertank, @@ -47983,10 +36909,7 @@ flipped = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "rOL" = ( /obj/structure/barricade/handrail/type_b{ @@ -47994,9 +36917,7 @@ }, /obj/structure/surface/rack, /obj/item/tank/air, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "rQD" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -48011,10 +36932,7 @@ /area/prison/telecomms) "rSg" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/west) "rSp" = ( /obj/structure/window_frame/colony/reinforced, @@ -48025,9 +36943,7 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/nw) "rXA" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/quarters/research) "rYg" = ( /obj/effect/decal/warning_stripes{ @@ -48036,18 +36952,13 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/prison/hanger/research) "rZk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) "saD" = ( /obj/structure/machinery/power/apc{ @@ -48055,9 +36966,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/prison/telecomms) "sdq" = ( /obj/structure/machinery/light{ @@ -48066,9 +36975,7 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "seq" = ( /obj/structure/machinery/light{ @@ -48080,10 +36987,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "smr" = ( /obj/structure/surface/rack, @@ -48097,10 +37001,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/north) "sqS" = ( /obj/structure/machinery/light{ @@ -48111,10 +37012,7 @@ "srr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "ssB" = ( /obj/structure/window_frame/colony/reinforced, @@ -48122,106 +37020,71 @@ /area/prison/cellblock/mediumsec/north) "ssJ" = ( /obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/research) "ssZ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) "swk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southeast, /area/prison/cellblock/highsec/north/south) "sxx" = ( /obj/structure/machinery/light, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "sye" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/east) "sBF" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/storage/vip) "sBQ" = ( /turf/open/floor/prison, /area/prison/security/checkpoint/highsec_medsec) "sEd" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "sGc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "sGB" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/north/north) "sHe" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) "sHs" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "sIA" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "sLI" = ( /obj/structure/lattice, @@ -48239,10 +37102,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "sOl" = ( /obj/structure/largecrate/random/barrel/green, @@ -48264,10 +37124,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northeast, /area/prison/security/checkpoint/maxsec) "sTy" = ( /turf/closed/wall/resin, @@ -48300,10 +37157,7 @@ "tcn" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "tcY" = ( /obj/structure/pipes/vents/scrubber, @@ -48320,10 +37174,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "teg" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -48331,10 +37182,7 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/protective) "tfd" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -48349,19 +37197,13 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "thZ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "Medium-Security Storage" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/storage/medsec) "tie" = ( /obj/structure/bed/chair/wood/normal{ @@ -48370,20 +37212,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/prison/chapel) "tjl" = ( /obj/item/tool/screwdriver, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "tjU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -48394,17 +37230,11 @@ "tjV" = ( /obj/structure/surface/table/gamblingtable, /obj/item/spacecash/c500, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "tmn" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/highsec/north/south) "toL" = ( /obj/structure/reagent_dispensers/fueltank/gas/methane, @@ -48420,10 +37250,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hallway/central/west) "tuQ" = ( /obj/structure/pipes/vents/pump{ @@ -48437,10 +37264,7 @@ "tvF" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/candiedapple, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "tvM" = ( /obj/structure/closet/crate/freezer, @@ -48453,9 +37277,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/prison/kitchen) "twg" = ( /obj/structure/stairs/perspective{ @@ -48463,10 +37285,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/n) "tzm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -48475,9 +37294,7 @@ /obj/effect/decal/siding/wood_siding{ icon_state = "wood_siding12" }, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/north) "tzJ" = ( /obj/effect/decal/warning_stripes{ @@ -48486,17 +37303,12 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/prison/hanger/research) "tAi" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "tAI" = ( /obj/effect/landmark/railgun_camera_pos, @@ -48510,19 +37322,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/security/checkpoint/maxsec) "tFq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/alien/weeds/node, /obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) "tFH" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -48533,15 +37339,10 @@ "tGy" = ( /obj/structure/machinery/light, /obj/item/paper/janitor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "tGY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/quarters/research) "tHo" = ( /obj/effect/decal/warning_stripes{ @@ -48550,9 +37351,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "tIh" = ( /obj/structure/bed/chair/comfy{ @@ -48574,9 +37373,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "tNi" = ( /obj/structure/machinery/light{ @@ -48585,10 +37382,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/south) "tOK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -48603,9 +37397,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/checkpoint/highsec_medsec) "tTf" = ( /obj/structure/janitorialcart, @@ -48613,17 +37405,11 @@ pixel_x = -4; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "tWR" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) "tXB" = ( /obj/structure/machinery/power/apc{ @@ -48634,15 +37420,10 @@ /area/prison/cellblock/mediumsec/east) "uaB" = ( /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "uaW" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/prison/hanger/research) "ucU" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -48650,38 +37431,26 @@ "udc" = ( /obj/structure/surface/table/reinforced, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "udR" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) "ufM" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/recreation/highsec/s) "ugC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/north) "uhE" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/cellblock/mediumsec/east) "umM" = ( /obj/structure/machinery/light/small, @@ -48689,9 +37458,7 @@ /area/prison/maintenance/residential/nw) "unw" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/medbay/foyer) "unO" = ( /obj/structure/pipes/vents/pump{ @@ -48711,10 +37478,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/checkpoint/highsec_medsec) "uqH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -48727,16 +37491,10 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "utI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/prison/telecomms) "uuw" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -48748,10 +37506,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "uvb" = ( /obj/effect/decal/cleanable/dirt, @@ -48762,18 +37517,13 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/sw) "uvK" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/cellblock/highsec/north/south) "uwB" = ( /obj/structure/surface/rack, /obj/item/storage/bag/trash, /obj/item/storage/bag/trash, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) "uyi" = ( /obj/structure/surface/table/reinforced, @@ -48781,16 +37531,10 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "uBB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/hangar_storage/main) "uEn" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -48798,9 +37542,7 @@ icon_state = "door_open"; name = "Staff Restrooms" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/toilet/staff) "uEJ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -48819,9 +37561,7 @@ }, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "asteroid" - }, +/turf/open/floor/asteroid, /area/prison/residential/central) "uIp" = ( /obj/structure/largecrate/random/secure, @@ -48830,10 +37570,7 @@ "uJC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/monorail/west) "uKd" = ( /obj/structure/machinery/power/apc{ @@ -48841,27 +37578,18 @@ pixel_x = 28; start_charge = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "uKU" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "uNi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/prison/quarters/staff) "uOB" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -48869,19 +37597,14 @@ "uOF" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/cellblock/protective) "uOY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "uQt" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -48889,10 +37612,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/prison/security/checkpoint/vip) "uSv" = ( /obj/structure/bed/chair/comfy{ @@ -48905,19 +37625,14 @@ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "uSE" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked, /area/prison/medbay/foyer) "uTm" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -48932,9 +37647,7 @@ dir = 1; flipped = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/prison/pirate) "uUO" = ( /obj/structure/disposalpipe/segment{ @@ -48948,19 +37661,14 @@ /area/prison/hallway/central/south) "uVR" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "uWf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/north) "uXn" = ( /obj/structure/machinery/light/small{ @@ -48972,9 +37680,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/north) "uZm" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/north) "vaW" = ( /obj/item/stack/tile/plasteel{ @@ -49005,10 +37711,7 @@ "veb" = ( /obj/structure/surface/table/reinforced, /obj/item/card/id/visa, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull/west, /area/prison/cellblock/protective) "vfe" = ( /obj/structure/bed/chair{ @@ -49027,10 +37730,7 @@ req_one_access_txt = "19;200" }, /obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/telecomms) "vix" = ( /turf/closed/wall/prison, @@ -49039,10 +37739,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/cellblock/mediumsec/north) "vmX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -49062,10 +37759,7 @@ /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/highsec/north/south) "vpA" = ( /obj/structure/surface/table/almayer, @@ -49073,10 +37767,7 @@ /turf/open/floor/plating, /area/prison/maintenance/residential/access/south) "vsk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/east) "vvf" = ( /obj/structure/machinery/light/small, @@ -49087,16 +37778,11 @@ dir = 2; name = "Protective Custody Cells" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/protective) "vxy" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) "vAs" = ( /obj/effect/decal/cleanable/blood, @@ -49108,10 +37794,7 @@ /area/prison/maintenance/residential/ne) "vAT" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/prison/telecomms) "vCU" = ( /obj/structure/bed/chair/comfy{ @@ -49126,26 +37809,17 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/cellblock/mediumsec/east) "vEi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/prison/darkpurplecorners2/west, /area/prison/hanger/research) "vGg" = ( /obj/structure/largecrate/random, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "vHX" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -49154,16 +37828,10 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/prison/cellblock/mediumsec/west) "vKV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/highsec_medsec) "vKZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -49172,9 +37840,7 @@ dir = 2; name = "Security Booth" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/prison/security/checkpoint/highsec/n) "vPr" = ( /obj/structure/machinery/light{ @@ -49190,10 +37856,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "vTZ" = ( /obj/structure/surface/table/reinforced, @@ -49201,10 +37864,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) "vUy" = ( /obj/structure/machinery/door/airlock/prison{ @@ -49215,17 +37875,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/east) "vWd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) "vXR" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -49234,10 +37890,7 @@ "wav" = ( /obj/structure/bed/chair, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "wdr" = ( /obj/effect/decal/warning_stripes{ @@ -49255,10 +37908,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "wju" = ( /obj/structure/pipes/vents/pump{ @@ -49294,17 +37944,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/cellblock/lowsec/se) "wvT" = ( /obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/cellblock/lowsec/nw) "wwc" = ( /obj/structure/window/reinforced{ @@ -49313,27 +37957,18 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) "wyo" = ( /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) "wyT" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/plating, /area/prison/maintenance/residential/sw) "wEQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/prison/cellblock/protective) "wFn" = ( /obj/structure/surface/table/reinforced, @@ -49344,10 +37979,7 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "wFT" = ( /obj/structure/bed/chair/comfy, @@ -49368,34 +38000,22 @@ /area/prison/hallway/entrance) "wJl" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/east) "wKt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/medbay/foyer) "wNk" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "wPV" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "wRI" = ( /obj/structure/bed, @@ -49428,17 +38048,11 @@ /area/prison/residential/north) "wUP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/visitation) "wVs" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) "wWk" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -49455,18 +38069,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "wZK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/frame/table/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/lowsec/nw) "xaT" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, @@ -49480,10 +38088,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/monorail/west) "xii" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -49492,10 +38097,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) "xiB" = ( /obj/structure/largecrate/random, @@ -49509,19 +38111,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/prison/telecomms) "xjn" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating, /area/prison/maintenance/staff_research) "xkp" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull, /area/prison/quarters/research) "xld" = ( /obj/structure/bed/chair/comfy{ @@ -49531,10 +38128,7 @@ /turf/open/floor/carpet, /area/prison/residential/north) "xoT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "xsY" = ( /obj/structure/machinery/light/small{ @@ -49549,10 +38143,7 @@ flipped = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "xwh" = ( /obj/effect/decal/siding/wood_siding{ @@ -49570,27 +38161,20 @@ dir = 2; name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/highsec/south/south) "xzA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/prison/cellblock/mediumsec/west) "xCv" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) "xCG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -49603,10 +38187,7 @@ dir = 8 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/prison/darkred2/southwest, /area/prison/cellblock/highsec/north/south) "xEy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -49616,18 +38197,12 @@ /area/prison/parole/protective_custody) "xIA" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "xKa" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/bloodsoup, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "xKO" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -49661,10 +38236,7 @@ /area/prison/residential/north) "xUp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, +/turf/open/floor/prison/rampbottom/west, /area/prison/hallway/east) "xVE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -49690,10 +38262,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hallway/central/west) "xYR" = ( /obj/structure/surface/rack, @@ -49704,10 +38273,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "yaY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -49716,20 +38282,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/south) "ybB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/prison/hallway/central/south) "ycb" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/medbay/foyer) "ydW" = ( /obj/structure/surface/table/reinforced, @@ -49737,10 +38297,7 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/monitoring/lowsec/ne) "yeE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -49753,9 +38310,7 @@ /turf/open/floor/plating, /area/prison/hallway/central/east) "yiA" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/east) "ykG" = ( /obj/structure/machinery/light/small{ diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index fcbdcc4fdc33..954a9fdbe40a 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -17,10 +17,7 @@ /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "aar" = ( /obj/structure/machinery/power/apc, @@ -47,10 +44,7 @@ /area/fiorina/tumor/ice_lab) "abG" = ( /obj/item/trash/chunk, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "abJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -64,15 +58,10 @@ name = "xeno_hive_spawn" }, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "ach" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/servers) "aco" = ( /obj/structure/surface/table/reinforced/prison, @@ -97,59 +86,38 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "adq" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "adE" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "aeb" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/fiorina/tumor/servers) "aej" = ( /obj/item/weapon/gun/rifle/m16, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/fiorina/station/security) "aeo" = ( /obj/structure/monorail{ name = "launch track" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) "aeF" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibup1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "aeI" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "aeS" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -157,23 +125,13 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "afk" = ( -/turf/open/floor{ - desc = "A sophisticated device that captures and converts light from the system's star into energy for the station."; - icon_state = "solarpanel"; - name = "solarpanel" - }, +/turf/open/floor/solarpanel, /area/fiorina/oob) "afq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/fiorina/station/medbay) "afO" = ( /obj/structure/bed/sofa/vert/grey/bot{ @@ -191,25 +149,19 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "aga" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "agh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "agi" = ( /turf/closed/wall/mineral/bone_resin, @@ -259,20 +211,14 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "ahm" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/flight_deck) "aic" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/station/telecomm/lz1_tram) "aif" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -283,18 +229,13 @@ /area/fiorina/station/medbay) "aik" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "aiv" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "aje" = ( /obj/structure/stairs/perspective{ @@ -319,10 +260,7 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "ajx" = ( /obj/structure/platform/kutjevo/smooth, @@ -331,10 +269,7 @@ "ajP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/margherita, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ajZ" = ( /obj/effect/landmark{ @@ -342,21 +277,14 @@ name = "xeno_hive_spawn" }, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "akp" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/chapel) "akM" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "akW" = ( /obj/structure/bed/chair/janicart, @@ -368,43 +296,28 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "alC" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "alK" = ( /obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "alP" = ( /obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "alX" = ( /obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "alY" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/station/security) "amd" = ( /obj/effect/decal/hefa_cult_decals/d96, @@ -418,10 +331,7 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) "amn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/fiorina/station/research_cells) "amF" = ( /turf/closed/wall/r_wall/prison, @@ -430,10 +340,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "ane" = ( /obj/item/weapon/unathiknife{ @@ -446,9 +353,7 @@ /obj/structure/closet, /obj/item/restraint/handcuffs, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/lowsec) "anm" = ( /obj/structure/surface/table/reinforced/prison, @@ -476,10 +381,7 @@ /area/fiorina/station/medbay) "ann" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "anq" = ( /turf/closed/shuttle/ert{ @@ -495,9 +397,7 @@ /area/fiorina/station/park) "any" = ( /obj/item/stack/cable_coil/random, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "anJ" = ( /obj/structure/cable/heavyduty{ @@ -522,9 +422,7 @@ "anT" = ( /obj/item/reagent_container/food/snacks/meat, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "anW" = ( /obj/structure/machinery/light/double/blue{ @@ -532,52 +430,38 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/station/chapel) "aoo" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "aoZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/reagent_dispensers/water_cooler/stacks{ pixel_y = 11 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "ape" = ( /obj/structure/bed/chair{ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/maintenance) "apf" = ( /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) "apu" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/power_ring) "apw" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) "apO" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "aqj" = ( /obj/structure/stairs/perspective{ @@ -590,17 +474,12 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "aqw" = ( /obj/item/stool, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "arl" = ( /obj/effect/landmark/objective_landmark/close, @@ -616,10 +495,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/southwest, /area/fiorina/station/botany) "arG" = ( /obj/structure/machinery/light/double/blue{ @@ -627,10 +503,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "arT" = ( /obj/structure/stairs/perspective{ @@ -639,10 +512,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "arW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/oob) "asf" = ( /obj/structure/largecrate/random/barrel/white, @@ -650,10 +520,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "ask" = ( /obj/structure/machinery/light/double/blue{ @@ -662,9 +529,7 @@ pixel_y = 13 }, /obj/structure/largecrate/random/case, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "aso" = ( /obj/structure/inflatable/popped/door, @@ -677,10 +542,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) "asz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/central_ring) "asE" = ( /obj/structure/platform{ @@ -695,18 +557,13 @@ /area/fiorina/station/transit_hub) "asI" = ( /obj/item/toy/deck, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "atd" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "atl" = ( /obj/structure/platform{ @@ -735,23 +592,15 @@ /area/fiorina/oob) "atw" = ( /obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "atY" = ( /obj/structure/bedsheetbin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "auj" = ( /obj/item/frame/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "auQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -764,16 +613,12 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "auS" = ( /obj/structure/closet/wardrobe/orange, /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "avc" = ( /obj/structure/stairs/perspective{ @@ -804,10 +649,7 @@ /obj/structure/machinery/iv_drip{ pixel_y = 19 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "axb" = ( /obj/item/clothing/suit/storage/marine/specialist, @@ -841,35 +683,24 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ayo" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/security) "ayB" = ( /obj/structure/bed/chair{ dir = 4; pixel_x = -5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) "ayG" = ( /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "ayH" = ( /obj/structure/surface/table/reinforced/prison, @@ -877,17 +708,12 @@ pixel_x = 5; pixel_y = 22 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "ayW" = ( /obj/item/explosive/grenade/incendiary/molotov, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "ayX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -904,9 +730,7 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "azv" = ( /obj/structure/girder, @@ -945,24 +769,17 @@ /turf/open/floor/prison, /area/fiorina/station/power_ring) "aAA" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/transit_hub) "aAJ" = ( /obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "aBb" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "aBs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -975,9 +792,7 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "aBD" = ( /obj/structure/platform, @@ -987,9 +802,7 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "aBJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -1015,43 +828,29 @@ /area/fiorina/station/central_ring) "aDc" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "aDx" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/central_ring) "aEi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) "aEB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/security/wardens) "aEC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "aEG" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "aEQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "aFp" = ( /obj/structure/machinery/defenses/tesla_coil{ @@ -1065,18 +864,13 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) "aFQ" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibmid3" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "aFZ" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -1091,9 +885,7 @@ pixel_x = 11; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "aGR" = ( /obj/structure/largecrate/random, @@ -1117,48 +909,33 @@ /area/fiorina/station/civres_blue) "aHJ" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "aHK" = ( /obj/item/ammo_casing{ icon_state = "casing_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "aId" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/hypospray, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "aIm" = ( /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "aIB" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "aJk" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "aJo" = ( /obj/structure/bed/chair{ @@ -1170,16 +947,10 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "aJv" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/tumor/aux_engi) "aJX" = ( /obj/structure/bed/chair{ @@ -1198,10 +969,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "aKA" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1214,9 +982,7 @@ network = list("omega") }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "aLp" = ( /obj/structure/prop/invuln{ @@ -1233,9 +999,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "aLC" = ( /obj/structure/sink{ @@ -1243,10 +1007,7 @@ pixel_x = -12 }, /obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "aLT" = ( /obj/item/trash/uscm_mre, @@ -1257,34 +1018,25 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "aMg" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/ice_lab) "aMr" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "aMu" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/tumor/ice_lab) "aME" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "aMM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -1303,9 +1055,7 @@ /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "aNk" = ( /obj/structure/machinery/light/double/blue{ @@ -1326,9 +1076,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "aOc" = ( /turf/closed/shuttle/ert{ @@ -1337,9 +1085,7 @@ }, /area/fiorina/tumor/ship) "aOm" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/tumor/servers) "aOC" = ( /obj/structure/bed/chair/comfy{ @@ -1362,17 +1108,13 @@ pixel_x = -7; pixel_y = 11 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "aOT" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "aPd" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -1381,9 +1123,7 @@ /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "aPr" = ( /obj/structure/stairs/perspective{ @@ -1414,25 +1154,18 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "aQH" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/landmark/nightmare{ insert_tag = "yardbasketball" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "aQR" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "aQW" = ( /obj/structure/barricade/sandbags{ @@ -1446,10 +1179,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "aRk" = ( /obj/structure/cargo_container/grant/left, @@ -1480,10 +1210,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "aSz" = ( /turf/closed/wall/r_wall/prison, @@ -1505,10 +1232,7 @@ /area/fiorina/station/medbay) "aTe" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "aTo" = ( /turf/closed/wall/mineral/bone_resin, @@ -1540,18 +1264,12 @@ "aTO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck/uno, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "aTY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "aUg" = ( /obj/item/tool/crowbar/red, @@ -1559,19 +1277,14 @@ /area/fiorina/station/security) "aUA" = ( /obj/item/stack/cable_coil/orange, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "aVd" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) "aVU" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "aWk" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -1580,19 +1293,14 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "aWV" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) "aXk" = ( /obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "aXn" = ( /turf/closed/shuttle/elevator{ @@ -1610,9 +1318,7 @@ name = "Dr. O's fantastic self rolling wheelie chair"; pixel_x = 7 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "aXv" = ( /obj/structure/machinery/light/double/blue, @@ -1627,15 +1333,10 @@ /turf/open/floor/prison, /area/fiorina/lz/near_lzII) "aXC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/fiorina/station/lowsec) "aXO" = ( -/turf/open/floor/prison{ - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2, /area/fiorina/station/central_ring) "aXR" = ( /obj/structure/surface/table/reinforced/prison, @@ -1644,17 +1345,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "aYf" = ( /obj/item/tool/scythe, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "aYg" = ( /obj/structure/machinery/shower{ @@ -1664,15 +1359,10 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "aZi" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/tumor/servers) "aZD" = ( /obj/structure/platform{ @@ -1691,10 +1381,7 @@ /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) "aZL" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "aZN" = ( /obj/item/toy/crayon/yellow, @@ -1704,9 +1391,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "baC" = ( /turf/closed/wall/mineral/bone_resin, @@ -1718,15 +1403,11 @@ /area/fiorina/station/power_ring) "baM" = ( /obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "bbn" = ( /obj/item/device/motiondetector, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "bbp" = ( /obj/structure/filingcabinet{ @@ -1738,31 +1419,22 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "bbI" = ( /obj/item/stool{ pixel_x = -4; pixel_y = 23 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "bbU" = ( /obj/structure/sign/safety/fire_haz, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "bcd" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "bce" = ( /obj/structure/lattice, @@ -1774,10 +1446,7 @@ /turf/open/floor/plating/prison, /area/fiorina/maintenance) "bcp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "bcq" = ( /obj/item/prop/helmetgarb/riot_shield, @@ -1789,15 +1458,11 @@ pixel_x = 11; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "bcT" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "bcX" = ( /obj/item/tool/warning_cone, @@ -1812,31 +1477,21 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "bdE" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "bec" = ( /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/lz/near_lzI) "beh" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/fiorina/tumor/ice_lab) "bel" = ( /obj/structure/prop/structure_lattice{ @@ -1845,9 +1500,7 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "bem" = ( /obj/structure/platform{ @@ -1871,10 +1524,7 @@ /turf/open/floor/prison, /area/fiorina/tumor/servers) "beB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/power_ring) "beW" = ( /obj/structure/machinery/light/double/blue{ @@ -1886,9 +1536,7 @@ "bff" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "bfF" = ( /obj/structure/cable/heavyduty{ @@ -1913,10 +1561,7 @@ /area/fiorina/maintenance) "bgD" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "bht" = ( /obj/effect/decal/cleanable/blood{ @@ -1938,10 +1583,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "bhW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/fiorina/tumor/civres) "bhX" = ( /turf/open/floor/plating/prison, @@ -1950,10 +1592,7 @@ /turf/closed/wall/prison, /area/fiorina/station/chapel) "bix" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "bjf" = ( /obj/item/tool/warning_cone, @@ -1970,21 +1609,15 @@ /area/fiorina/station/security) "bjt" = ( /obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "bjR" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "bjZ" = ( /obj/item/weapon/twohanded/spear, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "bkg" = ( /obj/structure/bed/chair, @@ -1992,17 +1625,13 @@ /area/fiorina/station/power_ring) "bki" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "bkQ" = ( /obj/item/ammo_casing{ icon_state = "casing_7_1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "bkU" = ( /obj/effect/decal/cleanable/blood/drip, @@ -2012,25 +1641,18 @@ /obj/structure/prop/resin_prop{ icon_state = "rack" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "blf" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/power_ring) "blA" = ( /obj/item/shard{ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "blG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -2042,17 +1664,12 @@ "bma" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "bmw" = ( /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "bmE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -2071,15 +1688,11 @@ /area/fiorina/tumor/servers) "bne" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "bnh" = ( /obj/item/storage/briefcase, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "bno" = ( /obj/structure/barricade/handrail/type_b{ @@ -2090,9 +1703,7 @@ /area/fiorina/station/disco) "bnx" = ( /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "bnA" = ( /turf/closed/wall/prison, @@ -2113,9 +1724,7 @@ name = "overhead ducting"; pixel_y = 33 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "boe" = ( /obj/item/tool/wet_sign, @@ -2127,67 +1736,46 @@ /area/fiorina/tumor/ice_lab) "boF" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "boI" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 5; pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "bpe" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "bpo" = ( /obj/item/dogtag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "bpx" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "bqu" = ( /obj/structure/toilet{ dir = 4; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "bqC" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) "bqD" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "bqF" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -2201,9 +1789,7 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "bqX" = ( /obj/effect/decal/cleanable/blood, @@ -2219,28 +1805,18 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "brC" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "brR" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/flight_deck) "brY" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "bsc" = ( /obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "bsk" = ( /obj/structure/platform_decoration/kutjevo{ @@ -2253,9 +1829,7 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "bso" = ( /turf/closed/shuttle/ert{ @@ -2267,19 +1841,13 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "bsR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "buz" = ( /obj/item/stack/rods, @@ -2290,19 +1858,13 @@ dir = 8; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/central_ring) "buJ" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) "bvg" = ( /obj/structure/surface/table/reinforced/prison, @@ -2318,31 +1880,22 @@ pixel_x = -1; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "bvp" = ( /obj/structure/barricade/wooden{ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/central_ring) "bvr" = ( /obj/item/explosive/grenade/high_explosive/m15, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/tumor/aux_engi) "bvs" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/central_ring) "bvK" = ( /obj/structure/surface/table/reinforced/prison, @@ -2357,79 +1910,53 @@ /area/fiorina/station/civres_blue) "bwj" = ( /obj/structure/computerframe, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "bwk" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "bww" = ( /obj/item/trash/candy, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "bxc" = ( /obj/structure/window/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) "bxd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/oob) "bxe" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "bxg" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "bxm" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "bxv" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) "bxy" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) "bxA" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "bxE" = ( /obj/structure/prop/structure_lattice{ @@ -2448,9 +1975,7 @@ name = "overhead pipe"; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "bxQ" = ( /obj/structure/machinery/light/double/blue{ @@ -2458,10 +1983,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/medbay) "bxV" = ( /obj/item/clothing/head/cmcap, @@ -2473,10 +1995,7 @@ /obj/item/tool/kitchen/rollingpin{ pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "byb" = ( /turf/closed/shuttle/ert{ @@ -2498,9 +2017,7 @@ /area/fiorina/lz/near_lzI) "byB" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "byE" = ( /obj/structure/machinery/vending/cola, @@ -2514,23 +2031,14 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/tumor/ice_lab) "byG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "byJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/tumor/civres) "byT" = ( /obj/structure/platform, @@ -2541,10 +2049,7 @@ /area/fiorina/station/medbay) "bze" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/fiorina/station/medbay) "bzO" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -2554,10 +2059,7 @@ /obj/item/device/flashlight, /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "bAc" = ( /turf/closed/shuttle/ert{ @@ -2566,24 +2068,17 @@ /area/fiorina/tumor/aux_engi) "bAf" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/power_ring) "bAE" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine/skillless, /obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "bAM" = ( /obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "bBr" = ( /obj/structure/barricade/metal/wired{ @@ -2592,17 +2087,12 @@ /obj/item/bodybag/tarp/reactive, /obj/item/bodybag/tarp/reactive, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "bBt" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "bBA" = ( /turf/closed/shuttle/ert{ @@ -2612,9 +2102,7 @@ "bBB" = ( /obj/structure/largecrate/random/barrel, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "bBK" = ( /obj/item/clothing/under/marine/ua_riot, @@ -2622,10 +2110,7 @@ /turf/open/floor/prison, /area/fiorina/station/security) "bCe" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/fiorina/station/security) "bCu" = ( /obj/item/shard{ @@ -2637,9 +2122,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "bDx" = ( /obj/item/tool/extinguisher/mini, @@ -2647,22 +2130,14 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "bDJ" = ( /obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "bDM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) "bDU" = ( /obj/item/stack/rods, @@ -2670,9 +2145,7 @@ /area/fiorina/tumor/aux_engi) "bDX" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/chapel) "bEk" = ( /obj/structure/monorail{ @@ -2699,9 +2172,7 @@ /area/fiorina/station/park) "bEP" = ( /obj/item/device/flashlight, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "bEX" = ( /obj/structure/window/framed/prison, @@ -2713,19 +2184,13 @@ /obj/item/reagent_container/food/snacks/meat/human, /obj/structure/machinery/light/double/blue, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "bFi" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "bFr" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -2741,10 +2206,7 @@ /area/fiorina/station/park) "bFJ" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "bFL" = ( /obj/structure/mirror{ @@ -2754,31 +2216,21 @@ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "bGA" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "bGB" = ( /obj/structure/largecrate/supply/generator, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "bGH" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "bGY" = ( /turf/closed/shuttle/elevator{ @@ -2808,9 +2260,7 @@ /area/fiorina/lz/near_lzI) "bHR" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "bHU" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2831,17 +2281,12 @@ icon_state = "abed" }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "bIR" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) "bIZ" = ( /turf/closed/shuttle/elevator{ @@ -2871,9 +2316,7 @@ /obj/structure/barricade/handrail/type_b{ layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "bJG" = ( /obj/effect/decal/medical_decals{ @@ -2882,18 +2325,12 @@ /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "bKF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "bLA" = ( /obj/structure/surface/table/reinforced/prison, @@ -2909,16 +2346,11 @@ /turf/closed/wall/prison, /area/fiorina/station/central_ring) "bLM" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "bLO" = ( /obj/item/stack/cable_coil/blue, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/fiorina/tumor/ice_lab) "bMh" = ( /obj/item/frame/table/wood/fancy, @@ -2934,48 +2366,32 @@ /area/fiorina/station/power_ring) "bMz" = ( /obj/item/tool/lighter/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "bMF" = ( /obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "bMG" = ( /obj/structure/surface/rack, /obj/item/restraint/handcuffs/zip, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/lowsec) "bMI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/folder/black_random, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "bMT" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "bNo" = ( /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "bNE" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "bNP" = ( /obj/effect/spawner/random/tool, @@ -2998,29 +2414,20 @@ /area/fiorina/lz/near_lzII) "bOx" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "bOK" = ( /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "bOR" = ( /obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "bPh" = ( /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "bPl" = ( /obj/structure/surface/table/woodentable/fancy, @@ -3030,17 +2437,13 @@ /obj/item/reagent_container/food/drinks/coffee{ name = "\improper paper cup" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "bPy" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "bPG" = ( /turf/open/floor/plating/prison, @@ -3052,10 +2455,7 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) "bPQ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/chapel) "bPT" = ( /obj/structure/monorail{ @@ -3066,10 +2466,7 @@ /area/fiorina/tumor/aux_engi) "bPV" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "bQh" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -3100,16 +2497,11 @@ /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/fiorina/station/medbay) "bQv" = ( /obj/item/trash/cigbutt/ucigbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "bQy" = ( /obj/structure/surface/table/woodentable, @@ -3118,9 +2510,7 @@ /area/fiorina/station/civres_blue) "bQL" = ( /obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "bQM" = ( /turf/open/space, @@ -3129,9 +2519,7 @@ /obj/item/frame/rack, /obj/item/stack/medical/bruise_pack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "bRb" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ @@ -3157,26 +2545,18 @@ pixel_x = 5; pixel_y = 25 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "bRs" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "bRA" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "bRC" = ( /obj/structure/flora/pottedplant{ @@ -3186,28 +2566,19 @@ /area/fiorina/station/power_ring) "bRQ" = ( /obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "bSm" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) "bSq" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/smg/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "bSs" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +/turf/open/floor/prison/floorscorched2, /area/fiorina/station/security) "bSM" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ @@ -3220,19 +2591,14 @@ /area/fiorina/station/botany) "bSS" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "bTc" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) "bTo" = ( /obj/structure/platform/kutjevo/smooth, @@ -3243,26 +2609,17 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "bTr" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "bTC" = ( /obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) "bTI" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -3311,30 +2668,19 @@ /area/fiorina/station/medbay) "bXc" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "bXe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "bXh" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/chapel) "bXz" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "bXA" = ( /obj/item/tool/screwdriver, @@ -3344,24 +2690,17 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/maintenance) "bZn" = ( /obj/item/device/taperecorder{ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "bZD" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/tumor/aux_engi) "bZI" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3369,9 +2708,7 @@ flipped = 1 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "bZY" = ( /obj/structure/machinery/light/double/blue, @@ -3379,22 +2716,14 @@ /area/fiorina/station/security) "car" = ( /obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "caA" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "caC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/fiorina/station/transit_hub) "caF" = ( /turf/open/floor/wood, @@ -3404,10 +2733,7 @@ /obj/item/ammo_casing{ icon_state = "casing_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "cbd" = ( /obj/structure/reagent_dispensers/watertank, @@ -3444,9 +2770,7 @@ /area/fiorina/station) "cbY" = ( /obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/fiorina/station/research_cells) "ccH" = ( /obj/structure/machinery/newscaster, @@ -3473,10 +2797,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/flight_deck) "cdV" = ( /obj/structure/machinery/light/double/blue{ @@ -3484,10 +2805,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "cdY" = ( /obj/effect/decal/medical_decals{ @@ -3498,10 +2816,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "ceq" = ( /obj/item/bodybag, @@ -3511,69 +2826,45 @@ /obj/item/bodybag{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "cer" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "ceB" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "ceC" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/security) "ceJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/tumor/ice_lab) "cfa" = ( /obj/item/frame/rack, /obj/structure/barricade/handrail/type_b{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/lowsec) "cfG" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "cfU" = ( /obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "cgx" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "chg" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "chx" = ( /obj/structure/stairs/perspective{ @@ -3587,10 +2878,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) "chT" = ( /obj/structure/machinery/light/double/blue{ @@ -3611,10 +2899,7 @@ /obj/item/coin/uranium{ desc = "You found one of the three uranium coins. It is entirely worthless." }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "ciy" = ( /obj/structure/platform, @@ -3625,10 +2910,7 @@ dir = 6 }, /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ciA" = ( /obj/structure/machinery/vending/snack/packaged, @@ -3649,47 +2931,33 @@ pixel_y = 12 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "cje" = ( /obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "cjG" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "cki" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ckm" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) "ckr" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/telecomm/lz1_tram) "ckt" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) "ckA" = ( /obj/structure/platform, @@ -3697,9 +2965,7 @@ /area/fiorina/tumor/ice_lab) "ckS" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "ckZ" = ( /obj/structure/platform, @@ -3722,16 +2988,11 @@ /area/fiorina/tumor/civres) "clv" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "clA" = ( /obj/item/weapon/baton/cattleprod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "clN" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -3740,9 +3001,7 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) "clP" = ( -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "cmy" = ( /obj/structure/sign/prop3{ @@ -3754,9 +3013,7 @@ /obj/item/stack/sheet/wood/medium_stack, /obj/item/stack/sheet/wood/medium_stack, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "cmP" = ( /obj/structure/pipes/standard/tank{ @@ -3773,10 +3030,7 @@ /area/fiorina/station/security) "cnH" = ( /obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/fiorina/tumor/servers) "coj" = ( /obj/item/stool, @@ -3804,34 +3058,22 @@ }, /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "cqT" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/fiorina/station/security) "cqV" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "cqW" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2, /area/fiorina/station/lowsec) "cqX" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "cri" = ( /obj/structure/machinery/computer/prisoner, @@ -3848,10 +3090,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "cry" = ( /obj/structure/stairs/perspective{ @@ -3868,10 +3107,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) "csL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/telecomm/lz1_tram) "ctc" = ( /obj/structure/prop/resin_prop{ @@ -3888,10 +3124,7 @@ /obj/structure/machinery/computer/skills{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ctD" = ( /obj/effect/landmark/monkey_spawn, @@ -3902,10 +3135,7 @@ icon_state = "abed" }, /obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "ctW" = ( /obj/structure/bed{ @@ -3913,36 +3143,24 @@ }, /obj/item/coin/uranium, /obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "ctY" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/fiorina/station/central_ring) "cui" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/civres_blue) "cum" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 }, /obj/item/frame/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "cvc" = ( /obj/structure/barricade/metal/wired{ @@ -3951,10 +3169,7 @@ /obj/structure/machinery/m56d_hmg/mg_turret/dropship{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/central_ring) "cvd" = ( /obj/structure/surface/table/reinforced/prison, @@ -3962,18 +3177,13 @@ pixel_x = 5; pixel_y = 22 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "cvi" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/fire, /obj/item/storage/firstaid/fire, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "cvn" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -3985,9 +3195,7 @@ /area/fiorina/lz/near_lzII) "cvH" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "cvL" = ( /obj/effect/landmark/nightmare{ @@ -3999,10 +3207,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "cwM" = ( /obj/structure/machinery/light/double/blue{ @@ -4010,23 +3215,15 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "cxb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/maintenance) "cxc" = ( /obj/item/stack/folding_barricade, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) "cxy" = ( /obj/item/ammo_magazine/rifle/m16{ @@ -4041,15 +3238,10 @@ /area/fiorina/station/security) "cxA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "cyb" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/aux_engi) "cye" = ( /obj/item/trash/pistachios, @@ -4058,16 +3250,11 @@ "cyk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/megaphone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "cyR" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "cyV" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -4082,25 +3269,18 @@ "czr" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "czJ" = ( /obj/structure/reagent_dispensers/watertank{ layer = 2.6 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "cAJ" = ( /obj/item/trash/snack_bowl, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "cAO" = ( /obj/effect/decal/cleanable/blood/oil, @@ -4122,9 +3302,7 @@ "cBm" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "cBn" = ( /obj/structure/platform{ @@ -4136,22 +3314,15 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "cBG" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "cBJ" = ( /obj/item/clothing/shoes/laceup, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "cBK" = ( /obj/item/shard{ @@ -4167,15 +3338,10 @@ /obj/item/reagent_container/food/drinks/coffee{ pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "cCe" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner, /area/fiorina/station/research_cells) "cCh" = ( /obj/item/ammo_casing{ @@ -4186,10 +3352,7 @@ /area/fiorina/station/telecomm/lz1_cargo) "cCs" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "cCt" = ( /obj/structure/barricade/wooden, @@ -4220,9 +3383,7 @@ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; name = "HEFA Order milita armband" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "cDb" = ( /obj/item/tool/crowbar, @@ -4239,9 +3400,7 @@ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "cEb" = ( /obj/structure/stairs/perspective{ @@ -4253,9 +3412,7 @@ "cEg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "cEw" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -4270,44 +3427,31 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "cEW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ywflowers_4" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "cEY" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "cFg" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "cFq" = ( /obj/item/tool/mop, /turf/open/floor/plating/prison, /area/fiorina/maintenance) "cFT" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/tumor/civres) "cFX" = ( /obj/structure/largecrate/supply/supplies, @@ -4319,20 +3463,14 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "cGR" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/fiorina/station/park) "cGS" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/disco) "cGU" = ( /obj/structure/window/reinforced{ @@ -4343,16 +3481,11 @@ /obj/structure/machinery/computer/med_data/laptop{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "cHl" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "cHm" = ( /obj/item/bedsheet/green, @@ -4362,10 +3495,7 @@ /area/fiorina/station/power_ring) "cHC" = ( /obj/item/trash/popcorn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "cHF" = ( /obj/structure/surface/table/reinforced/prison, @@ -4378,18 +3508,14 @@ /area/fiorina/station/security) "cHK" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "cIt" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "cIJ" = ( /obj/structure/machinery/light/double/blue{ @@ -4397,10 +3523,7 @@ pixel_y = 21 }, /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "cIQ" = ( /obj/structure/bed/chair{ @@ -4414,16 +3537,11 @@ dir = 4; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/park) "cJv" = ( /obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) "cJz" = ( /obj/structure/machinery/light/double/blue{ @@ -4431,10 +3549,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "cJL" = ( /obj/structure/prop/structure_lattice{ @@ -4446,18 +3561,12 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "cJS" = ( /obj/item/trash/uscm_mre, /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "cJW" = ( /obj/effect/landmark/survivor_spawner, @@ -4465,10 +3574,7 @@ /area/fiorina/station/security/wardens) "cJY" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/tumor/aux_engi) "cKa" = ( /turf/closed/wall/prison, @@ -4478,9 +3584,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "cKB" = ( /obj/structure/stairs/perspective{ @@ -4490,10 +3594,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "cKH" = ( /obj/structure/closet/bodybag, @@ -4510,9 +3611,7 @@ /obj/item/reagent_container/glass/bottle/robot/antitoxin, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "cKU" = ( /obj/structure/stairs/perspective{ @@ -4535,10 +3634,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "cLC" = ( /obj/structure/surface/table/reinforced/prison, @@ -4548,36 +3644,23 @@ /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "cLS" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "cLZ" = ( /obj/structure/largecrate/guns/merc, /obj/item/toy/deck/uno, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "cMb" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) "cMD" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/central_ring) "cME" = ( /turf/open/floor/plating/prison, @@ -4586,55 +3669,36 @@ /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "cNe" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "cOj" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/civres_blue) "cOB" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/flight_deck) "cOC" = ( /obj/item/tool/wet_sign, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "cOF" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "cOL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_cargo) "cPh" = ( /obj/item/ammo_casing{ icon_state = "casing_6" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "cPq" = ( /obj/structure/machinery/light/double/blue{ @@ -4646,9 +3710,7 @@ /area/fiorina/maintenance) "cPs" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "cPz" = ( /obj/structure/machinery/fuelcell_recycler, @@ -4656,10 +3718,7 @@ /area/fiorina/station/telecomm/lz1_cargo) "cPC" = ( /obj/item/stack/sandbags_empty, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "cPL" = ( /obj/structure/stairs/perspective{ @@ -4670,9 +3729,7 @@ /area/fiorina/station/park) "cQe" = ( /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "cQf" = ( /obj/structure/machinery/light/double/blue{ @@ -4681,9 +3738,7 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "cQv" = ( /obj/structure/monorail{ @@ -4696,23 +3751,17 @@ /area/fiorina/oob) "cRg" = ( /obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "cRl" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/book/manual/security_space_law, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "cRx" = ( /obj/structure/machinery/sensortower, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "cRB" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -4729,38 +3778,26 @@ pixel_y = 18 }, /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "cRK" = ( /obj/structure/window, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "cRM" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "cRZ" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "cSh" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "cTr" = ( /obj/structure/largecrate/random/barrel/blue, @@ -4769,19 +3806,14 @@ "cTx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "cTy" = ( /obj/item/stool, /obj/item/trash/cigbutt{ pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "cTD" = ( /obj/structure/machinery/light/double/blue{ @@ -4789,32 +3821,21 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzI) "cTE" = ( /obj/item/ammo_casing{ icon_state = "cartridge_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "cUd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) "cUA" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "cUU" = ( /obj/structure/monorail{ @@ -4827,10 +3848,7 @@ /area/fiorina/station/telecomm/lz1_tram) "cVu" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "cVQ" = ( /obj/structure/machinery/light/double/blue{ @@ -4845,17 +3863,12 @@ /area/fiorina/station/disco) "cXp" = ( /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "cXV" = ( /obj/item/ammo_magazine/smg/mp5, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/fiorina/station/telecomm/lz1_cargo) "cYd" = ( /obj/structure/stairs/perspective{ @@ -4866,9 +3879,7 @@ /area/fiorina/tumor/ice_lab) "cYe" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "cYi" = ( /obj/structure/surface/table/reinforced/prison, @@ -4876,25 +3887,17 @@ pixel_x = 2; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "cYj" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/lowsec) "cYI" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/fiorina/tumor/aux_engi) "cYP" = ( /obj/structure/closet/crate/trashcart, @@ -4911,18 +3914,13 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/central_ring) "cYT" = ( /obj/vehicle/powerloader{ dir = 8 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "cYV" = ( /obj/structure/stairs/perspective{ @@ -4935,26 +3933,18 @@ "cZe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/phone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "cZh" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "cZp" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "cZq" = ( /obj/item/shard{ @@ -4970,22 +3960,16 @@ /obj/structure/machinery/door/window/northleft{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security/wardens) "cZP" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "cZR" = ( -/turf/open/floor/prison{ - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2, /area/fiorina/station/disco) "cZV" = ( /obj/structure/bed/chair/office/light{ @@ -4995,18 +3979,14 @@ /area/fiorina/station/security) "dae" = ( /obj/structure/machinery/vending/walkman, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "daA" = ( /obj/item/clothing/accessory/armband/cargo{ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; name = "HEFA Order milita armband" }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "daD" = ( /obj/structure/platform/kutjevo/smooth{ @@ -5030,9 +4010,7 @@ /area/fiorina/station/security) "dbh" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "dbi" = ( /obj/item/storage/toolbox/electrical, @@ -5045,24 +4023,17 @@ pixel_x = 1; pixel_y = 13 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "dbr" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "dbI" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/fiorina/station/lowsec) "dbW" = ( /obj/structure/surface/table/reinforced/prison, @@ -5071,9 +4042,7 @@ pixel_y = 9 }, /obj/item/storage/box/donkpockets, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "dcv" = ( /obj/structure/largecrate/random, @@ -5087,27 +4056,21 @@ /area/fiorina/station/flight_deck) "dcO" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "dde" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/oob) "ddt" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/beer_pack{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "ddv" = ( /obj/structure/closet/secure_closet/engineering_welding, @@ -5117,20 +4080,14 @@ pixel_y = 13 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/maintenance) "ddA" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) "ddB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "ddD" = ( /obj/structure/janitorialcart, @@ -5152,22 +4109,15 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) "ddN" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/fiorina/tumor/servers) "ddU" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "ddY" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "dec" = ( /obj/structure/sign/prop3{ @@ -5183,23 +4133,14 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"deL" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) "deR" = ( /obj/item/toy/crayon/red, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "dfc" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/oob) "dfh" = ( /obj/structure/machinery/light/double/blue{ @@ -5207,9 +4148,7 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "dfA" = ( /obj/structure/barricade/sandbags{ @@ -5231,10 +4170,7 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "dhi" = ( /obj/structure/platform_decoration/kutjevo, @@ -5245,9 +4181,7 @@ dir = 4 }, /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "dhZ" = ( /obj/structure/window/reinforced{ @@ -5258,16 +4192,11 @@ /area/fiorina/station/medbay) "diF" = ( /obj/item/stack/sheet/cardboard, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "diJ" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "diL" = ( /obj/structure/stairs/perspective{ @@ -5277,9 +4206,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "dje" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -5293,15 +4220,11 @@ /obj/vehicle/powerloader{ dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "djF" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "dkb" = ( /obj/item/device/flashlight/lamp/tripod, @@ -5327,24 +4250,18 @@ /area/fiorina/station/security/wardens) "dkz" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "dkX" = ( /obj/structure/barricade/sandbags{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "dlj" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "dlr" = ( /obj/structure/surface/table/reinforced/prison, @@ -5356,9 +4273,7 @@ pixel_x = 6; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "dlA" = ( /obj/effect/decal/cleanable/blood, @@ -5387,9 +4302,7 @@ pixel_x = 2; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "dnz" = ( /obj/structure/surface/table/woodentable/fancy, @@ -5400,16 +4313,10 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "dnX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "doe" = ( /obj/item/tool/kitchen/utensil/pspoon, @@ -5441,20 +4348,14 @@ /area/fiorina/station/power_ring) "doY" = ( /obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) "dpe" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "dpn" = ( /obj/structure/stairs/perspective{ @@ -5472,18 +4373,13 @@ /area/fiorina/tumor/aux_engi) "dpZ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "dqa" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) "dqE" = ( /obj/structure/prop/souto_land/pole, @@ -5493,9 +4389,7 @@ /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "dqN" = ( /turf/closed/shuttle/ert{ @@ -5503,9 +4397,7 @@ }, /area/fiorina/tumor/ship) "dqX" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "drd" = ( /obj/structure/machinery/light/double/blue{ @@ -5513,30 +4405,19 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/station/flight_deck) "drk" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "drt" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "drZ" = ( /obj/item/clothing/mask/cigarette, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "dsS" = ( /obj/structure/barricade/handrail/type_b{ @@ -5544,10 +4425,7 @@ layer = 3.5 }, /obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "dsW" = ( /obj/structure/flora/pottedplant{ @@ -5564,21 +4442,14 @@ "dtk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/golden_cup, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "dtR" = ( /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "dtS" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/chapel) "due" = ( /obj/effect/decal/cleanable/blood/oil, @@ -5594,9 +4465,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "duF" = ( /obj/structure/window/framed/prison/reinforced, @@ -5609,9 +4478,7 @@ "duV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "duW" = ( /obj/effect/decal/cleanable/blood/oil, @@ -5633,10 +4500,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/maintenance) "dwJ" = ( /obj/structure/machinery/processor{ @@ -5647,10 +4511,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "dwP" = ( /obj/item/device/flashlight/lamp/tripod, @@ -5670,10 +4531,7 @@ /obj/structure/machinery/computer/objective{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "dxb" = ( /obj/item/storage/briefcase/stowaway, @@ -5683,22 +4541,14 @@ /obj/structure/monorail{ name = "launch track" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "dxl" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "dxv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/maintenance) "dxE" = ( /obj/structure/prop/resin_prop{ @@ -5717,19 +4567,14 @@ /area/fiorina/tumor/servers) "dxW" = ( /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "dyh" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/servers) "dyB" = ( /obj/effect/decal/cleanable/blood{ @@ -5742,28 +4587,21 @@ /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "dzl" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) "dzB" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "dzE" = ( /obj/structure/machinery/shower{ dir = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "dAd" = ( /obj/structure/stairs/perspective{ @@ -5773,16 +4611,11 @@ /turf/open/floor/plating/prison, /area/fiorina/station/disco) "dAg" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) "dBl" = ( /obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "dBq" = ( /obj/structure/surface/table/reinforced/prison, @@ -5801,38 +4634,25 @@ /area/fiorina/oob) "dBs" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "dBt" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/northeast, /area/fiorina/station/botany) "dBy" = ( /turf/open/floor/prison, /area/fiorina/station/chapel) "dBz" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "dBO" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "dBZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/fiorina/station/flight_deck) "dCg" = ( /obj/structure/bed/chair, @@ -5863,16 +4683,11 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "dCt" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "dCu" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -5884,16 +4699,11 @@ "dCv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "dCK" = ( /obj/structure/prop/souto_land/pole, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "dCM" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -5901,18 +4711,13 @@ /area/fiorina/station/security) "dDn" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "dDI" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "dDT" = ( /obj/structure/machinery/light/double/blue{ @@ -5920,10 +4725,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) "dDU" = ( /obj/effect/decal/cleanable/blood{ @@ -5933,9 +4735,7 @@ /area/fiorina/station/chapel) "dEh" = ( /obj/item/reagent_container/food/drinks/cans/sodawater, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "dEj" = ( /obj/structure/machinery/optable{ @@ -5950,9 +4750,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "dFh" = ( /obj/item/stack/cable_coil, @@ -5974,16 +4772,12 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "dFK" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "dFM" = ( /obj/item/circuitboard/machine/pacman/super, @@ -6000,19 +4794,14 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "dGA" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/park) "dHb" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -6021,31 +4810,21 @@ /obj/item/storage/box/pillbottles, /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "dHd" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) "dHD" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "dHU" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/station/security) "dIh" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "dIo" = ( /turf/closed/wall/prison, @@ -6054,17 +4833,12 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "dJd" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "dJe" = ( /obj/structure/platform{ @@ -6076,18 +4850,13 @@ /obj/structure/bookcase/manuals/research_and_development{ pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "dJt" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/disco) "dKo" = ( /obj/effect/spawner/random/gun/shotgun, @@ -6110,25 +4879,17 @@ /turf/open/floor/wood, /area/fiorina/station/park) "dLL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/fiorina/tumor/servers) "dLN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/emails{ pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "dMt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/tumor/aux_engi) "dNc" = ( /obj/structure/platform{ @@ -6138,9 +4899,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "dNh" = ( /turf/open/auto_turf/sand/layer1, @@ -6160,33 +4919,23 @@ /area/fiorina/tumor/aux_engi) "dNC" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "dOk" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/tumor/civres) "dOt" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "dOE" = ( /obj/item/storage/bible/hefa, /turf/open/floor/wood, /area/fiorina/station/chapel) "dOO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "dOX" = ( /turf/closed/wall/r_wall/prison, @@ -6200,15 +4949,11 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "dPe" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "dPm" = ( /obj/structure/bed/chair{ @@ -6224,9 +4969,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) "dPZ" = ( /obj/structure/monorail{ @@ -6251,24 +4994,18 @@ icon_state = "cartridge_2" }, /obj/effect/spawner/random/gun/smg, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "dRk" = ( /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "dRs" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/accessory/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "dRx" = ( /obj/structure/monorail{ @@ -6288,9 +5025,7 @@ /area/fiorina/oob) "dSM" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "dTf" = ( /obj/structure/largecrate/random/case, @@ -6298,10 +5033,7 @@ /area/fiorina/maintenance) "dTg" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "dTx" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -6319,10 +5051,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "dUi" = ( /obj/structure/bed/sofa/vert/grey/bot{ @@ -6341,28 +5070,20 @@ /area/fiorina/lz/near_lzII) "dUu" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "dUx" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "dVu" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "dVx" = ( /obj/structure/stairs/perspective{ @@ -6373,36 +5094,25 @@ /area/fiorina/station/security) "dVA" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "dVC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "dVD" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "dVR" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "dWn" = ( /obj/structure/barricade/wooden, /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "dWp" = ( /obj/structure/surface/table/reinforced/prison, @@ -6418,28 +5128,20 @@ /area/fiorina/station/civres_blue) "dXi" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/fiorina/tumor/servers) "dXv" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "dXG" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) "dXK" = ( /obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/transit_hub) "dXN" = ( /obj/structure/barricade/handrail/type_b{ @@ -6452,16 +5154,11 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "dXS" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "dXT" = ( /obj/structure/platform_decoration, @@ -6469,19 +5166,13 @@ /turf/open/floor/prison, /area/fiorina/station/power_ring) "dYi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/central_ring) "dYo" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "dYp" = ( /obj/docking_port/stationary/marine_dropship/lz1{ @@ -6492,15 +5183,10 @@ "dYq" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "dYC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/central_ring) "dYI" = ( /turf/closed/shuttle/ert{ @@ -6508,60 +5194,41 @@ }, /area/fiorina/tumor/aux_engi) "dYV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/maintenance) "dZj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "dZo" = ( /obj/structure/closet/secure_closet/engineering_materials, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "dZu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/card/id/guest, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "dZK" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/chapel) "dZQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) "eac" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "eao" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "eca" = ( /obj/structure/platform{ @@ -6570,10 +5237,7 @@ /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ecd" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -6590,9 +5254,7 @@ /obj/structure/prop/souto_land/streamer{ pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "ecL" = ( /obj/structure/surface/rack, @@ -6608,10 +5270,7 @@ }, /area/fiorina/tumor/ship) "ecU" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/flight_deck) "eds" = ( /obj/structure/surface/rack, @@ -6619,10 +5278,7 @@ /obj/effect/decal/cleanable/blood, /obj/item/attachable/bipod, /obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "edu" = ( /obj/structure/stairs/perspective{ @@ -6640,9 +5296,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "edY" = ( /obj/item/trash/used_stasis_bag{ @@ -6712,16 +5366,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) "efW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "egd" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "egk" = ( /obj/structure/extinguisher_cabinet, @@ -6734,9 +5383,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "egL" = ( /obj/item/newspaper, @@ -6748,17 +5395,11 @@ /area/fiorina/station/medbay) "ehr" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "ehy" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "ehO" = ( /obj/structure/platform/shiva, @@ -6768,9 +5409,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "eio" = ( /obj/item/device/flashlight/lamp/tripod, @@ -6794,9 +5433,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) "ejs" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/security) "ejt" = ( /obj/effect/landmark/monkey_spawn, @@ -6823,14 +5460,10 @@ pixel_x = 5; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "ekb" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) "eki" = ( /obj/structure/filingcabinet, @@ -6838,41 +5471,27 @@ /turf/open/floor/wood, /area/fiorina/station/security/wardens) "ekx" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/power_ring) "ekz" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ekF" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "ekS" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "ekW" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/power_ring) "elc" = ( /obj/structure/bed/roller, @@ -6881,15 +5500,10 @@ /area/fiorina/station/lowsec) "ele" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "elO" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "emm" = ( /obj/structure/machinery/light/double/blue{ @@ -6899,9 +5513,7 @@ }, /obj/item/weapon/gun/shotgun/combat, /obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "emC" = ( /obj/structure/lattice, @@ -6916,34 +5528,22 @@ /area/fiorina/station/lowsec) "enu" = ( /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "enx" = ( /obj/item/tool/shovel, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/fiorina/tumor/civres) "enH" = ( /obj/effect/alien/weeds/node, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "enY" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/oob) "eot" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_tram) "eov" = ( /turf/closed/wall/r_wall/prison_unmeltable{ @@ -6952,10 +5552,7 @@ }, /area/fiorina/station/research_cells) "eow" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "eoW" = ( /obj/structure/largecrate/random/case, @@ -6963,9 +5560,7 @@ /area/fiorina/station/power_ring) "epB" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/power_ring) "epD" = ( /obj/structure/surface/table/reinforced/prison, @@ -6973,10 +5568,7 @@ icon_state = "pottedplant_17"; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "epV" = ( /obj/item/paper/crumpled/bloody, @@ -6992,19 +5584,13 @@ /obj/item/tank/emergency_oxygen/engi, /obj/item/device/flashlight, /obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "eqw" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) "eqJ" = ( /obj/structure/platform{ @@ -7013,21 +5599,14 @@ /turf/open/floor/prison, /area/fiorina/station/medbay) "eqQ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) "eqS" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/chapel) "eqU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "eqZ" = ( /obj/structure/largecrate/random/mini/ammo, @@ -7035,18 +5614,13 @@ /area/fiorina/station/central_ring) "erb" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "erh" = ( /obj/item/ammo_casing{ icon_state = "casing_1" }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "erj" = ( /obj/structure/prop/structure_lattice{ @@ -7069,9 +5643,7 @@ /area/fiorina/tumor/servers) "erw" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "erD" = ( /obj/structure/largecrate/supply, @@ -7093,22 +5665,14 @@ /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "esw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/medbay) "esR" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "esS" = ( /obj/item/stack/sheet/metal, @@ -7118,24 +5682,16 @@ /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "etj" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/fiorina/station/chapel) "etq" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "etL" = ( /obj/item/tool/weldingtool, @@ -7148,19 +5704,13 @@ /obj/item/storage/box/holobadge{ pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "eux" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) "euz" = ( /obj/structure/bed/chair{ @@ -7170,10 +5720,7 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/fiorina/station/medbay) "evd" = ( /obj/structure/disposalpipe/segment{ @@ -7188,19 +5735,13 @@ /area/fiorina/tumor/servers) "evk" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "evl" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "evC" = ( /obj/structure/barricade/sandbags{ @@ -7212,10 +5753,7 @@ icon_state = "sandbag_0"; pixel_y = -14 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "evT" = ( /obj/structure/stairs/perspective{ @@ -7248,10 +5786,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "exa" = ( /obj/structure/bed/chair, @@ -7260,25 +5795,17 @@ "exl" = ( /obj/structure/largecrate/random, /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "exy" = ( /obj/structure/bed/chair{ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/maintenance) "exI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/station/park) "exO" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -7287,9 +5814,7 @@ /obj/structure/barricade/handrail/type_b{ layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "exW" = ( /obj/structure/monorail{ @@ -7307,9 +5832,7 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "eyj" = ( /obj/structure/surface/table/reinforced/prison, @@ -7327,10 +5850,7 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/power_ring) "eys" = ( /obj/vehicle/train/cargo/engine, @@ -7340,9 +5860,7 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) "eyy" = ( /obj/structure/machinery/light/double/blue{ @@ -7356,23 +5874,15 @@ /area/fiorina/station/security) "eyz" = ( /obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) "eyO" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "ezd" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "eze" = ( /obj/structure/platform/kutjevo/smooth{ @@ -7396,19 +5906,14 @@ /area/fiorina/station/telecomm/lz1_cargo) "ezO" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ezU" = ( /obj/structure/surface/table/reinforced/prison{ dir = 4; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ezV" = ( /obj/item/stack/sheet/metal, @@ -7428,59 +5933,38 @@ /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_3" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "eBj" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "eBr" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "eBO" = ( /obj/structure/machinery/door/airlock/almayer/marine, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "eBS" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/power_ring) "eCy" = ( /obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "eCK" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/lz/near_lzII) "eDp" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "eDA" = ( /obj/structure/prop/structure_lattice{ @@ -7492,15 +5976,11 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/research_cells) "eEx" = ( /obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "eEC" = ( /obj/structure/surface/table/reinforced/prison, @@ -7509,9 +5989,7 @@ pixel_x = 7; pixel_y = 22 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "eED" = ( /obj/structure/surface/table/woodentable/fancy, @@ -7535,25 +6013,18 @@ /area/fiorina/tumor/servers) "eEQ" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "eET" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "eEX" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "eFa" = ( /obj/structure/barricade/metal{ @@ -7565,19 +6036,14 @@ /area/fiorina/station/park) "eFq" = ( /obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/fiorina/station/chapel) "eFD" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) "eFQ" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/disco) "eFR" = ( /obj/structure/prop/souto_land/streamer{ @@ -7596,9 +6062,7 @@ /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "eGm" = ( /obj/structure/stairs/perspective{ @@ -7613,9 +6077,7 @@ "eGO" = ( /obj/item/storage/toolbox/electrical, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "eHa" = ( /obj/structure/lattice, @@ -7627,19 +6089,14 @@ dir = 2; name = "Confession Booth" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "eHn" = ( /obj/structure/barricade/metal{ health = 250; icon_state = "metal_1" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "eHt" = ( /obj/structure/window/reinforced{ @@ -7667,10 +6124,7 @@ /area/fiorina/tumor/civres) "eHQ" = ( /obj/item/trash/popcorn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "eIx" = ( /obj/structure/window/reinforced{ @@ -7679,29 +6133,20 @@ /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "eIB" = ( /obj/item/frame/rack, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "eIF" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "eIX" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/oob) "eJm" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -7715,22 +6160,15 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "eJy" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "eJK" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "eJQ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -7746,28 +6184,19 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "eLy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "eLB" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "eLQ" = ( /obj/item/weapon/gun/energy/taser, @@ -7792,16 +6221,12 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "eME" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "eMG" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ @@ -7814,9 +6239,7 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "eMU" = ( /turf/closed/shuttle/ert{ @@ -7825,9 +6248,7 @@ }, /area/fiorina/station/power_ring) "eNa" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/fiorina/station/lowsec) "eNn" = ( /obj/structure/prop/souto_land/pole, @@ -7835,10 +6256,7 @@ dir = 4; pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "eNr" = ( /obj/structure/surface/table/reinforced/prison, @@ -7847,27 +6265,19 @@ /area/fiorina/station/lowsec) "eNv" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "eOp" = ( /obj/effect/decal/medical_decals{ icon_state = "cryocell1decal" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "eOy" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "eOF" = ( /obj/structure/platform/kutjevo/smooth{ @@ -7882,17 +6292,11 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/transit_hub) "eOM" = ( /obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "ePq" = ( /obj/item/trash/cigbutt/ucigbutt, @@ -7920,17 +6324,11 @@ /area/fiorina/station/security) "ePU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "eQb" = ( /obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "eQk" = ( /obj/structure/machinery/light/double/blue{ @@ -7946,42 +6344,28 @@ pixel_x = 8; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) "eQQ" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/station/chapel) "eQX" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "eQY" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "eRl" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "eRq" = ( /obj/item/toy/bikehorn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "eRz" = ( /obj/structure/machinery/vending/snack/packaged, @@ -7989,30 +6373,19 @@ /area/fiorina/tumor/ice_lab) "eRF" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "eRR" = ( /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "eRZ" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "eSn" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 6; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/southeast, /area/fiorina/station/botany) "eSF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -8029,17 +6402,11 @@ "eSO" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "eTa" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "eTb" = ( /turf/closed/shuttle/ert{ @@ -8069,19 +6436,13 @@ "eUy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "eUN" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal1" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "eUP" = ( /obj/item/tool/warning_cone, @@ -8126,40 +6487,28 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "eVN" = ( /obj/item/bodybag, /obj/item/bodybag{ pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "eVO" = ( /turf/closed/shuttle/ert, /area/fiorina/tumor/ship) "eWf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/central_ring) "eWr" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/fiorina/tumor/civres) "eWz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flash, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "eWA" = ( /obj/structure/filingcabinet{ @@ -8170,9 +6519,7 @@ pixel_x = -8; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "eWP" = ( /obj/structure/sign/prop3{ @@ -8190,9 +6537,7 @@ dir = 4; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "eXp" = ( /turf/closed/wall/r_wall/prison, @@ -8218,23 +6563,15 @@ "eYr" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "eYs" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/fire/empty, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "eYz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "eYC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -8291,16 +6628,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "eZW" = ( /obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "fac" = ( /obj/structure/platform/shiva{ @@ -8323,10 +6655,7 @@ /area/fiorina/station/power_ring) "fbc" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fbo" = ( /obj/structure/barricade/plasteel, @@ -8341,18 +6670,13 @@ /obj/item/clothing/suit/chef/classic, /obj/structure/bed/stool, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "fbX" = ( /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "fcg" = ( /obj/structure/surface/table/reinforced/prison, @@ -8361,9 +6685,7 @@ pixel_x = -2; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "fcA" = ( /obj/effect/landmark/yautja_teleport, @@ -8373,10 +6695,7 @@ /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "fdf" = ( /obj/structure/closet, @@ -8389,9 +6708,7 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/lz/near_lzI) "fdC" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -8404,9 +6721,7 @@ /area/fiorina/station/flight_deck) "fdR" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/station/park) "fdV" = ( /obj/structure/platform_decoration/kutjevo{ @@ -8426,10 +6741,7 @@ /area/fiorina/station/medbay) "ffA" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "ffZ" = ( /obj/structure/extinguisher_cabinet, @@ -8437,9 +6749,7 @@ /area/fiorina/station/power_ring) "fgq" = ( /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "fgM" = ( /obj/structure/platform, @@ -8447,16 +6757,11 @@ dir = 2; icon_state = "casing_5" }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) "fgN" = ( /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "fgU" = ( /obj/structure/surface/table/reinforced/prison, @@ -8468,17 +6773,12 @@ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fhB" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "fic" = ( /obj/structure/bed/sofa/south/grey/right, @@ -8488,10 +6788,7 @@ /turf/open/floor/wood, /area/fiorina/station/park) "fie" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/chapel) "fiq" = ( /turf/open/floor/plating/prison, @@ -8506,17 +6803,13 @@ /area/fiorina/station/research_cells) "fiw" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "fiG" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_7" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "fiU" = ( /turf/open/floor/plating/plating_catwalk, @@ -8533,10 +6826,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "fjg" = ( /obj/structure/machinery/light/double/blue{ @@ -8551,10 +6841,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fjr" = ( /obj/structure/reagent_dispensers/fueltank, @@ -8571,10 +6858,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_cargo) "fjX" = ( /turf/closed/shuttle/elevator{ @@ -8586,9 +6870,7 @@ /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "fkH" = ( /obj/structure/platform{ @@ -8597,16 +6879,11 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fmb" = ( /obj/item/storage/firstaid/toxin, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "fmg" = ( /obj/item/shard{ @@ -8617,10 +6894,7 @@ "fmE" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) "fmY" = ( /obj/item/device/cassette_tape/ocean, @@ -8635,10 +6909,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "fnD" = ( /turf/closed/shuttle/elevator{ @@ -8647,9 +6918,7 @@ /area/fiorina/station/telecomm/lz1_cargo) "fnY" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "fob" = ( /obj/structure/platform{ @@ -8662,10 +6931,7 @@ "fop" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "fou" = ( /obj/structure/barricade/deployable{ @@ -8682,9 +6948,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "fpn" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -8701,10 +6965,7 @@ dir = 4; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/fiorina/station/medbay) "fpB" = ( /obj/item/tool/wirecutters/clippers, @@ -8718,10 +6979,7 @@ /turf/open/floor/prison, /area/fiorina/station/transit_hub) "fqg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/central_ring) "fqh" = ( /obj/structure/machinery/light/double/blue{ @@ -8729,10 +6987,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) "fqF" = ( /obj/effect/landmark{ @@ -8744,16 +6999,11 @@ /area/fiorina/tumor/servers) "fqI" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "frc" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "frv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -8763,19 +7013,13 @@ /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "frR" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "fsk" = ( /obj/structure/machinery/space_heater, @@ -8783,9 +7027,7 @@ /area/fiorina/tumor/fiberbush) "ftb" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "ftd" = ( /obj/structure/platform{ @@ -8795,37 +7037,26 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "fth" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "ftS" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "ftU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "fun" = ( /obj/item/weapon/gun/smg/mp5, /obj/item/ammo_casing{ icon_state = "casing_6_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "fuw" = ( /obj/item/stack/cable_coil, @@ -8847,36 +7078,24 @@ pixel_y = 8 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "fuO" = ( /obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "fvr" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/park) "fvH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/oob) "fvK" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "fvL" = ( /obj/item/stack/sheet/metal, @@ -8892,9 +7111,7 @@ pixel_x = 9; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "fwn" = ( /obj/structure/lattice, @@ -8910,10 +7127,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fwY" = ( /obj/structure/barricade/metal/wired{ @@ -8935,15 +7149,11 @@ /area/fiorina/station/security) "fxt" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "fxL" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "fxS" = ( /obj/structure/surface/table/reinforced/prison, @@ -8957,10 +7167,7 @@ /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ywflowers_3" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "fyy" = ( /obj/structure/bed/chair/wood/normal{ @@ -8985,34 +7192,25 @@ /area/fiorina/station/park) "fzp" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "fzC" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/gun/shotgun/highchance, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/maintenance) "fzO" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "fAf" = ( /turf/open/floor/prison, /area/fiorina/lz/near_lzII) "fAr" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "fAt" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -9020,10 +7218,7 @@ icon_state = "fullgrass_3"; name = "Fiberbush(tm) tubers" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/aux_engi) "fAv" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -9036,9 +7231,7 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "fAI" = ( /obj/structure/surface/table/reinforced/prison, @@ -9047,18 +7240,14 @@ /area/fiorina/station/park) "fAS" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "fAU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "fAZ" = ( /obj/structure/surface/rack, @@ -9070,9 +7259,7 @@ /area/fiorina/station/chapel) "fBr" = ( /obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "fBD" = ( /obj/structure/largecrate/random/case/small, @@ -9089,19 +7276,13 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "fCr" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fCw" = ( /obj/structure/machinery/vending/snack/packaged, @@ -9110,9 +7291,7 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "fCD" = ( /obj/item/stack/sheet/metal, @@ -9125,17 +7304,11 @@ pixel_y = 12 }, /obj/item/cell/super, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "fCJ" = ( /obj/structure/girder, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "fCW" = ( /obj/structure/surface/table/reinforced/prison, @@ -9150,26 +7323,17 @@ /area/fiorina/station/power_ring) "fDb" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "fDi" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "fDE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/central_ring) "fDJ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "fDQ" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -9195,22 +7359,16 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "fEH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "fEY" = ( /obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/fiorina/station/power_ring) "fFv" = ( /obj/structure/barricade/sandbags{ @@ -9218,17 +7376,11 @@ layer = 2.97; pixel_y = -14 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "fFw" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/power_ring) "fFE" = ( /obj/item/tool/screwdriver, @@ -9238,10 +7390,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/station/park) "fGA" = ( /obj/item/explosive/grenade/high_explosive/frag, @@ -9252,9 +7401,7 @@ /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "fHb" = ( /obj/structure/monorail{ @@ -9263,17 +7410,13 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "fHo" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "fHI" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "fHK" = ( /obj/structure/ice/thin/indestructible{ @@ -9285,9 +7428,7 @@ /area/fiorina/station/research_cells) "fIn" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "fIq" = ( /obj/effect/decal/hefa_cult_decals/d32{ @@ -9303,10 +7444,7 @@ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; name = "HEFA Order milita armband" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/chapel) "fIT" = ( /obj/structure/largecrate/random/secure, @@ -9326,9 +7464,7 @@ /area/fiorina/tumor/civres) "fJV" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "fJW" = ( /obj/structure/surface/table/reinforced/prison, @@ -9340,32 +7476,21 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "fKn" = ( /obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "fKu" = ( /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "fKP" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "fKX" = ( /obj/item/storage/backpack{ @@ -9373,30 +7498,21 @@ pixel_y = 15 }, /obj/item/trash/syndi_cakes, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "fLb" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "fLu" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "fLH" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "fLS" = ( /obj/structure/bed/chair, @@ -9404,17 +7520,13 @@ /area/fiorina/station/park) "fLX" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "fLY" = ( /obj/structure/machinery/newscaster{ pixel_y = 32 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "fMc" = ( /obj/structure/platform{ @@ -9424,18 +7536,13 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "fMn" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fNA" = ( /obj/structure/stairs/perspective{ @@ -9451,17 +7558,13 @@ "fOe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) "fOg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "fOi" = ( /obj/structure/bed/chair{ @@ -9476,42 +7579,27 @@ /area/fiorina/station/central_ring) "fOC" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "fOK" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/flight_deck) "fOT" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/power_ring) "fPl" = ( /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "fPB" = ( /turf/open/space, /area/fiorina/station/medbay) "fQa" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/telecomm/lz1_tram) "fQA" = ( /obj/structure/flora/pottedplant{ @@ -9519,9 +7607,7 @@ layer = 3.5; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "fQB" = ( /obj/item/ammo_casing/shell{ @@ -9537,10 +7623,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fQV" = ( /obj/structure/platform/kutjevo/smooth{ @@ -9558,27 +7641,18 @@ pixel_y = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "fRo" = ( /obj/structure/bed/chair, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) "fRq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/security) "fSa" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "fSp" = ( /obj/effect/decal/cleanable/blood{ @@ -9588,9 +7662,7 @@ /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "fSq" = ( /obj/structure/machinery/door/airlock/almayer/marine{ @@ -9622,10 +7694,7 @@ /turf/open/floor/almayer, /area/fiorina/tumor/ship) "fTd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/fiorina/tumor/aux_engi) "fTn" = ( /obj/structure/stairs/perspective{ @@ -9649,10 +7718,7 @@ /obj/structure/barricade/plasteel{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/fiorina/tumor/ship) "fUm" = ( /obj/item/clothing/head/pirate, @@ -9678,17 +7744,13 @@ /area/fiorina/tumor/servers) "fUD" = ( /obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "fUP" = ( /obj/structure/machinery/door/window/eastright{ dir = 2 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "fUX" = ( /obj/structure/bedsheetbin, @@ -9698,10 +7760,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/fiorina/station/chapel) "fVY" = ( /obj/effect/decal{ @@ -9713,16 +7772,10 @@ /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "fWr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/fiorina/lz/near_lzII) "fWs" = ( /obj/structure/stairs/perspective{ @@ -9735,15 +7788,10 @@ /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) "fWy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/power_ring) "fWH" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "fWI" = ( /obj/structure/monorail{ @@ -9753,33 +7801,23 @@ /turf/open/space, /area/fiorina/oob) "fWV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/disco) "fXo" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "fXB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) "fXD" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "fXI" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/transit_hub) "fXL" = ( /obj/structure/disposalpipe/segment{ @@ -9794,23 +7832,15 @@ /area/fiorina/tumor/servers) "fXW" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/power_ring) "fYa" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "fYf" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "fYo" = ( /obj/structure/machinery/light/double/blue{ @@ -9828,9 +7858,7 @@ /obj/item/ammo_casing{ icon_state = "casing_6" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "fZc" = ( /obj/structure/surface/table/reinforced/prison, @@ -9838,9 +7866,7 @@ pixel_x = -4; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "fZd" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -9850,9 +7876,7 @@ /area/fiorina/lz/near_lzII) "fZe" = ( /obj/item/tool/shovel/etool, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "fZz" = ( /obj/effect/decal/cleanable/blood/drip, @@ -9871,9 +7895,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "fZW" = ( /obj/structure/surface/table/reinforced/prison, @@ -9884,14 +7906,10 @@ pixel_x = -6; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "gag" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "gaQ" = ( /obj/structure/machinery/power/apc{ @@ -9900,17 +7918,12 @@ /turf/open/floor/prison, /area/fiorina/station/security) "gbf" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "gbh" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gbk" = ( /obj/item/trash/burger, @@ -9922,27 +7935,18 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gbF" = ( /obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) "gbO" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "gbR" = ( /obj/structure/machinery/light/double/blue{ @@ -9950,9 +7954,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "gbT" = ( /obj/structure/machinery/vending/cola, @@ -9960,9 +7962,7 @@ /area/fiorina/station/medbay) "gbV" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "gcx" = ( /obj/structure/monorail{ @@ -9973,16 +7973,11 @@ /area/fiorina/station/transit_hub) "gcD" = ( /obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "gdQ" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/chapel) "gdS" = ( /obj/structure/machinery/light/double/blue{ @@ -9990,9 +7985,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "gec" = ( /obj/structure/prop/structure_lattice{ @@ -10001,9 +7994,7 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "gef" = ( /obj/structure/lattice, @@ -10016,9 +8007,7 @@ /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "geF" = ( /obj/structure/lattice, @@ -10030,10 +8019,7 @@ /area/fiorina/station/chapel) "geT" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "gfh" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -10079,9 +8065,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/pepper, /obj/item/clothing/glasses/sunglasses/sechud, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ghg" = ( /obj/structure/barricade/handrail{ @@ -10100,9 +8084,7 @@ "ghw" = ( /obj/structure/bed/chair/dropship/pilot, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "ghz" = ( /obj/structure/lz_sign/prison_sign, @@ -10113,10 +8095,7 @@ /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) "gir" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) "giw" = ( /obj/structure/platform_decoration{ @@ -10126,9 +8105,7 @@ /area/fiorina/station/transit_hub) "giA" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "giX" = ( /obj/structure/barricade/handrail/type_b{ @@ -10149,41 +8126,29 @@ /area/fiorina/lz/near_lzII) "gjz" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "gjY" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/chapel) "gkv" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "gkC" = ( /obj/structure/machinery/vending/cola, /obj/structure/prop/souto_land/streamer{ pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "gkE" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "glj" = ( /obj/structure/window/framed/prison, @@ -10201,9 +8166,7 @@ /area/fiorina/tumor/aux_engi) "gmg" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/flight_deck) "gmp" = ( /obj/structure/machinery/light/double/blue{ @@ -10211,19 +8174,14 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) "gmx" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/north, /area/fiorina/station/botany) "gmF" = ( /obj/structure/bed/sofa/vert/grey/top, @@ -10237,36 +8195,25 @@ /obj/structure/closet/secure_closet/engineering_materials, /obj/effect/spawner/random/gun/smg, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "gmT" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "gnG" = ( /obj/effect/decal/medical_decals{ icon_state = "docstripingdir" }, /obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "gnL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/rollingpin, /obj/item/reagent_container/food/snacks/grown/carrot, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "gnQ" = ( /obj/effect/spawner/random/toolbox, @@ -10277,16 +8224,10 @@ icon_state = "abed" }, /obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "goo" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/lz/near_lzII) "goG" = ( /obj/structure/window/framed/prison/reinforced, @@ -10298,9 +8239,7 @@ /area/fiorina/station/telecomm/lz1_cargo) "gpA" = ( /obj/item/trash/pistachios, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "gpG" = ( /obj/structure/window_frame/prison, @@ -10315,30 +8254,20 @@ pixel_x = 6; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) "gqM" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "gqU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper/janitor, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "grg" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "grA" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -10370,9 +8299,7 @@ "gsU" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "gsX" = ( /obj/structure/machinery/light/double/blue{ @@ -10388,9 +8315,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "gtg" = ( /obj/structure/barricade/sandbags{ @@ -10406,26 +8331,20 @@ /area/fiorina/lz/near_lzI) "gtr" = ( /obj/structure/bedsheetbin, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "gtH" = ( /obj/structure/safe, /obj/item/storage/beer_pack, /obj/item/storage/beer_pack, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "gtN" = ( /obj/item/storage/beer_pack{ pixel_y = 10 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "gtP" = ( /obj/item/trash/uscm_mre, @@ -10433,9 +8352,7 @@ /area/fiorina/station/telecomm/lz1_cargo) "gtT" = ( /obj/item/trash/eat, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "guf" = ( /obj/structure/bed/chair{ @@ -10447,20 +8364,14 @@ "guv" = ( /obj/item/packageWrap, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) "gux" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, /area/fiorina/station/disco) "guz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "guU" = ( /obj/structure/prop/structure_lattice{ @@ -10476,18 +8387,12 @@ "gve" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/servers) "gvr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "gvz" = ( /obj/structure/machinery/light/double/blue{ @@ -10508,9 +8413,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "gvZ" = ( /obj/item/stack/sheet/wood{ @@ -10518,17 +8421,12 @@ pixel_y = -3 }, /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) "gwm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "gws" = ( /turf/open/floor/plating, @@ -10558,22 +8456,15 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/lz/near_lzI) "gxQ" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "gxR" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "gyh" = ( /obj/effect/decal/medical_decals{ @@ -10584,17 +8475,11 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gyt" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "gyy" = ( /obj/structure/platform{ @@ -10604,18 +8489,13 @@ /area/fiorina/station/transit_hub) "gyA" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "gyB" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ywflowers_2" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "gyJ" = ( /obj/structure/machinery/light/double/blue{ @@ -10629,10 +8509,7 @@ /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "gzb" = ( /obj/structure/cable/heavyduty{ @@ -10646,23 +8523,16 @@ pixel_x = -11; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "gzu" = ( /obj/item/clothing/mask/cigarette/bcigarette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "gzN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/handcard/aceofspades, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "gAh" = ( /obj/structure/prop/structure_lattice{ @@ -10685,30 +8555,21 @@ /area/fiorina/tumor/ice_lab) "gAC" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gAQ" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "gBe" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "gBw" = ( /obj/item/trash/chunk, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "gBx" = ( /obj/structure/prop/structure_lattice{ @@ -10719,25 +8580,17 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "gBN" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "gBP" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "gBR" = ( /obj/structure/platform{ @@ -10751,9 +8604,7 @@ /area/fiorina/station/medbay) "gBY" = ( /obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/chapel) "gCn" = ( /obj/structure/surface/table/woodentable, @@ -10781,16 +8632,11 @@ "gCH" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gCK" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "gDx" = ( /obj/structure/surface/table/woodentable, @@ -10808,9 +8654,7 @@ /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) "gEq" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/oob) "gEx" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -10837,33 +8681,21 @@ /area/fiorina/station/lowsec) "gFp" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "gFN" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "gFW" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/fiorina/tumor/aux_engi) "gFZ" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "gGc" = ( /obj/structure/platform{ @@ -10895,9 +8727,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "gHo" = ( /obj/structure/machinery/light/double/blue{ @@ -10906,10 +8736,7 @@ pixel_y = -3 }, /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "gHy" = ( /obj/item/stack/sheet/metal/medium_stack, @@ -10936,10 +8763,7 @@ pixel_x = 15; pixel_y = 25 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "gIo" = ( /obj/structure/surface/table/reinforced/prison, @@ -10948,25 +8772,18 @@ pixel_y = 6 }, /obj/item/storage/box/cups, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "gIs" = ( /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "gIB" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/security) "gID" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/oob) "gJu" = ( /obj/effect/alien/weeds/node, @@ -10974,9 +8791,7 @@ /area/fiorina/tumor/aux_engi) "gKg" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "gKi" = ( /obj/structure/window/framed/prison, @@ -10995,10 +8810,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/chapel) "gLk" = ( /obj/item/stool, @@ -11018,17 +8830,11 @@ /area/fiorina/tumor/servers) "gLK" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/southwest, /area/fiorina/station/botany) "gLV" = ( /obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "gNx" = ( /obj/structure/platform{ @@ -11043,41 +8849,29 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomright" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gNJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "gNU" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "gNY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ppflowers_2" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "gOd" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "gOk" = ( /obj/structure/cargo_container/grant/right{ @@ -11087,9 +8881,7 @@ layer = 4; unacidable = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "gOJ" = ( /obj/structure/closet/secure_closet/medical2{ @@ -11097,16 +8889,11 @@ }, /obj/effect/spawner/random/pills, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "gOU" = ( /obj/item/bodybag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "gPk" = ( /obj/structure/barricade/metal/wired{ @@ -11116,17 +8903,12 @@ /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) "gPo" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/fiorina/tumor/civres) "gPp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "gPs" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11136,26 +8918,17 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "gPS" = ( /obj/item/stack/rods, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "gPV" = ( /obj/item/ammo_casing{ icon_state = "casing_8" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "gQc" = ( /obj/item/stack/sheet/metal, @@ -11163,10 +8936,7 @@ /area/fiorina/station/lowsec) "gQz" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gQK" = ( /obj/structure/disposalpipe/segment{ @@ -11186,22 +8956,14 @@ /area/fiorina/tumor/aux_engi) "gRf" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gRg" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "gRA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "gRT" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11228,16 +8990,12 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "gSg" = ( /obj/structure/platform, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "gSC" = ( /obj/item/prop/helmetgarb/gunoil, @@ -11245,9 +9003,7 @@ /area/fiorina/maintenance) "gSK" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "gSP" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11267,36 +9023,22 @@ "gTc" = ( /obj/item/storage/belt/shotgun/full/quackers, /obj/effect/spawner/gibspawner/human, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, +/turf/open/gm/river/darkred_pool, /area/fiorina/station/park) "gTi" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/chapel) "gTy" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) "gTN" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/fiorina/tumor/ice_lab) "gTW" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "gUj" = ( /turf/closed/shuttle/ert{ @@ -11305,10 +9047,7 @@ /area/fiorina/tumor/ship) "gUu" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "gVc" = ( /obj/structure/barricade/sandbags{ @@ -11342,17 +9081,12 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "gWg" = ( /obj/structure/powerloader_wreckage, /obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "gWq" = ( /obj/item/ammo_casing{ @@ -11379,23 +9113,15 @@ /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) "gXF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/tumor/servers) "gXI" = ( /obj/item/book/manual/atmospipes, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "gYD" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "gYH" = ( /obj/structure/closet/secure_closet/security_empty, @@ -11403,24 +9129,17 @@ dir = 8 }, /obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "gYM" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "gZc" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "4" }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/maintenance) "gZf" = ( /obj/structure/machinery/shower{ @@ -11431,9 +9150,7 @@ "gZg" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "gZx" = ( /obj/structure/surface/table/reinforced/prison, @@ -11445,29 +9162,19 @@ pixel_x = 6; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "gZG" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "gZM" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/station/park) "hae" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "hao" = ( /obj/structure/surface/table/reinforced/prison, @@ -11475,9 +9182,7 @@ pixel_y = 7 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "hay" = ( /turf/closed/shuttle/ert{ @@ -11486,24 +9191,17 @@ /area/fiorina/station/medbay) "haJ" = ( /obj/item/disk, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "haQ" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "hbn" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "hbo" = ( /obj/structure/surface/table/reinforced/prison, @@ -11545,23 +9243,17 @@ /area/fiorina/station/disco) "hbt" = ( /obj/item/tool/screwdriver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "hbH" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "hcs" = ( /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "hcv" = ( /obj/item/stack/tile/plasteel{ @@ -11579,18 +9271,13 @@ icon_state = "poster11"; pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "hcY" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "hds" = ( /obj/structure/cable/heavyduty{ @@ -11603,28 +9290,19 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "hdR" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "hej" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/maintenance) "hek" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/weapon/baton, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "heo" = ( /obj/structure/closet/crate/trashcart, @@ -11633,15 +9311,11 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "heA" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "heO" = ( /turf/closed/shuttle/elevator, @@ -11650,10 +9324,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/southeast, /area/fiorina/station/botany) "hfc" = ( /obj/structure/surface/table/reinforced/prison, @@ -11678,37 +9349,23 @@ /area/fiorina/station/flight_deck) "hgc" = ( /obj/structure/largecrate/supply/medicine/medivend, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hgh" = ( /obj/item/trash/burger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "hgA" = ( /obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "hgD" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/tumor/aux_engi) "hgP" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/station/park) "hgS" = ( /turf/closed/shuttle/ert{ @@ -11727,10 +9384,7 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/structure/surface/rack, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "hhL" = ( /obj/effect/spawner/random/powercell, @@ -11747,10 +9401,7 @@ /obj/structure/surface/rack, /obj/item/tool/plantspray/pests, /obj/item/tool/plantspray/weeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "hir" = ( /obj/structure/window/framed/prison/reinforced, @@ -11763,24 +9414,15 @@ /area/fiorina/tumor/aux_engi) "hiP" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "hjp" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "hjB" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "hjC" = ( /obj/structure/platform{ @@ -11803,9 +9445,7 @@ "hjM" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "hjR" = ( /obj/effect/landmark/monkey_spawn, @@ -11830,36 +9470,22 @@ /obj/effect/decal/medical_decals{ icon_state = "docdecal1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hkA" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/flight_deck) "hkB" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/station/telecomm/lz1_cargo) "hkH" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "hkM" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hlk" = ( /obj/structure/surface/table/reinforced/prison, @@ -11868,9 +9494,7 @@ pixel_x = -4; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "hlB" = ( /obj/item/tool/kitchen/knife, @@ -11886,16 +9510,11 @@ /area/fiorina/tumor/aux_engi) "hmq" = ( /obj/item/device/flashlight, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "hmE" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "hmS" = ( /obj/structure/monorail{ @@ -11909,17 +9528,13 @@ /area/fiorina/station/power_ring) "hnK" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "hnM" = ( /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "hob" = ( /obj/item/phone{ @@ -11928,24 +9543,17 @@ /turf/open/floor/plating/prison, /area/fiorina/oob) "hoo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/civres_blue) "hox" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "hoC" = ( /obj/item/trash/popcorn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "hoH" = ( /obj/effect/decal/cleanable/cobweb{ @@ -11970,9 +9578,7 @@ /area/fiorina/station/security) "hpn" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "hpz" = ( /obj/structure/ice/thin/indestructible{ @@ -11988,9 +9594,7 @@ /area/fiorina/station/power_ring) "hpX" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "hqb" = ( /obj/structure/stairs/perspective{ @@ -12019,16 +9623,10 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/tumor/ice_lab) "hqO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzII) "hqX" = ( /obj/structure/bed/chair{ @@ -12039,9 +9637,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "hre" = ( /obj/structure/platform_decoration{ @@ -12059,10 +9655,7 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) "hrw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/fiorina/tumor/servers) "hrz" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ @@ -12083,10 +9676,7 @@ /area/fiorina/station/disco) "hrA" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "hrB" = ( /obj/item/tool/weldingtool, @@ -12100,9 +9690,7 @@ /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "hsc" = ( /obj/structure/cable/heavyduty{ @@ -12114,26 +9702,18 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "hsl" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "hsz" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "hsC" = ( /obj/structure/surface/table/reinforced/prison, @@ -12158,18 +9738,14 @@ /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "htt" = ( /turf/closed/shuttle/ert, /area/fiorina/station/power_ring) "htD" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "htO" = ( /obj/item/ammo_casing{ @@ -12182,31 +9758,20 @@ icon_state = "metal_2" }, /obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "htT" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) "htX" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/fiorina/station/chapel) "hub" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "hul" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -12217,9 +9782,7 @@ /obj/structure/machinery/recharger{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "huD" = ( /obj/item/tool/crowbar, @@ -12227,17 +9790,13 @@ /area/fiorina/station/civres_blue) "huG" = ( /obj/item/tool/wirecutters, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "huJ" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ name = "computer" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/lowsec) "hva" = ( /obj/structure/bed/chair/office/light{ @@ -12253,25 +9812,18 @@ pixel_y = 13 }, /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "hvp" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "hvF" = ( /obj/structure/grille, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "hvL" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "hwr" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -12280,26 +9832,18 @@ pixel_x = 7; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) "hwN" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) "hwS" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "hxj" = ( /obj/structure/machinery/light/double/blue{ @@ -12308,9 +9852,7 @@ pixel_y = 13 }, /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "hxq" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -12342,9 +9884,7 @@ /turf/open/ice/noweed, /area/fiorina/station/research_cells) "hyc" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/maintenance) "hyo" = ( /obj/structure/machinery/light/double/blue{ @@ -12352,17 +9892,13 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "hyq" = ( /obj/structure/closet/crate/medical, /obj/item/tool/surgery/bonegel, /obj/item/tool/surgery/bonegel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "hys" = ( /obj/structure/grille, @@ -12386,25 +9922,17 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "hzv" = ( /obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hzF" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "hzG" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -12417,9 +9945,7 @@ /area/fiorina/station/medbay) "hzL" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/tumor/aux_engi) "hAs" = ( /obj/structure/reagent_dispensers/water_cooler{ @@ -12434,45 +9960,31 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "hAI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "hAP" = ( /obj/item/clothing/under/stowaway, /obj/structure/machinery/shower{ pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "hAX" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/fiorina/tumor/ice_lab) "hBc" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "hBf" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "hBF" = ( /obj/structure/window_frame/prison/reinforced, @@ -12490,9 +10002,7 @@ /area/fiorina/station/central_ring) "hCk" = ( /obj/item/poster, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "hCp" = ( /obj/structure/prop/invuln{ @@ -12503,39 +10013,26 @@ name = "cell door" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "hCR" = ( /obj/item/stack/sheet/wood, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "hDb" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "hDl" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hDm" = ( /obj/item/trash/burger, /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "hDS" = ( /obj/structure/platform{ @@ -12546,19 +10043,14 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "hDV" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal1" }, /obj/item/stack/cable_coil/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "hEb" = ( /turf/closed/shuttle/ert{ @@ -12566,10 +10058,7 @@ }, /area/fiorina/station/medbay) "hEk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) "hEs" = ( /obj/structure/extinguisher_cabinet, @@ -12583,9 +10072,7 @@ /turf/open/floor/prison, /area/fiorina/station/disco) "hEZ" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, +/turf/open/floor/prison/platingdmg3, /area/fiorina/station/security) "hFC" = ( /obj/item/disk, @@ -12601,10 +10088,7 @@ /area/fiorina/station/park) "hFW" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "hGg" = ( /obj/structure/sign/poster{ @@ -12612,9 +10096,7 @@ icon_state = "poster11"; pixel_x = -24 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "hGn" = ( /obj/structure/bed/sofa/vert/grey/bot, @@ -12623,10 +10105,7 @@ "hGu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hGy" = ( /obj/structure/inflatable/popped/door, @@ -12638,9 +10117,7 @@ icon_state = "abed" }, /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "hHc" = ( /obj/structure/surface/table/woodentable/fancy, @@ -12651,10 +10128,7 @@ }, /obj/effect/decal/cleanable/cobweb, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "hHq" = ( /obj/structure/closet/cabinet, @@ -12663,10 +10137,7 @@ /area/fiorina/station/civres_blue) "hHr" = ( /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "hHC" = ( /obj/structure/prop/souto_land/streamer{ @@ -12677,10 +10148,7 @@ dir = 1 }, /obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "hHH" = ( /obj/effect/decal/cleanable/blood{ @@ -12695,25 +10163,17 @@ pixel_y = 8 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "hIO" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "hIX" = ( /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/chapel) "hJo" = ( /obj/structure/sink{ @@ -12721,25 +10181,17 @@ pixel_x = -12 }, /obj/item/reagent_container/food/drinks/flask/barflask, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "hKN" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "hKP" = ( /obj/structure/platform{ dir = 4 }, /obj/item/tool/shovel/spade, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "hLz" = ( /turf/closed/wall/prison, @@ -12763,16 +10215,11 @@ /area/fiorina/station/lowsec) "hMA" = ( /obj/item/tool/crowbar, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "hMH" = ( /obj/item/newspaper, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/fiorina/lz/near_lzII) "hMK" = ( /obj/effect/landmark/nightmare{ @@ -12791,9 +10238,7 @@ pixel_x = 6; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "hNU" = ( /obj/structure/janitorialcart, @@ -12812,18 +10257,13 @@ /area/fiorina/maintenance) "hOG" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "hOQ" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "hPi" = ( /obj/structure/stairs/perspective{ @@ -12835,24 +10275,15 @@ /area/fiorina/station/park) "hPq" = ( /obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "hPu" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/power_ring) "hPL" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/fiorina/tumor/servers) "hPN" = ( /obj/item/stack/sheet/metal, @@ -12860,10 +10291,7 @@ /area/fiorina/station/security) "hPO" = ( /obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "hPY" = ( /obj/structure/surface/rack, @@ -12881,9 +10309,7 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "hQk" = ( /obj/structure/monorail{ @@ -12913,16 +10339,11 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "hQQ" = ( /obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "hQR" = ( /obj/structure/barricade/metal/wired{ @@ -12942,33 +10363,22 @@ dir = 4; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "hRs" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "hRX" = ( -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) "hSk" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "hSl" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "hSo" = ( /obj/structure/barricade/wooden{ @@ -12979,32 +10389,21 @@ icon_state = "p_stair_ew_full_cap" }, /obj/structure/platform/stair_cut/alt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) "hSA" = ( /obj/item/reagent_container/food/drinks/bottle/tomatojuice, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "hSG" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/fiberbush) "hSH" = ( /obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) "hSO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/lz/near_lzI) "hTf" = ( /obj/structure/prop/structure_lattice{ @@ -13013,18 +10412,13 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) "hTh" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "hTo" = ( /obj/item/smallDelivery, @@ -13040,10 +10434,7 @@ /area/fiorina/station/civres_blue) "hTy" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "hTM" = ( /obj/item/stack/rods, @@ -13051,9 +10442,7 @@ /area/fiorina/station/transit_hub) "hTN" = ( /obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "hUi" = ( /obj/item/stack/sheet/metal, @@ -13066,10 +10455,7 @@ /area/fiorina/station/power_ring) "hUD" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/east, /area/fiorina/station/chapel) "hUL" = ( /obj/structure/sink{ @@ -13079,16 +10465,10 @@ pixel_x = -11; pixel_y = -5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "hUO" = ( -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) "hVu" = ( /obj/item/stack/sheet/metal, @@ -13099,10 +10479,7 @@ /area/fiorina/tumor/servers) "hVA" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "hVG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -13123,9 +10500,7 @@ /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "hWi" = ( /obj/structure/machinery/door/airlock/almayer/maint/autoname{ @@ -13139,10 +10514,7 @@ "hWk" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/lz/near_lzI) "hWv" = ( /obj/structure/surface/rack, @@ -13154,9 +10526,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "hWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -13169,24 +10539,18 @@ /obj/item/device/radio{ pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "hXF" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "hXG" = ( /obj/structure/barricade/metal/wired{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "hXN" = ( /obj/structure/surface/table/reinforced/prison, @@ -13214,10 +10578,7 @@ /area/fiorina/station/medbay) "hYl" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "hYs" = ( /obj/structure/barricade/sandbags{ @@ -13237,19 +10598,14 @@ /area/fiorina/station/security) "hYX" = ( /obj/structure/machinery/bot/medbot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "hZf" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/prison, /area/fiorina/station/medbay) "hZi" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_tram) "hZG" = ( /obj/structure/machinery/light/double/blue{ @@ -13257,32 +10613,21 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "hZN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/maintenance) "hZR" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "iaa" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/disco) "iad" = ( /obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/fiorina/tumor/civres) "iaE" = ( /obj/structure/prop/structure_lattice{ @@ -13293,15 +10638,10 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "ibl" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/lz/near_lzI) "ibz" = ( /obj/structure/stairs/perspective{ @@ -13319,10 +10659,7 @@ /area/fiorina/lz/near_lzII) "icg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/tumor/ice_lab) "icu" = ( /obj/structure/surface/table/reinforced/prison, @@ -13341,9 +10678,7 @@ /area/fiorina/tumor/aux_engi) "idb" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "idi" = ( /obj/item/trash/sosjerky, @@ -13352,9 +10687,7 @@ "idj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "idP" = ( /obj/structure/platform{ @@ -13364,20 +10697,14 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "idS" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/station/central_ring) "iea" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/fiorina/station/medbay) "ieu" = ( /obj/structure/platform{ @@ -13391,9 +10718,7 @@ dir = 8; layer = 2.6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "ieA" = ( /obj/structure/barricade/handrail/type_b, @@ -13401,29 +10726,20 @@ /area/fiorina/lz/near_lzI) "ieJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "ifc" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "ifk" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "ifm" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner, /area/fiorina/tumor/civres) "ifp" = ( /obj/structure/surface/table/woodentable, @@ -13452,33 +10768,23 @@ /area/fiorina/tumor/ship) "ifL" = ( /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "ifN" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) "ifP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) "igc" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "ign" = ( /obj/structure/machinery/light/double/blue{ @@ -13486,10 +10792,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/lz/near_lzI) "igu" = ( /obj/structure/machinery/light/double/blue{ @@ -13497,10 +10800,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/east, /area/fiorina/station/botany) "igQ" = ( /obj/structure/closet/cabinet, @@ -13511,16 +10811,11 @@ /area/fiorina/station/civres_blue) "igV" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ihn" = ( /obj/item/paper/crumpled, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "ihp" = ( /obj/structure/closet/crate/science{ @@ -13538,42 +10833,29 @@ /area/fiorina/station/medbay) "ihv" = ( /obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/fiorina/tumor/servers) "ihz" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) "ihB" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ihO" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ihV" = ( /obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/oob) "iie" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/toxin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "iiw" = ( /obj/structure/monorail{ @@ -13584,18 +10866,13 @@ /area/fiorina/station/transit_hub) "iiz" = ( /obj/structure/machinery/gibber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "iiY" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "ijd" = ( /obj/item/trash/cigbutt, @@ -13607,30 +10884,20 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) "ijt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/station/park) "ijC" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/lz/near_lzI) "ika" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "ikt" = ( /obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "ikF" = ( /obj/structure/surface/table/reinforced/prison, @@ -13657,50 +10924,34 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ilM" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) "img" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "imp" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/civres_blue) "imt" = ( /turf/open/floor/almayer, /area/fiorina/tumor/ship) "imz" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "imG" = ( /obj/item/trash/chunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "imI" = ( /obj/structure/stairs/perspective{ @@ -13716,9 +10967,7 @@ /area/fiorina/tumor/servers) "ing" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "inA" = ( /obj/structure/surface/table/reinforced/prison{ @@ -13729,39 +10978,27 @@ /area/fiorina/tumor/ice_lab) "inO" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "ioc" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "iox" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "ioE" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "ioM" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/medbay) "ioS" = ( /obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ioV" = ( /obj/structure/stairs/perspective{ @@ -13771,18 +11008,13 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "ioW" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "ipa" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -13802,10 +11034,7 @@ /area/fiorina/lz/near_lzI) "ipA" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "ipM" = ( /obj/structure/surface/table/reinforced/prison, @@ -13815,17 +11044,11 @@ /obj/item/ammo_magazine/pistol/heavy{ pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ipV" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) "iqB" = ( /obj/structure/surface/table/woodentable/fancy, @@ -13850,19 +11073,14 @@ /obj/item/ammo_casing{ icon_state = "casing_5" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) "irQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "itd" = ( /obj/item/tool/lighter/random, @@ -13873,19 +11091,14 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) "itK" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, +/turf/open/floor/prison/platingdmg3, /area/fiorina/maintenance) "itN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/park) "itW" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "iuz" = ( /obj/vehicle/train/cargo/trolley, @@ -13893,18 +11106,13 @@ /area/fiorina/station/transit_hub) "iuC" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "iuN" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/tumor/servers) "iuZ" = ( /obj/item/stack/rods, @@ -13919,16 +11127,11 @@ /turf/open/space/basic, /area/fiorina/oob) "ivr" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/power_ring) "ivw" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "ivz" = ( /obj/structure/barricade/handrail/type_b{ @@ -13943,14 +11146,10 @@ pixel_x = 6; pixel_y = -2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "ivK" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/maintenance) "ivN" = ( /obj/structure/window/reinforced, @@ -13965,9 +11164,7 @@ "iwi" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "iwu" = ( /obj/item/newspaper, @@ -13975,9 +11172,7 @@ /area/fiorina/station/security) "iwy" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "iwT" = ( /obj/structure/ice/thin/indestructible{ @@ -13996,9 +11191,7 @@ dir = 2; name = "Residential Archives" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "ixl" = ( /turf/open/floor/prison, @@ -14007,16 +11200,11 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "ixK" = ( /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "iyc" = ( /obj/item/stack/rods/plasteel, @@ -14039,16 +11227,11 @@ dir = 4; pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "iys" = ( /obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "iyS" = ( /obj/structure/bed/chair/dropship/pilot{ @@ -14067,10 +11250,7 @@ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; name = "HEFA Order milita armband" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) "izh" = ( /obj/structure/platform{ @@ -14080,9 +11260,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/lowsec) "izN" = ( /obj/structure/machinery/computer/secure_data, @@ -14118,20 +11296,14 @@ /turf/open/floor/plating/prison, /area/fiorina/station/medbay) "iAB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/fiorina/station/central_ring) "iBr" = ( /turf/open/floor/prison, /area/fiorina/station/flight_deck) "iBM" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/northeast, /area/fiorina/station/botany) "iBP" = ( /turf/closed/shuttle/ert{ @@ -14142,9 +11314,7 @@ /obj/structure/closet/wardrobe/orange, /obj/item/clothing/gloves/boxing/blue, /obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "iCE" = ( /obj/structure/flora/pottedplant{ @@ -14158,9 +11328,7 @@ /area/fiorina/station/disco) "iCN" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "iCU" = ( /obj/structure/sign/nosmoking_1, @@ -14196,34 +11364,24 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "iDK" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "iDO" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "iDQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) "iEl" = ( /obj/structure/platform_decoration, @@ -14234,16 +11392,11 @@ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "iEF" = ( /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "iEG" = ( /obj/structure/sink{ @@ -14254,10 +11407,7 @@ pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "iFg" = ( /obj/structure/machinery/light/double/blue{ @@ -14265,41 +11415,29 @@ pixel_y = 21 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "iFz" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "iFB" = ( /obj/structure/toilet{ dir = 8; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "iFC" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "iFP" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "iFZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -14307,22 +11445,15 @@ /obj/item/reagent_container/food/snacks/hugemushroomslice{ pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "iGw" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "iGx" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "iGX" = ( /obj/effect/landmark/queen_spawn, @@ -14338,24 +11469,17 @@ icon_state = "sandbag_0" }, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "iHT" = ( /obj/structure/barricade/handrail/type_b{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "iHW" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/east, /area/fiorina/station/botany) "iIl" = ( /obj/structure/stairs/perspective{ @@ -14374,10 +11498,7 @@ desc = "Watch your step."; icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) "iIE" = ( /obj/structure/surface/table/reinforced/prison, @@ -14400,9 +11521,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "iIS" = ( /obj/structure/machinery/constructable_frame, @@ -14414,10 +11533,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "iJF" = ( /obj/structure/surface/table/reinforced/prison, @@ -14425,9 +11541,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "iKg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -14442,31 +11556,21 @@ pixel_x = -12 }, /obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "iKF" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "iKI" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/fiorina/station/telecomm/lz1_cargo) "iKO" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) "iLl" = ( /obj/structure/machinery/light/double/blue{ @@ -14474,9 +11578,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "iLJ" = ( /obj/effect/spawner/random/tool, @@ -14493,33 +11595,22 @@ dir = 4; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "iMN" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "iNk" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "iNt" = ( /obj/item/device/whistle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "iOa" = ( /obj/structure/machinery/floodlight/landing/floor, @@ -14528,30 +11619,20 @@ "iON" = ( /obj/structure/closet/bombcloset, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "iOX" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "iOY" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/tumor/ice_lab) "iPv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/oob) "iPx" = ( /obj/item/device/flashlight/lamp/tripod, @@ -14560,9 +11641,7 @@ "iPz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/donut_box/empty, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "iQj" = ( /obj/structure/machinery/photocopier, @@ -14571,9 +11650,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "iQz" = ( /obj/structure/stairs/perspective{ @@ -14583,9 +11660,7 @@ /area/fiorina/station/botany) "iQH" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) "iQJ" = ( /obj/structure/flora/pottedplant{ @@ -14610,10 +11685,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "iRG" = ( /obj/structure/surface/table/reinforced/prison, @@ -14626,16 +11698,10 @@ /turf/open/floor/carpet, /area/fiorina/station/civres_blue) "iRI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/fiorina/tumor/ice_lab) "iSg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "iSu" = ( /turf/closed/wall/prison{ @@ -14645,15 +11711,10 @@ /area/fiorina/station/park) "iSw" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "iSR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/oob) "iSW" = ( /obj/structure/surface/table/reinforced/prison, @@ -14662,15 +11723,10 @@ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "iTj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/security) "iTm" = ( /turf/open/auto_turf/sand/layer1, @@ -14679,9 +11735,7 @@ /obj/structure/closet/basketball, /obj/item/storage/pill_bottle/tramadol/skillless, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "iTs" = ( /obj/structure/stairs/perspective{ @@ -14694,21 +11748,13 @@ /area/fiorina/station/botany) "iTt" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "iTE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/station/flight_deck) "iTJ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/northwest, /area/fiorina/station/botany) "iTK" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -14721,28 +11767,21 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomright" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "iUc" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "iUr" = ( /obj/item/shard{ icon_state = "large"; name = "ice shard" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "iUB" = ( /obj/structure/machinery/light/double/blue{ @@ -14770,10 +11809,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/park) "iVv" = ( /obj/structure/blocker/invisible_wall, @@ -14794,19 +11830,13 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "iWp" = ( /obj/item/reagent_container/food/drinks/coffee{ name = "\improper paper cup" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) "iWq" = ( /obj/structure/platform/kutjevo/smooth{ @@ -14824,17 +11854,11 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/central_ring) "iXq" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) "iXs" = ( /obj/structure/stairs/perspective{ @@ -14848,37 +11872,25 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/civres_blue) "iXV" = ( /obj/structure/closet/l3closet/general, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "iYa" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/chapel) "iYe" = ( /obj/item/tool/wirecutters, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/power_ring) "iYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) "iYJ" = ( /obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "iYQ" = ( /obj/item/fuel_cell, @@ -14892,10 +11904,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) "jaB" = ( /obj/structure/platform/kutjevo/smooth{ @@ -14910,22 +11919,14 @@ /obj/structure/holohoop{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "jbm" = ( /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "jbq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "jbu" = ( /obj/structure/window/reinforced{ @@ -14945,9 +11946,7 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "jbU" = ( /obj/structure/surface/table/reinforced/prison, @@ -14966,10 +11965,7 @@ dir = 8; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "jcv" = ( /obj/structure/bed/chair/comfy{ @@ -14990,24 +11986,16 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "jdn" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "jew" = ( /obj/structure/largecrate/supply/ammo, /obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "jeL" = ( /obj/structure/platform{ @@ -15019,43 +12007,31 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/chapel) "jfc" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) "jfd" = ( -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/fiorina/station/park) "jfp" = ( /obj/structure/barricade/handrail, /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "jft" = ( /obj/structure/barricade/sandbags{ icon_state = "sandbag_0"; pixel_y = -14 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "jfO" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/central_ring) "jfT" = ( /obj/structure/platform{ @@ -15076,31 +12052,22 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "jgL" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "jhl" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "jhp" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "jhG" = ( /turf/closed/shuttle/ert{ @@ -15113,10 +12080,7 @@ pixel_x = 12 }, /obj/item/clothing/suit/armor/bulletproof/badge, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "jiq" = ( /obj/structure/lz_sign/prison_sign, @@ -15137,16 +12101,11 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "jiA" = ( /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "jiV" = ( /obj/structure/surface/table/reinforced/prison, @@ -15174,10 +12133,7 @@ /obj/item/storage/toolbox/emergency{ pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "jjs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -15194,10 +12150,7 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) "jjW" = ( -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "jkg" = ( /obj/structure/largecrate/supply, @@ -15205,16 +12158,12 @@ /area/fiorina/maintenance) "jkj" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "jkw" = ( /obj/structure/machinery/computer/atmos_alert, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "jkW" = ( /obj/structure/dropship_equipment/fulton_system, @@ -15234,17 +12183,12 @@ icon_state = "abed" }, /obj/item/card/id/silver/clearance_badge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "jlq" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "jls" = ( /obj/item/reagent_container/glass/bucket/janibucket, @@ -15252,10 +12196,7 @@ /area/fiorina/station/park) "jlB" = ( /obj/item/stack/nanopaste, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) "jlH" = ( /obj/structure/platform/kutjevo/smooth{ @@ -15271,18 +12212,13 @@ /obj/structure/machinery/cm_vending/sorted/marine_food{ name = "\improper Fiorina Engineering Canteen Vendor" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "jmp" = ( /obj/item/ammo_magazine/handful/shotgun/incendiary{ unacidable = 1 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/aux_engi) "jmr" = ( /obj/structure/platform{ @@ -15299,18 +12235,13 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "jmG" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) "jna" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/fiorina/station/research_cells) "jnd" = ( /obj/structure/machinery/light/double/blue{ @@ -15322,9 +12253,7 @@ /area/fiorina/lz/near_lzII) "jnm" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "jnQ" = ( /obj/structure/machinery/light/double/blue{ @@ -15332,22 +12261,14 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "jnU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "jnX" = ( /obj/item/storage/pill_bottle/spaceacillin/skillless, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "jor" = ( /obj/effect/spawner/random/attachment, @@ -15368,9 +12289,7 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "joJ" = ( /obj/structure/bed/roller, @@ -15398,17 +12317,13 @@ /obj/item/clothing/head/soft/ferret{ pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "jpx" = ( /obj/item/ammo_casing{ icon_state = "casing_8" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "jpN" = ( /obj/structure/sign/prop3{ @@ -15425,16 +12340,11 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "jpW" = ( /obj/item/reagent_container/food/drinks/cans/souto/cherry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "jqs" = ( /obj/structure/disposalpipe/segment{ @@ -15464,10 +12374,7 @@ /area/fiorina/station/disco) "jqM" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "jri" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, @@ -15476,44 +12383,30 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "jrN" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/tumor/aux_engi) "jrO" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/power_ring) "jrT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, /obj/item/clothing/accessory/holobadge/cord, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "jsf" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "jsp" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "jsu" = ( /obj/structure/surface/table/reinforced/prison{ @@ -15525,18 +12418,14 @@ pixel_x = 14; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "jsU" = ( /obj/item/stack/tile/plasteel{ pixel_x = 3; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "jta" = ( /obj/structure/bed{ @@ -15549,24 +12438,18 @@ icon_state = "pottedplant_29"; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "jtM" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "juX" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "jva" = ( /obj/structure/stairs/perspective{ @@ -15578,9 +12461,7 @@ /area/fiorina/station/disco) "jvi" = ( /obj/structure/closet/wardrobe/orange, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "jvm" = ( /obj/item/storage/surgical_tray, @@ -15589,9 +12470,7 @@ pixel_x = -4; pixel_y = 12 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "jvy" = ( /mob/living/simple_animal/hostile/carp{ @@ -15616,35 +12495,25 @@ /area/fiorina/lz/near_lzII) "jxm" = ( /obj/item/trash/hotdog, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "jyo" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/power_ring) "jyv" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "jyF" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "jyM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -15660,31 +12529,21 @@ /area/fiorina/station/central_ring) "jyY" = ( /obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) "jzN" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "jzP" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) "jAF" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "jAW" = ( /obj/structure/largecrate/supply/ammo, @@ -15697,10 +12556,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "jBv" = ( /obj/structure/bed/sofa/vert/grey/bot{ @@ -15713,10 +12569,7 @@ /turf/open/floor/wood, /area/fiorina/station/park) "jCe" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/fiorina/tumor/servers) "jCt" = ( /obj/structure/machinery/light/small{ @@ -15725,24 +12578,17 @@ pixel_y = 10 }, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "jCy" = ( /obj/structure/prop/dam/crane{ icon_state = "tractor_damaged" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) "jCA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "jCO" = ( /obj/structure/platform{ @@ -15758,10 +12604,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "jDR" = ( /obj/structure/machinery/light/double/blue{ @@ -15772,10 +12615,7 @@ /area/fiorina/tumor/aux_engi) "jEa" = ( /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/power_ring) "jEr" = ( /obj/structure/machinery/vending/snack, @@ -15783,16 +12623,11 @@ /area/fiorina/lz/near_lzII) "jEy" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "jEz" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "jEK" = ( /obj/structure/bed/chair/office/light{ @@ -15809,9 +12644,7 @@ /obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "jFh" = ( /obj/structure/stairs/perspective{ @@ -15829,19 +12662,14 @@ /area/fiorina/tumor/aux_engi) "jFz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "jFD" = ( /obj/structure/barricade/metal{ health = 250; icon_state = "metal_1" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) "jFO" = ( /obj/effect/landmark/nightmare{ @@ -15851,15 +12679,10 @@ /area/fiorina/station/park) "jFP" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "jGf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_cargo) "jGs" = ( /obj/structure/toilet{ @@ -15867,10 +12690,7 @@ pixel_y = 8 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/oob) "jGz" = ( /obj/structure/closet{ @@ -15879,35 +12699,24 @@ }, /obj/effect/spawner/random/tool, /obj/item/clothing/gloves/combat, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "jGC" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "jHj" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "jHp" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "jHz" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "jHC" = ( /obj/structure/surface/rack, @@ -15920,32 +12729,23 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "jHU" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "jHV" = ( /obj/item/paper, /obj/structure/inflatable/door, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "jIw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "jIz" = ( /obj/item/stack/sheet/metal/medium_stack, @@ -15986,27 +12786,18 @@ /area/fiorina/station/park) "jJZ" = ( /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "jKv" = ( /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "jKz" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "jKI" = ( /obj/structure/platform/kutjevo/smooth{ @@ -16037,10 +12828,7 @@ dir = 8; icon_state = "cartridge_2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/station/telecomm/lz1_cargo) "jLD" = ( /obj/structure/platform{ @@ -16049,9 +12837,7 @@ /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ layer = 3.5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "jMf" = ( /obj/item/stack/tile/plasteel{ @@ -16061,10 +12847,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) "jMh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) "jMk" = ( /obj/item/tool/screwdriver, @@ -16072,27 +12855,20 @@ /area/fiorina/tumor/servers) "jMv" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "jMH" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "jNi" = ( /obj/item/ammo_casing{ dir = 2; icon_state = "casing_5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "jNl" = ( /obj/structure/ice/thin/indestructible{ @@ -16102,10 +12878,7 @@ /turf/open/ice/noweed, /area/fiorina/station/research_cells) "jNw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/tumor/servers) "jOb" = ( /obj/structure/stairs/perspective{ @@ -16124,19 +12897,13 @@ layer = 2.5; pixel_y = -11 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "jOv" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/power_ring) "jOY" = ( /obj/structure/surface/table/reinforced/prison, @@ -16144,9 +12911,7 @@ dir = 8 }, /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "jPK" = ( /turf/closed/shuttle/elevator{ @@ -16157,38 +12922,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "jPY" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Residential Apartment" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) "jQc" = ( /obj/item/organ/lungs, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "jQs" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "jQy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "jQS" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -16196,9 +12947,7 @@ }, /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "jRf" = ( /obj/structure/girder/displaced, @@ -16228,9 +12977,7 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "jRF" = ( /obj/item/stack/sheet/metal, @@ -16245,10 +12992,7 @@ icon_state = "abed" }, /obj/item/reagent_container/food/drinks/flask/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "jSD" = ( /obj/item/storage/toolbox/mechanical, @@ -16265,33 +13009,21 @@ "jSU" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "jSZ" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "jTo" = ( /obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "jTD" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "jTJ" = ( /turf/closed/wall/r_wall/prison, @@ -16305,18 +13037,13 @@ pixel_x = -8; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "jUa" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "jUs" = ( /obj/structure/machinery/light/double/blue{ @@ -16334,26 +13061,18 @@ /area/fiorina/station/park) "jUP" = ( /obj/item/trash/c_tube, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "jVj" = ( /obj/structure/bed/chair, /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "jVt" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "jVE" = ( /obj/structure/surface/table/reinforced/prison, @@ -16370,59 +13089,41 @@ /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) "jVM" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/botany) "jWg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "jWk" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "jWy" = ( /obj/structure/barricade/handrail, /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "jWE" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; name = "Insta-Sand! bag" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "jWI" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "jWY" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "jXj" = ( /obj/item/stack/rods, @@ -16444,15 +13145,11 @@ /area/fiorina/tumor/aux_engi) "jYm" = ( /obj/structure/machinery/constructable_frame, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "jYn" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "jYs" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -16465,33 +13162,21 @@ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "jYK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "jYM" = ( /obj/item/trash/chips, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "jYU" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_tram) "jYV" = ( /obj/structure/stairs/perspective{ @@ -16514,22 +13199,13 @@ /area/fiorina/tumor/ice_lab) "jZk" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "kag" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/power_ring) "kat" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/botany) "kaw" = ( /obj/structure/stairs/perspective{ @@ -16537,17 +13213,12 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "kaF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "kaO" = ( /obj/structure/machinery/light/double/blue{ @@ -16566,9 +13237,7 @@ /area/fiorina/tumor/aux_engi) "kbh" = ( /obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "kbi" = ( /obj/item/ammo_casing{ @@ -16580,17 +13249,11 @@ /area/fiorina/station/park) "kbj" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "kbo" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) "kbt" = ( /obj/structure/janitorialcart, @@ -16611,10 +13274,7 @@ /area/fiorina/tumor/fiberbush) "kdq" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "kds" = ( /obj/item/clothing/suit/storage/hazardvest, @@ -16653,27 +13313,18 @@ /area/fiorina/station/transit_hub) "kgp" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "kgG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "kgN" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "kgQ" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "kgT" = ( /obj/structure/surface/table/reinforced/prison, @@ -16682,23 +13333,15 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "kgY" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "khd" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "khu" = ( /obj/structure/prop/structure_lattice{ @@ -16707,23 +13350,15 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "khw" = ( /obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "khY" = ( /obj/structure/closet/secure_closet/medical3, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "kid" = ( /obj/item/ammo_casing{ @@ -16733,17 +13368,11 @@ dir = 4; flipped = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "kii" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/tumor/ice_lab) "kil" = ( /obj/structure/machinery/light/double/blue, @@ -16755,15 +13384,10 @@ /area/fiorina/station/civres_blue) "kiT" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "kjt" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "kjP" = ( /obj/structure/surface/table/reinforced/prison, @@ -16775,33 +13399,23 @@ /area/fiorina/station/security/wardens) "kjT" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "kjX" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "kka" = ( /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "kke" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "kkU" = ( /obj/structure/monorail{ @@ -16819,15 +13433,11 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "klh" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "klp" = ( /turf/closed/shuttle/ert{ @@ -16837,9 +13447,7 @@ /area/fiorina/tumor/ship) "klt" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "klB" = ( /obj/structure/machinery/landinglight/ds2/delayone, @@ -16856,27 +13464,20 @@ /obj/item/storage/donut_box{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "kmm" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "kmn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "kmL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ @@ -16895,9 +13496,7 @@ /area/fiorina/station/security/wardens) "knb" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "knh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -16915,41 +13514,28 @@ /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "knY" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ indestructible = 1; name = "launch bay door" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/oob) "kob" = ( /obj/item/ammo_casing{ icon_state = "cartridge_2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "kok" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/transit_hub) "kon" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "kor" = ( /obj/structure/bed/chair{ @@ -16966,10 +13552,7 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "koK" = ( /obj/effect/decal{ @@ -16979,26 +13562,17 @@ pixel_y = -11 }, /obj/structure/closet/bombcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "koY" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "kpe" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "kpp" = ( /obj/item/trash/popcorn, @@ -17008,36 +13582,27 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) "kpq" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "kpu" = ( /obj/structure/closet/wardrobe/orange, /obj/item/explosive/mine/pmc, /obj/effect/spawner/random/gun/smg, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "kpv" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "kpH" = ( /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "kpR" = ( /obj/structure/surface/table/woodentable/fancy, @@ -17046,65 +13611,45 @@ pixel_x = 1; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) "kqy" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "kqC" = ( /turf/closed/wall/prison, /area/fiorina/station/lowsec) "kqJ" = ( /obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) "krb" = ( /obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "krn" = ( /obj/structure/barricade/handrail/type_b{ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/servers) "krE" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/flight_deck) "ksu" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "ksE" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "ksL" = ( /obj/structure/stairs/perspective{ @@ -17119,9 +13664,7 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/servers) "ksY" = ( /obj/effect/decal/cleanable/blood/oil, @@ -17129,9 +13672,7 @@ /area/fiorina/station/flight_deck) "ktq" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "ktv" = ( /obj/item/trash/sosjerky, @@ -17139,18 +13680,14 @@ /area/fiorina/station/security) "ktC" = ( /obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "kue" = ( /obj/structure/machinery/computer3/server/rack, /obj/structure/window{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "kvg" = ( /obj/structure/machinery/light/double/blue{ @@ -17158,9 +13695,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "kvh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -17173,17 +13708,12 @@ /obj/structure/barricade/handrail/type_b{ layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "kvu" = ( /obj/item/weapon/gun/rifle/m16, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "kvx" = ( /obj/effect/landmark/monkey_spawn, @@ -17196,9 +13726,7 @@ pixel_x = 7; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/chapel) "kwT" = ( /obj/structure/closet/firecloset, @@ -17213,10 +13741,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/civres_blue) "kxf" = ( /obj/item/stack/sheet/wood, @@ -17232,10 +13757,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "kxQ" = ( /obj/structure/prop/resin_prop{ @@ -17244,16 +13766,11 @@ /turf/open/floor/plating/prison, /area/fiorina/station/park) "kxU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/fiorina/station/transit_hub) "kyd" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "kyh" = ( /obj/structure/platform_decoration{ @@ -17262,10 +13779,7 @@ /turf/open/floor/prison, /area/fiorina/station/power_ring) "kyF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "kyU" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -17274,10 +13788,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "kyW" = ( /obj/item/stack/sandbags/large_stack, @@ -17301,10 +13812,7 @@ /area/fiorina/station/research_cells) "kzs" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/fiorina/tumor/civres) "kzx" = ( /obj/structure/machinery/light/double/blue{ @@ -17312,10 +13820,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/civres_blue) "kzz" = ( /obj/item/tool/shovel/etool, @@ -17323,10 +13828,7 @@ /area/fiorina/station/civres_blue) "kzB" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/fiorina/station/chapel) "kzL" = ( /obj/structure/bed/sofa/south/grey/right, @@ -17334,19 +13836,14 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "kzR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "kAc" = ( /obj/structure/surface/table/reinforced/prison, @@ -17357,10 +13854,7 @@ pixel_x = -2; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "kAO" = ( /obj/item/folder/yellow, @@ -17368,15 +13862,11 @@ /area/fiorina/tumor/servers) "kBm" = ( /obj/item/device/multitool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "kBt" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "kBE" = ( /obj/item/toy/bikehorn/rubberducky, @@ -17397,16 +13887,10 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/chapel) "kCH" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/tumor/aux_engi) "kCI" = ( /obj/item/weapon/baseballbat/metal, @@ -17418,23 +13902,15 @@ /obj/structure/barricade/handrail/type_b{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "kCS" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "kCT" = ( /obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) "kCY" = ( /obj/item/tool/weldingtool, @@ -17444,22 +13920,16 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "kDw" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/fiorina/station/telecomm/lz1_cargo) "kDN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "kEj" = ( /obj/structure/largecrate/random/barrel/blue, @@ -17471,9 +13941,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "kEy" = ( /obj/structure/bed/chair/dropship/pilot{ @@ -17495,42 +13963,27 @@ /area/fiorina/tumor/ice_lab) "kFd" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "kGc" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "kGd" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "kGo" = ( /obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "kGB" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "kGD" = ( /obj/structure/largecrate/random/mini/med, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "kGZ" = ( /obj/structure/platform{ @@ -17558,21 +14011,13 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "kHv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/power_ring) "kHF" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "kHG" = ( /obj/effect/decal/cleanable/blood/oil, @@ -17584,9 +14029,7 @@ /area/fiorina/station/disco) "kHI" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "kHS" = ( /obj/structure/barricade/sandbags{ @@ -17594,46 +14037,30 @@ layer = 2.97; pixel_y = -14 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "kHZ" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "kIb" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "kIg" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "kIh" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "kIo" = ( /obj/structure/girder, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/fiorina/tumor/ship) "kIA" = ( /obj/structure/surface/table/reinforced/prison, @@ -17647,16 +14074,11 @@ /area/fiorina/station/security) "kIO" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "kJd" = ( /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "kJf" = ( /obj/item/tool/wrench, @@ -17672,10 +14094,7 @@ icon_state = "pottedplant_22" }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "kJS" = ( /obj/structure/barricade/handrail/type_b{ @@ -17685,9 +14104,7 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/servers) "kJU" = ( /obj/item/ammo_magazine/rifle/m16{ @@ -17697,35 +14114,24 @@ /area/fiorina/station/security) "kKd" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "kKs" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/flight_deck) "kKt" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/baton, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "kKP" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "kKQ" = ( /obj/structure/platform/stair_cut/alt, @@ -17738,15 +14144,10 @@ /obj/vehicle/powerloader{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "kLz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/civres_blue) "kLI" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -17759,15 +14160,11 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "kMm" = ( /obj/structure/barricade/handrail, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "kMq" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -17775,9 +14172,7 @@ "kMC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/objective, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "kME" = ( /obj/structure/surface/table/reinforced/prison, @@ -17795,10 +14190,7 @@ layer = 2.5; pixel_y = -11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "kNk" = ( /obj/item/stack/sheet/metal/medium_stack, @@ -17807,10 +14199,7 @@ /area/fiorina/lz/near_lzI) "kNs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "kNB" = ( /obj/structure/surface/table/woodentable/fancy, @@ -17832,9 +14221,7 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/servers) "kNY" = ( /obj/structure/surface/rack, @@ -17845,16 +14232,10 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "kOB" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "kOV" = ( /obj/structure/surface/table/reinforced/prison, @@ -17863,15 +14244,11 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "kPf" = ( /obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "kPz" = ( /obj/structure/lattice, @@ -17886,10 +14263,7 @@ pixel_y = 4 }, /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "kQy" = ( /obj/item/frame/rack, @@ -17897,16 +14271,12 @@ dir = 4; layer = 3.5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "kQG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/ricepudding, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "kQH" = ( /obj/structure/stairs/perspective{ @@ -17932,23 +14302,16 @@ }, /obj/structure/surface/rack, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "kSd" = ( /obj/structure/toilet{ pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "kSe" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/disco) "kSh" = ( /turf/closed/shuttle/elevator{ @@ -17957,9 +14320,7 @@ /area/fiorina/station/telecomm/lz1_cargo) "kSB" = ( /obj/structure/closet/firecloset, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "kSD" = ( /obj/structure/monorail{ @@ -17972,18 +14333,13 @@ /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) "kTs" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/maintenance) "kTD" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/power_ring) "kTL" = ( /obj/item/stack/rods, @@ -17994,17 +14350,13 @@ /area/fiorina/station/medbay) "kTW" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "kTY" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "kUj" = ( /obj/structure/window/framed/prison, @@ -18015,17 +14367,13 @@ /obj/item/device/radio{ pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "kUR" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "kVg" = ( /obj/item/stack/cable_coil/blue, @@ -18037,15 +14385,11 @@ /area/fiorina/station/power_ring) "kVN" = ( /obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "kVW" = ( /obj/item/weapon/pole/wooden_cane, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "kWv" = ( /obj/structure/surface/table/reinforced/prison, @@ -18057,37 +14401,22 @@ pixel_x = 3; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "kWL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/lz/near_lzII) "kWS" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "kXk" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "kXm" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/heavy, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/medbay) "kXs" = ( /obj/structure/prop/structure_lattice{ @@ -18099,9 +14428,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "kXD" = ( /obj/structure/window/framed/prison, @@ -18119,26 +14446,18 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "kYi" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "handblood" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "kYz" = ( /obj/structure/closet/crate/medical, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "kYZ" = ( /obj/structure/surface/table/woodentable, @@ -18147,9 +14466,7 @@ /area/fiorina/station/civres_blue) "kZl" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "kZu" = ( /obj/structure/toilet{ @@ -18159,10 +14476,7 @@ pixel_x = 2; pixel_y = 25 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "kZy" = ( /obj/item/clothing/mask/breath, @@ -18175,19 +14489,14 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "kZV" = ( /obj/structure/bed/chair{ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "lag" = ( /obj/structure/cable/heavyduty{ @@ -18199,10 +14508,7 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "laJ" = ( /obj/structure/airlock_assembly, @@ -18210,18 +14516,13 @@ /area/fiorina/lz/near_lzI) "laK" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "laX" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "lbt" = ( /obj/structure/disposalpipe/segment{ @@ -18238,9 +14539,7 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "lbK" = ( /obj/structure/platform, @@ -18253,39 +14552,26 @@ "lbL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "lbZ" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "lcm" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "lcn" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/station/transit_hub) "lco" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "lcq" = ( /obj/structure/platform/kutjevo/smooth, @@ -18296,26 +14582,17 @@ /area/fiorina/oob) "lcE" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "lcJ" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/fiorina/tumor/ice_lab) "ldd" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/stack/rods, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) "lde" = ( /obj/structure/prop/resin_prop{ @@ -18328,45 +14605,30 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "ldz" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "ldF" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/power_ring) "ldW" = ( /obj/item/stack/sandbags, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "ldZ" = ( /obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/fiorina/station/security) "lev" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "lex" = ( /obj/structure/closet/crate, @@ -18380,17 +14642,11 @@ /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/disco) "leZ" = ( /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "lfo" = ( /obj/structure/pipes/standard/manifold/visible, @@ -18398,34 +14654,21 @@ /area/fiorina/station/medbay) "lfX" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "lge" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/civres_blue) "lgx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/park) "lgG" = ( /obj/structure/coatrack, /obj/item/clothing/suit/storage/CMB, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lgH" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/tumor/civres) "lgS" = ( /obj/structure/machinery/light/double/blue, @@ -18452,18 +14695,13 @@ /area/fiorina/station/power_ring) "lic" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "lit" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "liA" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -18491,9 +14729,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "ljV" = ( /obj/effect/landmark/corpsespawner/ua_riot, @@ -18505,10 +14741,7 @@ /turf/open/floor/prison, /area/fiorina/station/lowsec) "lkr" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/tumor/ice_lab) "lku" = ( /turf/closed/shuttle/ert{ @@ -18517,24 +14750,17 @@ /area/fiorina/oob) "lkA" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "lkM" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) "lkP" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lkQ" = ( /obj/structure/machinery/light/double/blue{ @@ -18544,10 +14770,7 @@ /turf/open/floor/prison, /area/fiorina/station/security) "lld" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/fiorina/station/security) "lls" = ( /obj/structure/barricade/handrail/type_b{ @@ -18564,9 +14787,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "llJ" = ( /obj/item/stack/rods, @@ -18574,9 +14795,7 @@ density = 0; dir = 4 }, -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, +/turf/open/floor/prison/platingdmg3, /area/fiorina/station/security) "llQ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -18604,38 +14823,28 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "lnK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/telecomm/lz1_tram) "loj" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "lou" = ( /obj/item/ammo_box/magazine/misc/flares/empty{ pixel_x = -1; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "loE" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "loP" = ( /obj/structure/machinery/optable{ @@ -18646,15 +14855,11 @@ desc = "It crinkles, aggressively."; name = "sterile wax sheet" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "lpd" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/chapel) "lpl" = ( /turf/closed/shuttle/ert{ @@ -18673,16 +14878,10 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "lpH" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/fiorina/station/chapel) "lpS" = ( /obj/structure/stairs/perspective{ @@ -18696,24 +14895,15 @@ /area/fiorina/station/disco) "lpW" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "lpX" = ( /obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "lpZ" = ( /obj/item/trash/boonie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "lqa" = ( /obj/structure/flora/pottedplant{ @@ -18725,25 +14915,16 @@ /turf/open/floor/wood, /area/fiorina/station/chapel) "lqC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/lz/near_lzI) "lqI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "lqJ" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_2" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "lqN" = ( /obj/effect/decal/cleanable/blood{ @@ -18751,16 +14932,10 @@ icon_state = "gib6" }, /obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "lri" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/station/transit_hub) "lrA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -18778,16 +14953,12 @@ pixel_x = 2; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "lrV" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lsn" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -18805,9 +14976,7 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "lsZ" = ( /obj/item/tool/soap, @@ -18818,16 +14987,11 @@ /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "ltd" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "lte" = ( /obj/structure/barricade/metal{ @@ -18835,70 +14999,44 @@ health = 85; icon_state = "metal_1" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "ltz" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "ltA" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/fiorina/tumor/aux_engi) "ltQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/security) "luf" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "lun" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "lux" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "luy" = ( /obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) "luZ" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "lvf" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "lvg" = ( /obj/item/trash/candle, @@ -18927,16 +15065,11 @@ }, /area/fiorina/tumor/aux_engi) "lvD" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "lvV" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "lwd" = ( /obj/structure/machinery/light/double/blue{ @@ -18967,35 +15100,25 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lwq" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/central_ring) "lwA" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "lxT" = ( /obj/item/ammo_casing{ dir = 8; icon_state = "casing_6" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "lyf" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -19018,10 +15141,7 @@ /area/fiorina/station/civres_blue) "lzd" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "lzm" = ( /obj/structure/surface/table/reinforced/prison, @@ -19030,9 +15150,7 @@ /area/fiorina/station/research_cells) "lzn" = ( /obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) "lzq" = ( /obj/item/tool/wet_sign, @@ -19047,26 +15165,18 @@ icon_state = "abed" }, /obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "lzB" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "lzE" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "lzJ" = ( /turf/open/floor/plating/prison, @@ -19076,25 +15186,18 @@ dir = 8; icon_state = "cartridge_2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/station/park) "lAh" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/ice_lab) "lAn" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "lAE" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "lAM" = ( /obj/structure/surface/table/reinforced/prison, @@ -19102,9 +15205,7 @@ dir = 4; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "lAN" = ( /obj/structure/machinery/light/double/blue{ @@ -19112,15 +15213,11 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "lAQ" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "lAV" = ( /obj/structure/bed/stool, @@ -19144,34 +15241,24 @@ dir = 8 }, /obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "lBI" = ( /obj/item/ammo_casing{ icon_state = "casing_5_1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "lBR" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "lBS" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "lCl" = ( /obj/structure/surface/table/reinforced/prison, @@ -19181,16 +15268,12 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "lCz" = ( /obj/structure/machinery/light/small, /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "lDo" = ( /obj/item/storage/fancy/cigar, @@ -19213,22 +15296,15 @@ /area/fiorina/station/power_ring) "lDU" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "lEd" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "lEg" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "lEk" = ( /obj/structure/surface/table/reinforced/prison, @@ -19268,9 +15344,7 @@ /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "lEL" = ( /obj/structure/bed/chair{ @@ -19278,10 +15352,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "lFc" = ( /obj/effect/decal/cleanable/blood, @@ -19290,51 +15361,35 @@ /area/fiorina/station/park) "lFg" = ( /obj/item/paper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "lFm" = ( /obj/structure/bed/roller, /obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "lFo" = ( /obj/structure/machinery/light/double/blue{ dir = 8; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "lFv" = ( /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/station/disco) "lFB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "lFD" = ( /obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "lFM" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "lFQ" = ( /obj/structure/machinery/m56d_hmg/mg_turret/dropship, @@ -19342,10 +15397,7 @@ /area/fiorina/station/central_ring) "lFV" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "lGL" = ( /obj/structure/machinery/light/double/blue{ @@ -19353,15 +15405,11 @@ pixel_x = 10; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "lHw" = ( /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/flight_deck) "lHx" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -19377,10 +15425,7 @@ /area/fiorina/station/security) "lIj" = ( /obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/tumor/servers) "lIk" = ( /obj/structure/surface/table/reinforced/prison, @@ -19394,10 +15439,7 @@ pixel_x = 5; pixel_y = 11 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "lIl" = ( /obj/structure/platform{ @@ -19409,10 +15451,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/tumor/ice_lab) "lIt" = ( /obj/structure/disposalpipe/segment{ @@ -19422,9 +15461,7 @@ name = "overhead pipe"; pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "lIv" = ( /turf/closed/shuttle/ert{ @@ -19433,9 +15470,7 @@ /area/fiorina/lz/near_lzI) "lIA" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "lIC" = ( /obj/structure/barricade/handrail/type_b{ @@ -19445,10 +15480,7 @@ dir = 4; layer = 3.25 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "lIG" = ( /obj/structure/extinguisher_cabinet, @@ -19456,10 +15488,7 @@ /area/fiorina/station/research_cells) "lIH" = ( /obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "lIJ" = ( /obj/item/stack/rods, @@ -19470,9 +15499,7 @@ layer = 2.6 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "lJx" = ( /obj/structure/surface/table/reinforced/prison, @@ -19486,16 +15513,11 @@ /obj/item/clothing/suit/storage/hazardvest, /obj/item/clothing/suit/storage/hazardvest, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "lJS" = ( /obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "lKI" = ( /obj/structure/largecrate/random/case, @@ -19506,10 +15528,7 @@ dir = 8; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/chapel) "lLe" = ( /obj/item/stack/sheet/metal, @@ -19526,9 +15545,7 @@ /obj/structure/prop/resin_prop{ icon_state = "sheater0" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "lMh" = ( /obj/structure/machinery/vending/coffee, @@ -19544,25 +15561,18 @@ icon_state = "mwo"; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "lMV" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "lNc" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lNf" = ( /obj/item/inflatable, @@ -19570,17 +15580,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "lNv" = ( /obj/item/restraint/adjustable/cable/pink, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "lNP" = ( /obj/structure/bed/roller, @@ -19592,42 +15596,29 @@ /area/fiorina/station/power_ring) "lOe" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "lOk" = ( /obj/structure/curtain, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/power_ring) "lOm" = ( /obj/structure/largecrate/random/case/small, /obj/item/bodybag/tarp/reactive{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "lOx" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "lOy" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "lPA" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -19637,53 +15628,35 @@ /obj/structure/closet/secure_closet/freezer/kitchen, /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "lQo" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/transit_hub) "lQJ" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/maintenance) "lQL" = ( /obj/structure/machinery/space_heater, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "lRk" = ( /obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/fiorina/station/security) "lRq" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/park) "lRr" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/civres_blue) "lRT" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -19693,9 +15666,7 @@ desc = "Wow, instant sand. They really have everything in space."; name = "Insta-Sand! bag" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "lSb" = ( /obj/structure/machinery/vending/snack, @@ -19710,9 +15681,7 @@ /area/fiorina/station/research_cells) "lSq" = ( /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "lSS" = ( /obj/structure/platform_decoration/kutjevo{ @@ -19725,9 +15694,7 @@ /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "lTW" = ( /obj/structure/flora/pottedplant{ @@ -19760,9 +15727,7 @@ pixel_y = 13 }, /obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "lUv" = ( /obj/structure/platform{ @@ -19780,31 +15745,21 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "lVA" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/lz/near_lzII) "lVQ" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/fiorina/station/medbay) "lWn" = ( /obj/structure/machinery/shower{ pixel_y = 13 }, /obj/item/tool/soap/nanotrasen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "lWy" = ( /obj/item/fuel_cell, @@ -19814,9 +15769,7 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "lXs" = ( /obj/item/book/manual/marine_law, @@ -19848,9 +15801,7 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "lZf" = ( /turf/closed/shuttle/elevator{ @@ -19859,10 +15810,7 @@ /area/fiorina/tumor/aux_engi) "lZm" = ( /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) "lZo" = ( /obj/structure/machinery/light/double/blue{ @@ -19870,14 +15818,10 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "lZp" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "lZs" = ( /obj/structure/disposalpipe/segment{ @@ -19902,16 +15846,11 @@ /area/fiorina/station/research_cells) "maA" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "maY" = ( /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "mbg" = ( /obj/structure/machinery/light/double/blue, @@ -19925,10 +15864,7 @@ /area/fiorina/oob) "mbz" = ( /obj/item/ammo_box/magazine/M16, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "mbC" = ( /obj/item/clipboard, @@ -19940,16 +15876,12 @@ /turf/open/floor/wood, /area/fiorina/station/park) "mcH" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/tumor/servers) "mcJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "mdd" = ( /obj/item/storage/toolbox/electrical, @@ -19963,10 +15895,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "mdD" = ( /obj/item/stool, @@ -19974,9 +15903,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "mdG" = ( /obj/structure/prop/souto_land/streamer{ @@ -19987,9 +15914,7 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "mdH" = ( /obj/structure/surface/table/reinforced/prison, @@ -19999,9 +15924,7 @@ }, /obj/item/card/id/guest, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "mdJ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -20011,10 +15934,7 @@ /turf/open/space, /area/fiorina/oob) "mdS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenbluecorner" - }, +/turf/open/floor/prison/greenbluecorner/west, /area/fiorina/station/botany) "mdY" = ( /obj/structure/machinery/light/double/blue{ @@ -20022,9 +15942,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "mei" = ( /obj/structure/surface/table/reinforced/prison, @@ -20049,9 +15967,7 @@ /area/fiorina/tumor/civres) "mfF" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "mfR" = ( /obj/structure/bed{ @@ -20065,32 +15981,23 @@ /area/fiorina/station/civres_blue) "mgh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "mgz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "mgE" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "mgO" = ( /obj/structure/window{ dir = 8 }, /obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "mho" = ( /obj/structure/machinery/light/double/blue{ @@ -20112,10 +16019,7 @@ /area/fiorina/station/flight_deck) "mhS" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/north, /area/fiorina/station/botany) "miU" = ( /obj/item/stack/sheet/metal, @@ -20125,32 +16029,21 @@ /obj/item/reagent_container/food/drinks/coffee{ name = "\improper paper cup" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/central_ring) "mju" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "mjx" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) "mjB" = ( /obj/structure/platform, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/fiorina/station/park) "mkn" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/power_ring) "mkI" = ( /obj/structure/machinery/microwave{ @@ -20163,31 +16056,21 @@ /area/fiorina/tumor/aux_engi) "mlb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/tumor/ice_lab) "mld" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "mlg" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "mlu" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "mlC" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -20201,10 +16084,7 @@ /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/gun/special, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "mmp" = ( /obj/structure/surface/table/reinforced/prison, @@ -20235,25 +16115,18 @@ /area/fiorina/tumor/fiberbush) "mns" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "mny" = ( /turf/closed/wall/prison, /area/fiorina/station/flight_deck) "mnJ" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "mnR" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "mok" = ( /obj/structure/closet/crate/bravo, @@ -20262,22 +16135,16 @@ /obj/item/fuel_cell, /obj/item/stack/sheet/plasteel, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "mom" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/fiorina/station/lowsec) "moK" = ( /obj/item/clothing/under/shorts/red, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/central_ring) "moQ" = ( /obj/structure/sink{ @@ -20285,10 +16152,7 @@ pixel_x = -12 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "moW" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, @@ -20324,23 +16188,15 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/botany) "mpN" = ( /obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/fiorina/tumor/servers) "mpR" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "mpY" = ( /obj/structure/flora/pottedplant{ @@ -20356,9 +16212,7 @@ /area/fiorina/station/medbay) "mqB" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/fiorina/station/security) "mqJ" = ( /obj/structure/barricade/metal/wired{ @@ -20369,10 +16223,7 @@ /area/fiorina/station/central_ring) "mqM" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) "mrk" = ( /obj/structure/machinery/light/double/blue{ @@ -20392,9 +16243,7 @@ /area/fiorina/station/medbay) "mrK" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "mrW" = ( /obj/item/stack/rods, @@ -20410,9 +16259,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "msj" = ( /obj/item/toy/crayon/orange, @@ -20422,10 +16269,7 @@ /obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/fiorina/tumor/ship) "msu" = ( /obj/structure/barricade/wooden{ @@ -20437,16 +16281,11 @@ "msF" = ( /obj/structure/closet/secure_closet/engineering_materials, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "msH" = ( /obj/item/tool/surgery/cautery, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "mtj" = ( /obj/structure/machinery/light/double/blue{ @@ -20461,59 +16300,41 @@ /obj/structure/machinery/microwave{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "mtG" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/station/park) "mtP" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "mue" = ( /obj/structure/closet{ density = 0; pixel_y = 18 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "muD" = ( /obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "muX" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "mvl" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) "mvp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "mvF" = ( /obj/structure/monorail{ @@ -20530,18 +16351,13 @@ dir = 4 }, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "mvY" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "mwu" = ( /obj/structure/surface/table/reinforced/prison, @@ -20555,9 +16371,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "mwK" = ( /obj/structure/surface/table/reinforced/prison, @@ -20572,18 +16386,13 @@ pixel_x = 9; pixel_y = -10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "mwP" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "mxc" = ( /obj/effect/spawner/random/tool, @@ -20596,18 +16405,12 @@ "mxm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/plantspray/pests, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "mxs" = ( /obj/item/storage/belt/marine/quackers, /obj/effect/spawner/gibspawner/human, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, +/turf/open/gm/river/darkred_pool, /area/fiorina/station/park) "mxQ" = ( /turf/closed/wall/prison, @@ -20623,9 +16426,7 @@ /area/fiorina/lz/near_lzI) "myi" = ( /obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "myj" = ( /obj/structure/largecrate/random/case/small, @@ -20637,50 +16438,33 @@ layer = 2.8 }, /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "myH" = ( /obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "myJ" = ( /obj/structure/closet/bombcloset, /obj/effect/spawner/random/gun/rifle/midchance, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/flight_deck) "myK" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "myQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/tumor/ice_lab) "mzn" = ( /obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "mzy" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "mzJ" = ( /obj/item/tool/lighter/random{ @@ -20690,9 +16474,7 @@ /turf/open/floor/prison, /area/fiorina/station/power_ring) "mzK" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/fiorina/station/medbay) "mzS" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -20709,15 +16491,10 @@ /area/fiorina/oob) "mAs" = ( /obj/item/broken_device, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "mAt" = ( -/turf/open/floor/prison{ - icon_state = "greenbluecorner" - }, +/turf/open/floor/prison/greenbluecorner, /area/fiorina/station/botany) "mAK" = ( /obj/structure/sign/poster{ @@ -20732,55 +16509,34 @@ pixel_x = 6; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "mAN" = ( /obj/item/toy/crayon/mime, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "mAS" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "mBG" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "mBJ" = ( /obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "mBZ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "mCe" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/lowsec) "mCp" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/chapel) "mCA" = ( /obj/structure/prop/resin_prop, @@ -20801,25 +16557,17 @@ layer = 2.7 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "mDn" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/fiorina/tumor/servers) "mDq" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/east, /area/fiorina/station/botany) "mDz" = ( /obj/structure/bed/chair/wood/normal{ @@ -20831,26 +16579,19 @@ /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "mDS" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "mEn" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "mEJ" = ( /obj/structure/window/reinforced{ @@ -20867,30 +16608,19 @@ /turf/open/floor/plating/prison, /area/fiorina/station/medbay) "mEU" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "mEY" = ( /obj/item/device/flashlight/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/tumor/aux_engi) "mFS" = ( /obj/structure/cargo_container/grant/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "mGf" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/civres_blue) "mGr" = ( /obj/structure/stairs/perspective{ @@ -20908,9 +16638,7 @@ /area/fiorina/lz/near_lzI) "mGX" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "mGZ" = ( /obj/item/trash/eat, @@ -20937,9 +16665,7 @@ /area/fiorina/tumor/aux_engi) "mHY" = ( /obj/item/frame/rack, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "mIf" = ( /obj/structure/stairs/perspective{ @@ -20954,9 +16680,7 @@ icon_state = "abed" }, /obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "mIu" = ( /obj/effect/spawner/random/sentry/midchance, @@ -20967,24 +16691,17 @@ /obj/structure/machinery/microwave{ pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "mJc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "mJg" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/storage/pill_bottle/inaprovaline/skillless, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "mJk" = ( /obj/structure/surface/table/reinforced/prison, @@ -21007,36 +16724,23 @@ /area/fiorina/tumor/servers) "mJH" = ( /obj/item/device/flashlight/flare/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "mKd" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) "mKo" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) "mKp" = ( /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "mKx" = ( -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) "mKS" = ( /obj/structure/platform/kutjevo/smooth{ @@ -21056,15 +16760,11 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "mLL" = ( /obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "mLP" = ( /obj/structure/surface/table/reinforced/prison, @@ -21074,36 +16774,23 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "mLY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "mMa" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) "mMh" = ( /obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "mMi" = ( /obj/item/tool/weldpack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "mMk" = ( /obj/structure/prop/resin_prop, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "mMH" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -21113,17 +16800,12 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "mMP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "mNc" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -21139,18 +16821,12 @@ /area/fiorina/station/medbay) "mNN" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "mOf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "mOm" = ( /obj/structure/platform{ @@ -21162,9 +16838,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "mOE" = ( /obj/structure/stairs/perspective{ @@ -21172,38 +16846,25 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/fiorina/station/power_ring) "mOI" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "mOU" = ( /obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "mPe" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/medbay) "mPf" = ( /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "mPg" = ( /obj/item/trash/boonie, @@ -21215,9 +16876,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "mPW" = ( /obj/structure/prop/structure_lattice{ @@ -21227,10 +16886,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) "mPX" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/station/park) "mQy" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -21239,9 +16895,7 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "mQB" = ( /obj/structure/surface/table/reinforced/prison, @@ -21253,9 +16907,7 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "mQV" = ( /obj/item/tool/stamp, @@ -21265,10 +16917,7 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "mRM" = ( /obj/structure/monorail{ @@ -21278,10 +16927,7 @@ /turf/open/space, /area/fiorina/oob) "mRS" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/fiorina/station/central_ring) "mSk" = ( /obj/structure/surface/rack, @@ -21289,17 +16935,12 @@ /area/fiorina/lz/near_lzII) "mSo" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "mSp" = ( /obj/item/clothing/under/marine/ua_riot, /obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "mSP" = ( /obj/effect/landmark/railgun_camera_pos, @@ -21307,9 +16948,7 @@ /area/fiorina/lz/near_lzI) "mSZ" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "mTa" = ( /obj/structure/ice/thin/indestructible{ @@ -21325,10 +16964,7 @@ /area/fiorina/station/research_cells) "mTl" = ( /obj/item/storage/box/gloves, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "mTs" = ( /obj/structure/barricade/wooden{ @@ -21345,10 +16981,7 @@ icon_state = "S" }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "mUA" = ( /obj/effect/decal/cleanable/blood/oil, @@ -21359,9 +16992,7 @@ dir = 4 }, /obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "mVd" = ( /obj/structure/surface/table/reinforced/prison, @@ -21388,70 +17019,48 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "mVk" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "mVn" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "mVO" = ( /obj/item/tool/extinguisher, /turf/open/floor/prison, /area/fiorina/tumor/servers) "mVY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/fiorina/station/security) "mWs" = ( /obj/structure/prop/souto_land/streamer{ dir = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "mWO" = ( /obj/effect/spawner/random/tool, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "mWR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications/simple, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "mWS" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "mWX" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "mWY" = ( /obj/item/coin/uranium{ @@ -21473,28 +17082,18 @@ }, /obj/item/weapon/gun/launcher/grenade/m81, /obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "mYl" = ( /obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "mYy" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "mYG" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ship) "mZo" = ( /obj/item/tool/shovel, @@ -21507,28 +17106,21 @@ pixel_y = 21 }, /obj/effect/spawner/random/gun/smg/lowchance, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "mZH" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/central_ring) "naf" = ( /turf/closed/shuttle/ert, /area/fiorina/oob) "naI" = ( /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "naW" = ( /turf/closed/wall/r_wall/prison, @@ -21539,16 +17131,10 @@ /area/fiorina/station/telecomm/lz2_maint) "nbP" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "ncb" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/lz/near_lzI) "ncj" = ( /obj/item/device/flashlight/lamp/tripod, @@ -21571,33 +17157,22 @@ /obj/item/reagent_container/food/snacks/cherrypie{ pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "ncs" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "ncF" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "ncY" = ( /obj/structure/bed/sofa/south/grey/right, /obj/item/storage/briefcase{ pixel_y = -2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ndl" = ( /obj/item/storage/box/cups, @@ -21607,16 +17182,11 @@ /area/fiorina/station/power_ring) "ndD" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "ndQ" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "ndZ" = ( /obj/structure/machinery/constructable_frame{ @@ -21635,19 +17205,14 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "nez" = ( /obj/item/ammo_casing{ dir = 6; icon_state = "casing_5" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "neE" = ( /obj/structure/largecrate/random/barrel/red, @@ -21658,9 +17223,7 @@ /turf/open/floor/prison, /area/fiorina/tumor/servers) "neY" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/central_ring) "nfe" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -21677,26 +17240,19 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "nfh" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "nfu" = ( /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "nfA" = ( /obj/structure/platform, @@ -21722,22 +17278,16 @@ /area/fiorina/station/civres_blue) "ngg" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "ngn" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ngF" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "nho" = ( /obj/structure/platform{ @@ -21753,10 +17303,7 @@ /obj/structure/barricade/handrail/type_b{ layer = 3.5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) "nhX" = ( /obj/structure/machinery/gibber, @@ -21764,9 +17311,7 @@ pixel_x = -6; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) "nhY" = ( /obj/structure/extinguisher_cabinet, @@ -21783,10 +17328,7 @@ /turf/open/floor/prison, /area/fiorina/station/flight_deck) "nim" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/fiorina/lz/near_lzI) "nip" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -21798,16 +17340,11 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "njg" = ( /obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "njm" = ( /obj/structure/machinery/light/double/blue{ @@ -21815,25 +17352,18 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "nju" = ( /obj/item/gift, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "njG" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "njK" = ( /obj/structure/surface/table/reinforced/prison, @@ -21851,10 +17381,7 @@ /area/fiorina/station/security) "njN" = ( /obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/fiorina/tumor/servers) "njY" = ( /obj/structure/inflatable/popped, @@ -21862,41 +17389,26 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "nkg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "nkF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/park) "nkJ" = ( /obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "nkM" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "nlw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "nlR" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -21904,63 +17416,43 @@ icon_state = "fullgrass_2"; name = "Fiberbush(tm) tubers" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "nmh" = ( /obj/structure/window{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "nmi" = ( /obj/structure/machinery/door/airlock/almayer/marine{ dir = 1; icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/research_cells) "nmm" = ( -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "nmy" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "nmK" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "nmL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "nmM" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "nmT" = ( /obj/item/toy/crayon/blue, @@ -21975,16 +17467,12 @@ "nny" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "nnC" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "nnG" = ( /obj/structure/platform{ @@ -22003,19 +17491,14 @@ /area/fiorina/station/power_ring) "noe" = ( /obj/structure/flora/grass/tallgrass/jungle, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "nor" = ( /obj/effect/decal/medical_decals{ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "noz" = ( /obj/structure/platform{ @@ -22028,9 +17511,7 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "nqL" = ( /obj/structure/surface/rack, @@ -22051,19 +17532,14 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "nre" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) "nrn" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/maintenance) "nrU" = ( /obj/item/tool/pickaxe, @@ -22074,10 +17550,7 @@ pixel_y = 10 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "nsm" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, @@ -22086,10 +17559,7 @@ health = 80 }, /obj/structure/medical_supply_link, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "nss" = ( /obj/structure/stairs/perspective{ @@ -22108,45 +17578,30 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "ntc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/fiorina/tumor/civres) "ntf" = ( /obj/item/implanter/compressed, /obj/structure/safe, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ntv" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "ntw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzI) "ntx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/disco) "ntE" = ( /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "ntH" = ( /obj/structure/ice/thin/indestructible{ @@ -22162,10 +17617,7 @@ /area/fiorina/tumor/ice_lab) "ntM" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ntZ" = ( /obj/structure/machinery/light/double/blue{ @@ -22184,30 +17636,21 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "nuo" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "nup" = ( /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "nuN" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "nuX" = ( /obj/structure/stairs/perspective{ @@ -22221,16 +17664,11 @@ /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "nvn" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/chapel) "nvs" = ( /obj/structure/platform_decoration{ @@ -22239,10 +17677,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "nvD" = ( /turf/closed/wall/r_wall/prison, @@ -22253,39 +17688,25 @@ /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "nvX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "nwv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "nwS" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) "nwT" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/tumor/aux_engi) "nxc" = ( /obj/structure/sign/poster{ icon_state = "poster18"; pixel_y = 32 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "nxl" = ( /obj/structure/machinery/light/double/blue{ @@ -22293,9 +17714,7 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "nxq" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -22313,9 +17732,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "nxY" = ( /obj/structure/sink{ @@ -22324,30 +17741,22 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "nyq" = ( /obj/structure/platform, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "nyC" = ( /obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +/turf/open/floor/prison/floorscorched2, /area/fiorina/station/security) "nyF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) "nyO" = ( /obj/structure/machinery/light/double/blue{ @@ -22372,9 +17781,7 @@ /obj/effect/decal/cleanable/blood{ pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) "nzi" = ( /obj/structure/barricade/wooden{ @@ -22384,16 +17791,11 @@ /area/fiorina/station/central_ring) "nzu" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "nzw" = ( /obj/item/clothing/head/soft/yellow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "nzI" = ( /obj/structure/largecrate/random, @@ -22416,39 +17818,25 @@ /turf/open/floor/wood, /area/fiorina/station/park) "nAm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/lz/near_lzII) "nAs" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "nAK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/north, /area/fiorina/station/lowsec) "nAV" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/power_ring) "nBb" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "nBt" = ( /obj/effect/decal/hefa_cult_decals/d32{ @@ -22460,10 +17848,7 @@ /turf/open/floor/prison, /area/fiorina/station/medbay) "nBw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/power_ring) "nCh" = ( /obj/structure/machinery/light/double/blue{ @@ -22474,10 +17859,7 @@ /turf/open/floor/prison, /area/fiorina/station/medbay) "nCm" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/lz/near_lzI) "nCt" = ( /obj/effect/decal/hefa_cult_decals/d32{ @@ -22487,30 +17869,20 @@ /area/fiorina/station/medbay) "nCH" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "nCV" = ( /obj/item/ammo_casing{ icon_state = "casing_7_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "nCX" = ( -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "nDq" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "nDr" = ( /obj/structure/machinery/door/airlock/almayer/maint/autoname{ @@ -22522,22 +17894,15 @@ /area/fiorina/station/medbay) "nDI" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "nEh" = ( /obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "nEB" = ( /obj/item/device/flashlight, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "nEI" = ( /obj/structure/machinery/deployable/barrier, @@ -22546,9 +17911,7 @@ "nEN" = ( /obj/item/clothing/glasses/material, /obj/structure/barricade/handrail, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "nEP" = ( /obj/structure/closet, @@ -22561,18 +17924,13 @@ /obj/structure/machinery/computer/communications{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "nFb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigarettes/emeraldgreen, /obj/item/tool/lighter, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "nFc" = ( /obj/item/ammo_casing{ @@ -22605,30 +17963,21 @@ /area/fiorina/station/security/wardens) "nGB" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "nGO" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "nGV" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "nGZ" = ( /turf/open/floor/prison, @@ -22636,10 +17985,7 @@ "nHm" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/fancy/cigar, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "nHZ" = ( /turf/closed/shuttle/ert{ @@ -22653,10 +17999,7 @@ pixel_x = 1; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/transit_hub) "nIc" = ( /obj/structure/disposalpipe/segment{ @@ -22679,17 +18022,13 @@ /obj/structure/prop/almayer/computers/sensor_computer1{ name = "computer" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "nJq" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "nJu" = ( /obj/item/stack/rods, @@ -22697,18 +18036,13 @@ /area/fiorina/station/transit_hub) "nJT" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "nKf" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "nKl" = ( /obj/structure/platform{ @@ -22728,16 +18062,11 @@ icon_state = "mwo"; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "nKG" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "nKX" = ( /obj/structure/barricade/metal{ @@ -22762,10 +18091,7 @@ pixel_y = -11 }, /obj/item/reagent_container/food/snacks/doughslice, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "nLV" = ( /turf/closed/shuttle/ert{ @@ -22774,22 +18100,14 @@ /area/fiorina/tumor/aux_engi) "nMg" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_tram) "nMi" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "nMm" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "nMn" = ( /obj/structure/surface/table/reinforced/prison, @@ -22797,10 +18115,7 @@ /turf/open/floor/prison, /area/fiorina/station/power_ring) "nMp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/east, /area/fiorina/station/botany) "nMz" = ( /obj/structure/stairs/perspective{ @@ -22810,10 +18125,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/central_ring) "nMI" = ( /obj/structure/machinery/light/double/blue{ @@ -22843,10 +18155,7 @@ /area/fiorina/maintenance) "nNS" = ( /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "nOe" = ( /obj/structure/barricade/handrail/type_b{ @@ -22860,16 +18169,11 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "nOi" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "nOw" = ( /obj/structure/ice/thin/indestructible{ @@ -22903,35 +18207,25 @@ pixel_y = -3 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "nQl" = ( /obj/effect/decal/medical_decals{ icon_state = "docstripingdir" }, /obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "nQq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, /area/fiorina/station/medbay) "nQu" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "nQE" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "nQF" = ( /obj/structure/largecrate/random, @@ -22942,9 +18236,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "nQJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -22952,9 +18244,7 @@ pixel_y = 32 }, /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "nRQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -22966,10 +18256,7 @@ pixel_x = -5; pixel_y = -11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "nRT" = ( /obj/structure/platform_decoration{ @@ -22980,17 +18267,11 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) "nRU" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "nSh" = ( /obj/structure/stairs/perspective{ @@ -23009,10 +18290,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/dropper, /obj/item/attachable/bipod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "nSU" = ( /obj/structure/surface/rack, @@ -23025,15 +18303,11 @@ }, /area/fiorina/tumor/ship) "nTv" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/chapel) "nTV" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "nUb" = ( /obj/item/stack/rods, @@ -23047,9 +18321,7 @@ /area/fiorina/station/park) "nUm" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "nUr" = ( /obj/structure/ice/thin/indestructible, @@ -23082,9 +18354,7 @@ /area/fiorina/maintenance) "nUS" = ( /obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "nVu" = ( /obj/structure/sink{ @@ -23092,10 +18362,7 @@ pixel_x = 12 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "nVE" = ( /obj/item/stack/tile/plasteel, @@ -23103,16 +18370,11 @@ /area/fiorina/station/disco) "nVN" = ( /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "nVR" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "nWh" = ( /obj/item/tool/wrench, @@ -23120,10 +18382,7 @@ /area/fiorina/tumor/aux_engi) "nWk" = ( /obj/effect/spawner/random/gun/smg/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "nWv" = ( /obj/item/reagent_container/food/drinks/coffee{ @@ -23144,10 +18403,7 @@ pixel_y = 13 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/maintenance) "nWC" = ( /obj/item/clothing/shoes/yellow, @@ -23155,9 +18411,7 @@ /area/fiorina/station/civres_blue) "nWM" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "nXj" = ( /obj/structure/curtain/black, @@ -23188,15 +18442,11 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "nYE" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "nYT" = ( /obj/structure/platform/kutjevo/smooth{ @@ -23213,14 +18463,10 @@ /turf/open/space/basic, /area/fiorina/oob) "nZB" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "nZI" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "nZQ" = ( /obj/structure/bed/chair/comfy{ @@ -23235,16 +18481,10 @@ layer = 2.5; pixel_y = -11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) "oaa" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "obh" = ( /obj/structure/window/framed/prison/reinforced, @@ -23254,10 +18494,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "obz" = ( /obj/structure/machinery/computer/arcade, @@ -23311,9 +18548,7 @@ /area/fiorina/station/disco) "odl" = ( /obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "ody" = ( /obj/structure/machinery/autolathe, @@ -23321,37 +18556,25 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "odC" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/tumor/civres) "odQ" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) "oer" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "oev" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "oeN" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "oeT" = ( /obj/structure/disposalpipe/segment{ @@ -23361,17 +18584,11 @@ name = "overhead pipe"; pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "oeV" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "oeY" = ( /obj/effect/spawner/random/tool, @@ -23381,10 +18598,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "ofq" = ( /turf/closed/shuttle/elevator{ @@ -23418,10 +18632,7 @@ /obj/structure/bed{ icon_state = "psychbed" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) "ogf" = ( /obj/structure/monorail{ @@ -23435,22 +18646,15 @@ /area/fiorina/tumor/fiberbush) "ohc" = ( /obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ohl" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/station/central_ring) "ohx" = ( /obj/item/tool/match, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ohF" = ( /obj/structure/platform/kutjevo/smooth, @@ -23465,17 +18669,11 @@ /area/fiorina/tumor/aux_engi) "oib" = ( /obj/item/trash/hotdog, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "oih" = ( /obj/item/paper/crumpled/bloody, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "oiF" = ( /obj/structure/filingcabinet, @@ -23484,27 +18682,18 @@ pixel_y = 21 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/servers) "oiV" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "oiX" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "ojc" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "ojj" = ( /obj/effect/decal{ @@ -23513,9 +18702,7 @@ layer = 2.5; pixel_y = -11 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "ojk" = ( /obj/structure/stairs/perspective{ @@ -23544,9 +18731,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "okg" = ( /obj/structure/barricade/handrail/type_b{ @@ -23613,9 +18798,7 @@ /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "okJ" = ( /obj/structure/machinery/shower{ @@ -23624,9 +18807,7 @@ /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "okT" = ( /obj/item/device/flashlight/lamp/tripod, @@ -23644,9 +18825,7 @@ pixel_y = 5 }, /obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "olg" = ( /obj/structure/closet/crate/delta{ @@ -23662,10 +18841,7 @@ /area/fiorina/tumor/aux_engi) "olo" = ( /obj/structure/machinery/disposal, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "oly" = ( /obj/structure/machinery/light/double/blue{ @@ -23701,15 +18877,11 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "omO" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/medbay) "onb" = ( /obj/structure/bed/chair{ @@ -23722,26 +18894,20 @@ dir = 8; pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "onh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ont" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "onB" = ( /obj/structure/closet/secure_closet/engineering_personal, @@ -23752,27 +18918,19 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "onW" = ( /obj/structure/machinery/shower{ pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "ooq" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "oou" = ( /obj/structure/closet/emcloset, @@ -23787,9 +18945,7 @@ /area/fiorina/station/medbay) "oox" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) "ooF" = ( /obj/structure/machinery/power/apc, @@ -23803,44 +18959,28 @@ /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/holywater, /obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "opj" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) "opM" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "opN" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) "opP" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) "oqG" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "orr" = ( /obj/structure/surface/table/woodentable/fancy, @@ -23850,32 +18990,21 @@ pixel_y = 13 }, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "ort" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/station/chapel) "orB" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "orC" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "orD" = ( /obj/structure/surface/table/reinforced/prison, @@ -23883,9 +19012,7 @@ name = "Lung Transplants for Dummies"; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "orV" = ( /obj/item/tool/weldingtool, @@ -23895,10 +19022,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/station/park) "osN" = ( /obj/structure/closet/bodybag, @@ -23910,10 +19034,7 @@ icon_state = "abed" }, /obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "osX" = ( /obj/structure/cable/heavyduty{ @@ -23923,31 +19044,20 @@ /area/fiorina/tumor/aux_engi) "ota" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "otg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/fiorina/tumor/servers) "oty" = ( /obj/structure/closet/bombcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "otz" = ( /obj/structure/closet/crate/medical, /obj/item/storage/fancy/vials/random, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "otC" = ( /obj/structure/bed/chair/comfy{ @@ -23956,10 +19066,7 @@ /turf/open/floor/prison, /area/fiorina/station/security/wardens) "otK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/fiorina/tumor/servers) "ouH" = ( /obj/structure/surface/table/reinforced/prison, @@ -23976,16 +19083,10 @@ /area/fiorina/station/park) "ovk" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/fiorina/tumor/ice_lab) "ovq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "ovr" = ( /obj/structure/girder/displaced, @@ -23998,10 +19099,7 @@ /obj/item/storage/bible/hefa{ pixel_y = 3 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "owd" = ( /obj/item/storage/backpack/souto, @@ -24009,9 +19107,7 @@ /area/fiorina/station/chapel) "owp" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "owS" = ( /obj/structure/machinery/light/double/blue{ @@ -24019,10 +19115,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "oxp" = ( /obj/structure/platform{ @@ -24032,15 +19125,11 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "oxv" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "oxA" = ( /turf/closed/shuttle/ert{ @@ -24049,21 +19138,14 @@ /area/fiorina/tumor/ship) "oxK" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "oxS" = ( /obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "oxU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/transit_hub) "oyd" = ( /obj/item/stack/sheet/metal, @@ -24083,19 +19165,13 @@ /area/fiorina/lz/near_lzI) "oyo" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "oyy" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "oyC" = ( /obj/structure/bed/sofa/south/grey/right, @@ -24114,30 +19190,21 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/fiorina/station/power_ring) "oyS" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison, /area/fiorina/station/disco) "oyT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "oza" = ( /obj/structure/largecrate/random/case/double, /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "ozC" = ( /obj/structure/flora/pottedplant{ @@ -24148,19 +19215,13 @@ /area/fiorina/station/security) "oAf" = ( /obj/item/trash/boonie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "oAj" = ( /obj/structure/machinery/bot/medbot{ name = "Dr. O" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "oBj" = ( /obj/effect/decal/cleanable/blood, @@ -24187,9 +19248,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "oDe" = ( /obj/effect/landmark/monkey_spawn, @@ -24207,9 +19266,7 @@ /obj/item/phone{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "oDh" = ( /obj/item/stack/rods, @@ -24221,22 +19278,14 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "oDV" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "oEi" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/civres_blue) "oEs" = ( /obj/structure/barricade/handrail/type_b{ @@ -24246,9 +19295,7 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "oEu" = ( /obj/structure/platform_decoration, @@ -24256,9 +19303,7 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "oED" = ( /obj/effect/landmark/monkey_spawn, @@ -24292,30 +19337,21 @@ /turf/open/floor/prison, /area/fiorina/lz/near_lzI) "oEQ" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/power_ring) "oEX" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "oFf" = ( /obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "oFk" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "oFp" = ( /obj/structure/barricade/metal/wired{ @@ -24325,10 +19361,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "oFI" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -24343,10 +19376,7 @@ /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "oFU" = ( /obj/structure/machinery/light/double/blue{ @@ -24354,17 +19384,11 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/east, /area/fiorina/station/botany) "oGg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "oGy" = ( /obj/structure/stairs/perspective{ @@ -24374,18 +19398,13 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "oGR" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "oGU" = ( /obj/structure/surface/table/woodentable, @@ -24399,10 +19418,7 @@ /turf/open/floor/prison, /area/fiorina/station/disco) "oHm" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/tumor/aux_engi) "oHX" = ( /obj/structure/ice/thin/indestructible{ @@ -24427,33 +19443,22 @@ "oIz" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "oIE" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "oJd" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "oJl" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "oJm" = ( /obj/item/tool/weldingtool, @@ -24463,9 +19468,7 @@ /obj/structure/window/reinforced/tinted, /obj/item/storage/briefcase, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "oJL" = ( /obj/structure/machinery/light/small{ @@ -24486,17 +19489,11 @@ flipped = 1 }, /obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "oJY" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/fiorina/tumor/civres) "oKf" = ( /obj/structure/stairs/perspective{ @@ -24515,9 +19512,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "oKq" = ( /obj/effect/landmark/objective_landmark/close, @@ -24525,22 +19520,16 @@ /area/fiorina/tumor/civres) "oKV" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "oLF" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "oLK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/objective, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "oLV" = ( /obj/structure/largecrate/random/secure, @@ -24549,15 +19538,11 @@ "oLX" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) "oMf" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "oMu" = ( /obj/effect/landmark/survivor_spawner, @@ -24574,33 +19559,23 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "oNu" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "oNx" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "oNC" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "oOg" = ( /obj/structure/barricade/handrail/type_b{ @@ -24610,9 +19585,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "oOh" = ( /obj/structure/surface/table/reinforced/prison, @@ -24623,16 +19596,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "oOi" = ( /obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) "oOk" = ( /obj/structure/platform, @@ -24640,9 +19608,7 @@ dir = 1; layer = 2.7 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "oOp" = ( /obj/structure/machinery/power/smes/buildable{ @@ -24653,9 +19619,7 @@ /area/fiorina/tumor/aux_engi) "oOw" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "oOU" = ( /obj/structure/reagent_dispensers/water_cooler{ @@ -24663,9 +19627,7 @@ pixel_x = -8; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "oOV" = ( /obj/structure/machinery/filtration/console{ @@ -24675,19 +19637,14 @@ /area/fiorina/tumor/ship) "oPn" = ( /obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "oPN" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "oPR" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "oPU" = ( /turf/open/floor/prison, @@ -24698,10 +19655,7 @@ /area/fiorina/station/park) "oQk" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "oQI" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -24717,16 +19671,10 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "oRg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "oRR" = ( /obj/structure/surface/table/reinforced/prison, @@ -24734,19 +19682,13 @@ /area/fiorina/station/park) "oSn" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) "oSz" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "oTa" = ( /obj/structure/surface/table/reinforced/prison, @@ -24755,15 +19697,10 @@ pixel_y = 8 }, /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "oTi" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "oTy" = ( /obj/structure/prop/structure_lattice{ @@ -24773,9 +19710,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "oTz" = ( /obj/structure/barricade/handrail/type_b{ @@ -24785,15 +19720,10 @@ dir = 4; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "oTP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_tram) "oTS" = ( /obj/structure/stairs/perspective{ @@ -24823,22 +19753,14 @@ /area/fiorina/oob) "oVk" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "oWw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/station/park) "oWC" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "oWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -24849,47 +19771,31 @@ dir = 6; icon_state = "casing_10_1" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "oWY" = ( /obj/structure/largecrate/random, /obj/item/reagent_container/food/drinks/coffee{ pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) "oXb" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "oXg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "oXk" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "oXD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "oXI" = ( /obj/structure/platform{ @@ -24898,10 +19804,7 @@ /obj/effect/decal/medical_decals{ icon_state = "docdecal1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "oXR" = ( /obj/structure/ice/thin/indestructible{ @@ -24934,10 +19837,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/chapel) "oYW" = ( /obj/structure/machinery/light/double/blue{ @@ -24945,17 +19845,12 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "oZf" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "oZi" = ( /obj/item/clothing/under/color/orange, @@ -24963,15 +19858,10 @@ /area/fiorina/station/security) "oZj" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "oZk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/fiorina/tumor/ice_lab) "oZx" = ( /obj/item/trash/used_stasis_bag{ @@ -24999,16 +19889,11 @@ "oZS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "oZU" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "pab" = ( /obj/item/tool/weldpack{ @@ -25024,9 +19909,7 @@ /obj/effect/decal/medical_decals{ icon_state = "docdecal1" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "pah" = ( /obj/structure/platform{ @@ -25039,15 +19922,11 @@ desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; name = "\improper Fiorina Green Block Canteen Vendor" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "paF" = ( /obj/item/tool/shovel/etool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "paI" = ( /obj/structure/monorail{ @@ -25060,15 +19939,11 @@ /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "pbp" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) "pbv" = ( /obj/structure/prop/structure_lattice{ @@ -25079,9 +19954,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "pbV" = ( /obj/structure/platform/kutjevo/smooth{ @@ -25098,9 +19971,7 @@ /turf/open/space, /area/fiorina/oob) "pbX" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, +/turf/open/floor/prison/red, /area/fiorina/station/security) "pca" = ( /obj/structure/stairs/perspective{ @@ -25121,9 +19992,7 @@ "pcN" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "pdB" = ( /obj/structure/machinery/light/double/blue{ @@ -25138,9 +20007,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "pdP" = ( /obj/structure/largecrate/random/case/double, @@ -25150,16 +20017,11 @@ /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_1" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "pen" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/transit_hub) "peA" = ( /obj/structure/machinery/computer/communications{ @@ -25167,38 +20029,26 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/servers) "peP" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "pgb" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) "pgx" = ( /obj/structure/machinery/computer3/server/rack, /obj/structure/window{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "pgQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/chapel) "phe" = ( /obj/structure/girder, @@ -25206,34 +20056,24 @@ /area/fiorina/maintenance) "pho" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "phz" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) "phC" = ( /obj/item/newspaper, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "phQ" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "pim" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/lowsec) "piw" = ( /obj/structure/platform{ @@ -25250,15 +20090,10 @@ "pjf" = ( /obj/item/ammo_magazine/rifle/m16, /obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "pjg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/prison/green/northwest, /area/fiorina/tumor/servers) "pjE" = ( /obj/structure/filingcabinet/filingcabinet{ @@ -25268,10 +20103,7 @@ pixel_x = -8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "pjR" = ( /obj/structure/surface/table/reinforced/prison, @@ -25286,9 +20118,7 @@ pixel_x = -3; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "pjT" = ( /obj/structure/surface/table/reinforced/prison, @@ -25297,27 +20127,18 @@ /area/fiorina/station/power_ring) "pjW" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "pkB" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/lz/near_lzI) "pkM" = ( /obj/structure/largecrate/machine, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) "plh" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/southwest, /area/fiorina/station/botany) "plu" = ( /obj/item/device/flashlight/lamp/tripod, @@ -25334,10 +20155,7 @@ /obj/structure/surface/rack, /obj/item/poster, /obj/item/poster, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "pmv" = ( /obj/structure/disposalpipe/segment{ @@ -25348,25 +20166,17 @@ pixel_x = -16; pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "pmC" = ( /obj/effect/decal{ icon = 'icons/obj/items/policetape.dmi'; icon_state = "engineering_v" }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "pnh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) "pnx" = ( /obj/effect/landmark/xeno_spawn, @@ -25374,9 +20184,7 @@ /area/fiorina/tumor/aux_engi) "pnP" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "pnS" = ( /obj/structure/surface/table/reinforced/prison, @@ -25384,9 +20192,7 @@ /area/fiorina/tumor/servers) "poC" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "ppq" = ( /obj/structure/surface/table/reinforced/prison, @@ -25394,9 +20200,7 @@ icon_state = "pottedplant_29"; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ppG" = ( /obj/item/stack/rods/plasteel, @@ -25414,32 +20218,22 @@ /area/fiorina/station/transit_hub) "ppS" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/transit_hub) "ppX" = ( /obj/structure/closet/secure_closet/medical2{ req_access_txt = "100" }, /obj/item/alienjar, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "ppZ" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "pqz" = ( /obj/item/clothing/suit/storage/labcoat, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "pqC" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -25459,16 +20253,11 @@ /area/fiorina/lz/near_lzI) "prh" = ( /obj/structure/girder/reinforced, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/fiorina/tumor/ship) "prC" = ( /obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "prG" = ( /obj/structure/platform{ @@ -25485,10 +20274,7 @@ pixel_x = -1; pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/power_ring) "pse" = ( /obj/item/weapon/gun/rifle/m16, @@ -25496,10 +20282,7 @@ dir = 6; icon_state = "casing_5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "psm" = ( /obj/effect/decal/cleanable/blood, @@ -25509,16 +20292,11 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "psx" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/botany) "psL" = ( /obj/structure/machinery/optable{ @@ -25533,19 +20311,14 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "psP" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "pte" = ( /obj/structure/extinguisher_cabinet, @@ -25553,9 +20326,7 @@ /area/fiorina/station/power_ring) "pti" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "ptH" = ( /obj/structure/surface/table/reinforced/prison, @@ -25564,9 +20335,7 @@ pixel_x = 11 }, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "puw" = ( /obj/effect/decal/cleanable/blood/drip, @@ -25580,10 +20349,7 @@ /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) "pvz" = ( /obj/structure/janitorialcart, @@ -25591,10 +20357,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "pvD" = ( /turf/closed/wall/r_wall/prison_unmeltable{ @@ -25604,29 +20367,20 @@ /area/fiorina/oob) "pvE" = ( /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "pvF" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/fiorina/tumor/ice_lab) "pwo" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/flight_deck) "pwC" = ( /obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/fiorina/station/security) "pwL" = ( /obj/item/stack/tile/plasteel{ @@ -25637,9 +20391,7 @@ /area/fiorina/tumor/civres) "pxf" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "pxk" = ( /obj/structure/closet/cabinet, @@ -25653,71 +20405,46 @@ /obj/item/storage/donut_box{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "pxL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/maintenance) "pxW" = ( /obj/structure/platform_decoration{ dir = 1 }, /obj/item/tool/pickaxe, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "pxX" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "pyK" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "pzh" = ( /obj/item/toy/beach_ball, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) "pzE" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "pzL" = ( /obj/item/ammo_magazine/m56d, /obj/item/ammo_magazine/m56d, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/central_ring) "pAl" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "pAr" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "pBb" = ( /obj/structure/curtain/open/black, @@ -25725,10 +20452,7 @@ /area/fiorina/maintenance) "pBe" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/fiorina/station/chapel) "pBq" = ( /obj/structure/largecrate/random/barrel/white, @@ -25739,9 +20463,7 @@ health = 250; icon_state = "metal_1" }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "pBV" = ( /obj/item/trash/used_stasis_bag{ @@ -25752,10 +20474,7 @@ /area/fiorina/lz/near_lzII) "pBW" = ( /obj/structure/largecrate/supply/floodlights, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "pCc" = ( /obj/structure/ice/thin/indestructible{ @@ -25789,9 +20508,7 @@ pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "pCX" = ( /obj/item/stack/sheet/metal, @@ -25801,28 +20518,18 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "pDQ" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "pEt" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/maintenance) "pFc" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "pFi" = ( /obj/structure/platform_decoration{ @@ -25832,10 +20539,7 @@ /area/fiorina/station/telecomm/lz1_tram) "pFA" = ( /obj/item/storage/toolbox/emergency, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "pFP" = ( /obj/structure/ice/thin/indestructible{ @@ -25873,18 +20577,14 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/fiorina/station/park) "pGS" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "pHh" = ( /obj/structure/ice/thin/indestructible{ @@ -25903,18 +20603,14 @@ dir = 4 }, /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "pHx" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "pIs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -25924,9 +20620,7 @@ dir = 8; layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "pIt" = ( /obj/structure/barricade/handrail/type_b{ @@ -25937,9 +20631,7 @@ /area/fiorina/station/park) "pIw" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "pIA" = ( /obj/structure/prop/structure_lattice{ @@ -25961,9 +20653,7 @@ /turf/open/floor/plating/prison, /area/fiorina/maintenance) "pJP" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/station/chapel) "pKf" = ( /obj/structure/machinery/washing_machine, @@ -25974,15 +20664,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "pKu" = ( /obj/item/tool/wet_sign, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "pKJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, @@ -25993,17 +20679,13 @@ layer = 2.9; pixel_y = 17 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "pKO" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "pKY" = ( /obj/structure/cable/heavyduty{ @@ -26024,16 +20706,11 @@ /obj/structure/machinery/washing_machine{ pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "pLM" = ( /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "pLQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -26041,10 +20718,7 @@ /area/fiorina/station/transit_hub) "pLS" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/fiorina/tumor/aux_engi) "pNj" = ( /obj/structure/bookcase, @@ -26083,10 +20757,7 @@ /area/fiorina/tumor/ice_lab) "pPo" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "pPG" = ( /obj/structure/disposalpipe/segment{ @@ -26101,51 +20772,34 @@ "pQc" = ( /obj/structure/closet/basketball, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "pQs" = ( /turf/open/floor/prison, /area/fiorina/station/civres_blue) "pQz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/civres_blue) "pRa" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "pRp" = ( /obj/structure/platform, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "pRx" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, /area/fiorina/station/power_ring) "pRz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/prison/red/southwest, /area/fiorina/station/power_ring) "pRD" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) "pRG" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -26157,10 +20811,7 @@ /area/fiorina/tumor/fiberbush) "pSr" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "pSs" = ( /obj/item/ammo_box/magazine/misc/flares{ @@ -26168,10 +20819,7 @@ pixel_y = 16 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "pSU" = ( /obj/structure/surface/table/woodentable/fancy, @@ -26198,32 +20846,22 @@ pixel_y = -1 }, /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "pUo" = ( /obj/structure/platform, /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "pUG" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "pUO" = ( /obj/item/trash/boonie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "pVc" = ( /obj/structure/flora/pottedplant{ @@ -26236,17 +20874,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "pVD" = ( /obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "pVR" = ( /obj/structure/surface/table/woodentable/fancy, @@ -26258,16 +20890,11 @@ /area/fiorina/station/chapel) "pVY" = ( /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "pWc" = ( /obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "pWp" = ( /turf/closed/shuttle/ert{ @@ -26286,17 +20913,11 @@ icon_state = "casing_5" }, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "pXt" = ( /obj/item/reagent_container/food/snacks/wrapped/booniebars, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "pXH" = ( /obj/item/device/flashlight/lamp/tripod, @@ -26309,10 +20930,7 @@ layer = 2.5; pixel_y = -11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "pXY" = ( /obj/structure/bookcase{ @@ -26328,14 +20946,10 @@ /area/fiorina/station/chapel) "pYz" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "pYB" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "pYD" = ( /obj/structure/monorail{ @@ -26349,9 +20963,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "pZm" = ( /obj/structure/machinery/light/small{ @@ -26368,32 +20980,22 @@ /turf/open/floor/plating/prison, /area/fiorina/oob) "pZn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/fiorina/station/lowsec) "pZp" = ( /obj/item/tool/soap, /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "qaA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "qaL" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "qaO" = ( /obj/structure/barricade/handrail/type_b{ @@ -26410,9 +21012,7 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "qbd" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -26429,9 +21029,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/maintenance) "qby" = ( /obj/item/stack/sheet/metal{ @@ -26447,9 +21045,7 @@ /turf/open/floor/prison, /area/fiorina/station/security) "qbR" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "qbW" = ( /obj/item/tool/candle{ @@ -26469,16 +21065,11 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "qcX" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "qdd" = ( /obj/structure/grille, @@ -26502,9 +21093,7 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "qdJ" = ( /obj/structure/window/framed/prison/reinforced, @@ -26515,16 +21104,11 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_tram) "qet" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "qeC" = ( /obj/structure/surface/table/reinforced/prison, @@ -26554,10 +21138,7 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/park) "qeX" = ( /obj/structure/surface/table/reinforced/prison{ @@ -26583,9 +21164,7 @@ "qfi" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/telecomm/lz1_cargo) "qgd" = ( /obj/item/explosive/grenade/incendiary/molotov{ @@ -26608,10 +21187,7 @@ /obj/structure/barricade/metal/wired{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "qgv" = ( /obj/structure/surface/table/reinforced/prison, @@ -26622,9 +21198,7 @@ /obj/item/tool/surgery/circular_saw{ pixel_y = -2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "qgB" = ( /obj/item/clothing/gloves/rainbow, @@ -26635,64 +21209,43 @@ /turf/open/space, /area/fiorina/oob) "qhk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/station/park) "qhC" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "qhD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/fiorina/station/power_ring) "qhJ" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/fiorina/station/power_ring) "qhN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/fiorina/station/security) "qhP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper, /obj/item/attachable/bipod, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "qhZ" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, +/turf/open/floor/prison/platingdmg3, /area/fiorina/station/transit_hub) "qif" = ( /obj/item/inflatable, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "qiq" = ( /obj/item/trash/cigbutt, @@ -26705,34 +21258,24 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "qjb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "qjh" = ( /obj/item/reagent_container/food/snacks/boiledegg, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "qjM" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "qjR" = ( /obj/structure/machinery/computer/station_alert{ @@ -26740,19 +21283,14 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "qjX" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/north, /area/fiorina/station/botany) "qkg" = ( /obj/structure/machinery/light/double/blue, @@ -26764,17 +21302,11 @@ /turf/open/floor/plating/prison, /area/fiorina/maintenance) "qkq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/oob) "qkt" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "qkN" = ( /obj/structure/surface/table/reinforced/prison, @@ -26806,45 +21338,30 @@ /area/fiorina/oob) "qnb" = ( /obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "qny" = ( /obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "qob" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) "qoc" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "qof" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/station/disco) "qov" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "qoG" = ( /obj/item/toy/crayon/rainbow, @@ -26856,15 +21373,10 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) "qpk" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/civres_blue) "qpB" = ( /obj/item/stack/cable_coil/blue, @@ -26887,26 +21399,18 @@ pixel_x = -6; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "qpX" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "qqc" = ( /obj/structure/inflatable/popped, /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "qqd" = ( /obj/structure/stairs/perspective{ @@ -26919,42 +21423,26 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "qqQ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/fiorina/station/transit_hub) "qqW" = ( /obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "qre" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "qrn" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "qrt" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "qrz" = ( /obj/item/explosive/plastic, @@ -26965,15 +21453,11 @@ /obj/item/reagent_container/food/snacks/sandwich{ pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "qrU" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "qsc" = ( /obj/structure/machinery/light/double/blue, @@ -26989,9 +21473,7 @@ /area/fiorina/maintenance) "qss" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "qsE" = ( /obj/item/shard{ @@ -27001,16 +21483,10 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "qsF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) "qtP" = ( /obj/structure/surface/table/reinforced/prison, @@ -27022,10 +21498,7 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "qun" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -27034,15 +21507,11 @@ /obj/structure/barricade/handrail/type_b{ layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "quL" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "qva" = ( /obj/structure/surface/table/reinforced/prison, @@ -27056,50 +21525,31 @@ /obj/structure/prop/resin_prop{ icon_state = "rack" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "qws" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "bee" }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) "qwG" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/maintenance) "qwH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/lowsec) "qwK" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +/turf/open/floor/prison/floorscorched2, /area/fiorina/station/civres_blue) "qxx" = ( /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "qxy" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) "qxN" = ( /obj/structure/barricade/sandbags{ @@ -27110,10 +21560,7 @@ /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) "qxP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/tumor/aux_engi) "qxZ" = ( /obj/structure/machinery/light/double/blue{ @@ -27121,9 +21568,7 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "qya" = ( /obj/structure/closet{ @@ -27132,10 +21577,7 @@ }, /obj/item/clothing/gloves/combat, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "qyq" = ( /obj/structure/closet/secure_closet/engineering_personal, @@ -27144,15 +21586,10 @@ pixel_y = 21 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "qyM" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/disco) "qzb" = ( /obj/structure/stairs/perspective{ @@ -27170,9 +21607,7 @@ /area/fiorina/station/security) "qzM" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "qzZ" = ( /obj/structure/barricade/sandbags{ @@ -27180,55 +21615,37 @@ icon_state = "sandbag_0"; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "qAe" = ( /obj/item/trash/eat, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "qAk" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "qAl" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "qAQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/tumor/aux_engi) "qBe" = ( /turf/open/floor/prison, /area/fiorina/station/disco) "qBf" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/central_ring) "qBj" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/item/storage/briefcase, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "qBB" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -27249,9 +21666,7 @@ "qBI" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "qBT" = ( /obj/structure/sink{ @@ -27259,10 +21674,7 @@ pixel_x = 12 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "qCa" = ( /obj/structure/prop/resin_prop{ @@ -27282,15 +21694,11 @@ pixel_x = -5; pixel_y = -11 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "qCx" = ( /obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "qCE" = ( /obj/structure/machinery/computer/emails{ @@ -27298,16 +21706,10 @@ pixel_y = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "qCK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/lowsec) "qCW" = ( /turf/closed/shuttle/elevator{ @@ -27320,10 +21722,7 @@ icon_state = "poster15"; pixel_y = 32 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) "qDq" = ( /obj/structure/machinery/light/double/blue{ @@ -27331,16 +21730,11 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) "qDZ" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "qEk" = ( /obj/structure/bed/sofa/south/grey/left, @@ -27348,34 +21742,22 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "qEl" = ( /obj/structure/closet/bodybag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "qEs" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/fiorina/station/lowsec) "qEC" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "qFf" = ( /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "qFi" = ( /obj/structure/machinery/light/small{ @@ -27409,37 +21791,24 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "qGe" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "qGf" = ( /obj/item/tool/scythe, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "qGh" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "qGn" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) "qGy" = ( /obj/structure/reagent_dispensers/watertank, @@ -27447,18 +21816,12 @@ /area/fiorina/tumor/servers) "qGB" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/fiorina/station/research_cells) "qGO" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "qGP" = ( /obj/effect/spawner/random/tool, @@ -27492,9 +21855,7 @@ desc = "A ticket to Souto Man's raffle!"; name = "\improper Souto Raffle Ticket" }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/chapel) "qJf" = ( /obj/structure/surface/table/reinforced/prison, @@ -27527,10 +21888,7 @@ /obj/structure/bedsheetbin{ icon_state = "linenbin-empty" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "qJr" = ( /turf/open/floor/prison, @@ -27545,15 +21903,11 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "qJK" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "qJL" = ( /obj/structure/bed/chair/comfy{ @@ -27568,9 +21922,7 @@ /area/fiorina/station/park) "qJP" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "qJQ" = ( /obj/structure/barricade/metal/wired{ @@ -27580,9 +21932,7 @@ /area/fiorina/station/central_ring) "qJR" = ( /obj/item/disk/data, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "qKq" = ( /obj/structure/machinery/computer/arcade, @@ -27609,20 +21959,14 @@ /area/fiorina/lz/near_lzII) "qLa" = ( /obj/item/weapon/baseballbat/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) "qLi" = ( /obj/structure/toilet{ dir = 8; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) "qLv" = ( /obj/structure/platform_decoration, @@ -27630,9 +21974,7 @@ /area/fiorina/station/transit_hub) "qLH" = ( /obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "qLI" = ( /obj/item/storage/toolbox, @@ -27641,36 +21983,25 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "qLN" = ( /obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "qMi" = ( /obj/structure/platform{ dir = 8 }, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "qMs" = ( /obj/item/stack/cable_coil/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "qMI" = ( -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/fiorina/station/security) "qNj" = ( /obj/structure/platform, @@ -27681,10 +22012,7 @@ dir = 10 }, /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "qNu" = ( /obj/structure/closet/secure_closet/security_empty, @@ -27692,9 +22020,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "qNv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -27709,16 +22035,10 @@ pixel_y = 22 }, /obj/item/reagent_container/food/snacks/cheesyfries, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "qNF" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) "qOk" = ( /obj/structure/platform/kutjevo/smooth{ @@ -27731,9 +22051,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "qOu" = ( -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/fiorina/station/disco) "qON" = ( /obj/item/stack/cable_coil/cyan, @@ -27753,16 +22071,10 @@ /area/fiorina/station/park) "qPa" = ( /obj/item/device/motiondetector, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "qPb" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "qPr" = ( /obj/item/ammo_magazine/smg/nailgun, @@ -27775,15 +22087,10 @@ pixel_x = -10; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "qQa" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/station/central_ring) "qQb" = ( /obj/structure/stairs/perspective{ @@ -27821,19 +22128,14 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/power_ring) "qQA" = ( /obj/item/reagent_container/food/drinks/bottle/holywater{ desc = "A flask of the holy HEFA grenade oil."; name = "Flask of HEFA Oil" }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "qQM" = ( /obj/structure/stairs/perspective{ @@ -27854,10 +22156,7 @@ icon_state = "abed" }, /obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "qRg" = ( /obj/structure/sign/prop3{ @@ -27878,16 +22177,11 @@ /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "qRK" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/fiorina/station/central_ring) "qRS" = ( /obj/item/trash/candy, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "qRW" = ( /obj/structure/stairs/perspective{ @@ -27909,16 +22203,11 @@ "qSz" = ( /obj/structure/closet/wardrobe/orange, /obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "qSA" = ( /obj/item/trash/candy, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "qTe" = ( /obj/structure/largecrate/random/case/double, @@ -27926,33 +22215,22 @@ /area/fiorina/station/central_ring) "qTt" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "qTx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "qTQ" = ( /obj/structure/platform_decoration, /obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "qTW" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) "qUo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -27969,26 +22247,18 @@ layer = 2.9; pixel_y = 17 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "qUw" = ( /obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "qUC" = ( /obj/item/ammo_casing{ dir = 2; icon_state = "casing_5" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "qVW" = ( /obj/effect/landmark/objective_landmark/close, @@ -28000,9 +22270,7 @@ pixel_y = -1 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "qXM" = ( /obj/item/stack/tile/plasteel, @@ -28010,9 +22278,7 @@ /area/fiorina/tumor/civres) "qYZ" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "qZc" = ( /obj/structure/prop/structure_lattice{ @@ -28023,62 +22289,42 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "qZv" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/central_ring) "raC" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "raL" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "raP" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "rbp" = ( /obj/structure/closet/crate/medical, /obj/item/clothing/gloves/latex, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "rbv" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "rbI" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) "rbK" = ( /obj/effect/spawner/random/tool, @@ -28093,26 +22339,18 @@ /area/fiorina/station/power_ring) "rbZ" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "rcc" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "rce" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/reagent_dispensers/water_cooler{ pixel_y = 11 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "rcg" = ( /turf/open/floor/plating/prison, @@ -28130,30 +22368,18 @@ /obj/structure/inflatable/popped/door, /obj/item/stack/barbed_wire, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "rcI" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/fiorina/station/medbay) "rdi" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "rdo" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenbluecorner" - }, +/turf/open/floor/prison/greenbluecorner/north, /area/fiorina/station/botany) "rdt" = ( /obj/structure/platform_decoration{ @@ -28173,19 +22399,14 @@ /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) "reZ" = ( /obj/structure/barricade/sandbags{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "rfd" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, @@ -28194,15 +22415,10 @@ "rfe" = ( /obj/structure/surface/rack, /obj/item/tool/mop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "rft" = ( -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "rfQ" = ( /obj/effect/spawner/random/tech_supply, @@ -28218,10 +22434,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "rgg" = ( /obj/item/tool/candle{ @@ -28230,65 +22443,45 @@ /turf/open/floor/wood, /area/fiorina/station/chapel) "rhf" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/research_cells) "rhh" = ( /obj/structure/monorail{ dir = 4; name = "launch track" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "rhH" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "rie" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "riP" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "rja" = ( /turf/closed/wall/prison, /area/fiorina/station/civres_blue) "rjy" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "rjP" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "rki" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "rko" = ( /obj/structure/platform_decoration, @@ -28300,22 +22493,14 @@ pixel_y = 8 }, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "rkv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/fiorina/station/chapel) "rkF" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/telecomm/lz1_cargo) "rkH" = ( /obj/structure/grille, @@ -28332,9 +22517,7 @@ /area/fiorina/station/chapel) "rlP" = ( /obj/structure/largecrate/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "rmh" = ( /obj/structure/surface/rack, @@ -28393,37 +22576,25 @@ /area/fiorina/lz/near_lzI) "rnE" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) "rnM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "roi" = ( /obj/structure/prop/souto_land/streamer{ dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "rot" = ( /obj/structure/barricade/metal{ health = 250; icon_state = "metal_1" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/fiorina/tumor/ice_lab) "roE" = ( /obj/structure/platform_decoration{ @@ -28432,10 +22603,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "roF" = ( /obj/structure/surface/table/reinforced/prison, @@ -28445,36 +22613,24 @@ /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "roH" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/oob) "roQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "rpf" = ( /obj/structure/grille, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "rpt" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "rpL" = ( /obj/item/device/flashlight/lamp/tripod, @@ -28484,10 +22640,7 @@ /obj/item/ammo_casing{ icon_state = "casing_5" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "rqh" = ( /obj/structure/stairs/perspective{ @@ -28503,59 +22656,38 @@ pixel_y = 21 }, /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "rqA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/tumor/servers) "rqC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "rqG" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "rqY" = ( /obj/structure/filingcabinet/disk, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "rrs" = ( /obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) "rru" = ( /obj/effect/spawner/random/goggles/midchance, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "rrD" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "rsg" = ( /obj/structure/platform_decoration, @@ -28578,15 +22710,10 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "rsR" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/power_ring) "rsU" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -28602,39 +22729,26 @@ layer = 2.8 }, /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "rty" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/civres_blue) "rtP" = ( /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "rur" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "ruu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "ruD" = ( /turf/open/floor/wood, @@ -28652,19 +22766,14 @@ /area/fiorina/tumor/servers) "rwj" = ( /obj/structure/barricade/plasteel, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "rwm" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "rwu" = ( /obj/structure/bed/chair{ @@ -28683,22 +22792,14 @@ /obj/item/clothing/under/color/orange, /obj/item/clothing/under/color/orange, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) "rwQ" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) "rxg" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/fiorina/station/security) "rxr" = ( /obj/structure/bed/chair/office/light{ @@ -28734,10 +22835,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "rzp" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "rzt" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -28747,9 +22845,7 @@ /obj/structure/holohoop{ pixel_y = 25 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "rAm" = ( /obj/structure/surface/rack, @@ -28758,10 +22854,7 @@ /area/fiorina/station/telecomm/lz2_maint) "rAw" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "rAK" = ( /obj/structure/barricade/metal{ @@ -28779,9 +22872,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "rAY" = ( /obj/item/ammo_magazine/rifle/m16{ @@ -28795,18 +22886,13 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) "rBs" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "rBu" = ( /obj/structure/barricade/handrail/type_b{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "rBz" = ( /obj/structure/bed/chair/comfy{ @@ -28821,10 +22907,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "rCq" = ( /obj/structure/largecrate/supply/supplies/flares, @@ -28849,9 +22932,7 @@ /area/fiorina/station/medbay) "rFu" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "rFw" = ( /obj/structure/largecrate/random/case/double, @@ -28859,25 +22940,16 @@ /area/fiorina/lz/near_lzI) "rFF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "rGc" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "rGe" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "rGf" = ( /turf/open/auto_turf/sand/layer1, @@ -28897,25 +22969,18 @@ health = 250; icon_state = "metal_1" }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "rHf" = ( /obj/structure/machinery/optable{ desc = "This maybe could be used for advanced medical procedures."; name = "Exam Table" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "rHh" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/fiorina/station/chapel) "rHr" = ( /obj/effect/alien/weeds/node, @@ -28931,15 +22996,10 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "rHX" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "rIr" = ( /obj/structure/machinery/light/double/blue{ @@ -28947,19 +23007,14 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) "rIy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/phone{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "rIE" = ( /obj/item/stack/rods, @@ -28973,9 +23028,7 @@ /area/fiorina/station/medbay) "rJc" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "rJh" = ( /obj/effect/decal/cleanable/blood, @@ -28988,9 +23041,7 @@ /turf/open/floor/plating/prison, /area/fiorina/maintenance) "rJF" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "rJO" = ( /turf/open/floor/carpet, @@ -29023,81 +23074,52 @@ icon_state = "poster14"; pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "rKm" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "rKs" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/cups, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "rKy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/north, /area/fiorina/station/botany) "rKA" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/civres_blue) "rKG" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "rLA" = ( /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/station/botany) "rLG" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "rLJ" = ( /obj/item/clothing/gloves/boxing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "rMo" = ( /obj/effect/landmark/objective_landmark/far, /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) "rMq" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "rMw" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "rMT" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ @@ -29114,9 +23136,7 @@ pixel_x = -11; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "rNc" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -29124,24 +23144,15 @@ icon_state = "fullgrass_1"; name = "Fiberbush(tm) tubers" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "rNK" = ( /obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "rNV" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "rOu" = ( /obj/structure/closet, @@ -29160,17 +23171,13 @@ /obj/structure/machinery/floodlight{ name = "Yard Floodlight" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "rPd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal/medium_stack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "rPf" = ( /obj/structure/surface/table/reinforced/prison, @@ -29179,15 +23186,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "rPD" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "rPI" = ( /obj/structure/surface/table/reinforced/prison, @@ -29222,9 +23225,7 @@ /area/fiorina/station/research_cells) "rPW" = ( /obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "rPZ" = ( /obj/item/shard{ @@ -29241,51 +23242,33 @@ "rQu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/cable_coil/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/maintenance) "rQB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/fiorina/station/lowsec) "rQK" = ( /obj/item/bananapeel{ name = "tactical banana peel" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "rQN" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/station/power_ring) "rRg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "rRo" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_tram) "rRz" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) "rSr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -29315,16 +23298,11 @@ /obj/item/ammo_casing{ icon_state = "casing_5" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "rTD" = ( /obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "rTH" = ( /obj/structure/sign/prop1{ @@ -29343,22 +23321,13 @@ /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibup1" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "rTZ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/north, /area/fiorina/station/research_cells) "rUf" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/tumor/servers) "rUA" = ( /obj/effect/landmark/objective_landmark/close, @@ -29378,25 +23347,16 @@ pixel_x = 17; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "rVi" = ( /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/flight_deck) "rVp" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/maintenance) "rVM" = ( /obj/structure/closet/crate/miningcar, @@ -29439,16 +23399,11 @@ "rXt" = ( /obj/structure/surface/rack, /obj/item/device/camera, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "rYw" = ( /obj/item/trash/liquidfood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "rYy" = ( /obj/item/stool{ @@ -29459,18 +23414,13 @@ icon_state = "poster1"; pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "rYK" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "rYY" = ( /obj/structure/bed/roller, @@ -29483,9 +23433,7 @@ /area/fiorina/station/medbay) "rZe" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security/wardens) "rZi" = ( /turf/closed/shuttle/ert{ @@ -29495,34 +23443,24 @@ "rZI" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "rZM" = ( /obj/item/circuitboard/exosuit/peripherals/max/targeting, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "rZN" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/flight_deck) "rZO" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "rZP" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -29540,29 +23478,18 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "sbf" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, +/turf/open/gm/river/darkred_pool, /area/fiorina/station/park) "sbF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/fiorina/station/security) "sbL" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "sbU" = ( /obj/item/trash/pistachios, @@ -29574,18 +23501,12 @@ /turf/open/floor/prison, /area/fiorina/station/power_ring) "sbW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenbluecorner" - }, +/turf/open/floor/prison/greenbluecorner/east, /area/fiorina/station/botany) "scp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "scG" = ( /obj/item/reagent_container/food/drinks/sillycup, @@ -29593,9 +23514,7 @@ /area/fiorina/station/flight_deck) "scH" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "scM" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -29605,9 +23524,7 @@ dir = 8; layer = 3.5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "scZ" = ( /obj/structure/platform, @@ -29625,17 +23542,11 @@ /area/fiorina/lz/near_lzI) "sdr" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "sdE" = ( /obj/item/storage/wallet/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "sdK" = ( /obj/structure/surface/table/woodentable, @@ -29652,40 +23563,27 @@ health = 80 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "sdV" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_cargo) "sdY" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "seh" = ( /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "set" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "seF" = ( /obj/structure/monorail{ @@ -29703,18 +23601,13 @@ /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "sfi" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "sfn" = ( /obj/structure/disposalpipe/segment{ @@ -29723,28 +23616,19 @@ name = "overhead ducting"; pixel_y = 33 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "sfs" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "sfu" = ( /obj/structure/toilet{ dir = 4; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "sfI" = ( /obj/structure/monorail{ @@ -29765,9 +23649,7 @@ pixel_x = -6; pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "sga" = ( /obj/effect/decal{ @@ -29777,10 +23659,7 @@ pixel_y = -11 }, /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "sgt" = ( /obj/structure/inflatable/popped/door, @@ -29795,9 +23674,7 @@ /obj/item/storage/belt/gun/flaregun/full, /obj/item/storage/belt/gun/flaregun/full, /obj/item/storage/belt/gun/flaregun/full, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "sha" = ( /obj/item/storage/bible/hefa{ @@ -29812,9 +23689,7 @@ dir = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "shH" = ( /obj/structure/machinery/light/double/blue, @@ -29822,34 +23697,23 @@ /area/fiorina/station/central_ring) "sia" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "sig" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "siy" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "siB" = ( /obj/item/poster, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "siE" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "siK" = ( /obj/structure/prop/resin_prop{ @@ -29876,16 +23740,12 @@ /obj/structure/machinery/recharger{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "sjM" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "sjR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -29895,9 +23755,7 @@ dir = 4; pixel_y = 4 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "sjT" = ( /obj/structure/prop/structure_lattice{ @@ -29917,16 +23775,11 @@ pixel_x = -16; pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "sjX" = ( /obj/item/reagent_container/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenbluecorner" - }, +/turf/open/floor/prison/greenbluecorner/east, /area/fiorina/station/botany) "sjZ" = ( /obj/structure/machinery/light/double/blue{ @@ -29934,62 +23787,42 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "skj" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "skG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/tumor/servers) "slc" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "slh" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "sli" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "sls" = ( /obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "slR" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "slT" = ( /obj/structure/bed/chair/comfy{ @@ -30002,10 +23835,7 @@ /turf/open/floor/prison, /area/fiorina/station/disco) "sms" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/north, /area/fiorina/station/civres_blue) "smv" = ( /obj/item/trash/used_stasis_bag{ @@ -30018,35 +23848,26 @@ /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "snr" = ( /obj/structure/platform{ dir = 4 }, /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "snW" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "soj" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "sov" = ( /turf/closed/shuttle/ert{ @@ -30063,19 +23884,14 @@ "spb" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "spl" = ( /obj/item/stack/sheet/metal, /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "spm" = ( /obj/structure/surface/table/reinforced/prison, @@ -30100,10 +23916,7 @@ dir = 8; pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "spH" = ( /obj/structure/disposalpipe/segment{ @@ -30112,16 +23925,11 @@ name = "overhead ducting"; pixel_y = 33 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "spR" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "sqx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -30150,9 +23958,7 @@ /area/fiorina/station/central_ring) "srt" = ( /obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "srI" = ( /obj/item/tool/crowbar/red, @@ -30160,10 +23966,7 @@ /area/fiorina/maintenance) "srQ" = ( /obj/structure/barricade/handrail, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "ssb" = ( /turf/open/floor/prison, @@ -30172,10 +23975,7 @@ /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ywflowers_2" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "sso" = ( /obj/structure/surface/table/reinforced/prison, @@ -30195,9 +23995,7 @@ /area/fiorina/oob) "ssM" = ( /obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "ssO" = ( /obj/item/ashtray/glass, @@ -30205,9 +24003,7 @@ /area/fiorina/station/power_ring) "ssR" = ( /obj/item/clothing/under/shorts/black, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "sta" = ( /obj/structure/machinery/door/airlock/almayer/marine{ @@ -30221,17 +24017,11 @@ /area/fiorina/tumor/aux_engi) "stw" = ( /obj/structure/machinery/line_nexter, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/fiorina/station/security) "stC" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "stP" = ( /obj/structure/window/reinforced{ @@ -30247,40 +24037,27 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "sue" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/tracker, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "suq" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/fiorina/station/lowsec) "suX" = ( /turf/open/floor/prison, /area/fiorina/station/central_ring) "suY" = ( /obj/item/device/cassette_tape/nam, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "svc" = ( /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "sve" = ( /obj/item/explosive/grenade/phosphorus, @@ -30288,10 +24065,7 @@ /obj/item/explosive/grenade/phosphorus, /obj/structure/surface/rack, /obj/item/explosive/grenade/phosphorus, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "svh" = ( /obj/structure/machinery/computer/telecomms/monitor, @@ -30305,63 +24079,45 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "svP" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "svW" = ( /obj/structure/surface/rack, /obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "swg" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/space, /area/fiorina/oob) "swj" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "swJ" = ( /obj/item/tool/shovel/snow, /obj/item/device/flashlight, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "swT" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "sxc" = ( /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "sxk" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison, /area/fiorina/tumor/servers) "sxE" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner, /area/fiorina/station/power_ring) "sxH" = ( /obj/structure/platform{ @@ -30374,16 +24130,11 @@ /area/fiorina/tumor/ice_lab) "syj" = ( /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "syG" = ( /obj/item/tool/wirecutters/clippers, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "syU" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -30394,29 +24145,21 @@ icon_state = "casing_6" }, /obj/effect/spawner/random/gun/smg/midchance, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "syV" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/prison, /area/fiorina/station/power_ring) "sze" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/fiorina/tumor/civres) "szs" = ( /obj/item/clothing/accessory/armband/cargo{ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; name = "HEFA Order milita armband" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/chapel) "szD" = ( /obj/structure/stairs/perspective{ @@ -30439,10 +24182,7 @@ /area/fiorina/station/civres_blue) "sAF" = ( /obj/item/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) "sBf" = ( /obj/structure/platform{ @@ -30452,9 +24192,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "sBj" = ( /obj/structure/barricade/metal{ @@ -30472,17 +24210,11 @@ /area/fiorina/station/chapel) "sBM" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/fiorina/station/medbay) "sBO" = ( /obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "sBW" = ( /obj/structure/platform{ @@ -30493,9 +24225,7 @@ "sBY" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "sCe" = ( /obj/structure/machinery/light/double/blue{ @@ -30503,23 +24233,17 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "sCH" = ( /obj/item/frame/rack, /obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "sDn" = ( /obj/structure/inflatable/popped/door, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "sDL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -30533,40 +24257,29 @@ dir = 1; icon_state = "human2" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "sDS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "sEO" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzII) "sFd" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/northeast, /area/fiorina/station/botany) "sFo" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "sFr" = ( /obj/structure/barricade/handrail/type_b{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "sFH" = ( /obj/structure/surface/table/reinforced/prison, @@ -30579,9 +24292,7 @@ pixel_y = 2 }, /obj/item/tool/stamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/lowsec) "sFY" = ( /obj/structure/barricade/metal/wired{ @@ -30592,9 +24303,7 @@ /area/fiorina/station/central_ring) "sGa" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "sGg" = ( /obj/structure/platform_decoration{ @@ -30610,26 +24319,18 @@ }, /obj/item/newspaper, /obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "sGx" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "sGC" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "sGI" = ( /obj/structure/largecrate/random/case/double, @@ -30641,9 +24342,7 @@ name = "\improper prison food"; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "sHe" = ( /obj/structure/surface/table/reinforced/prison, @@ -30655,9 +24354,7 @@ pixel_x = -9; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "sHj" = ( /obj/structure/machinery/light/double/blue{ @@ -30665,24 +24362,17 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "sHL" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "sHM" = ( /obj/effect/decal/medical_decals{ icon_state = "cryocell2deval" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "sHO" = ( /obj/structure/platform/kutjevo/smooth{ @@ -30695,48 +24385,34 @@ /area/fiorina/oob) "sIg" = ( /obj/item/device/pinpointer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "sIh" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "sIj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/flight_deck) "sIk" = ( /obj/structure/machinery/shower{ pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "sIs" = ( /obj/item/weapon/gun/smg/nailgun, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "sIz" = ( /obj/structure/machinery/computer/emails{ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "sIC" = ( /turf/open/floor/prison, @@ -30762,10 +24438,7 @@ /obj/item/ammo_casing{ icon_state = "casing_9_1" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/west, /area/fiorina/station/lowsec) "sJB" = ( /obj/item/stack/folding_barricade, @@ -30779,27 +24452,21 @@ /area/fiorina/lz/near_lzI) "sJP" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "sKr" = ( /obj/item/storage/secure/briefcase{ pixel_x = 9; pixel_y = 18 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "sKt" = ( /obj/structure/bed/chair{ dir = 1; layer = 2.7 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "sKu" = ( /obj/structure/stairs/perspective{ @@ -30820,9 +24487,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "sLx" = ( /obj/structure/disposalpipe/segment{ @@ -30840,44 +24505,28 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "sMX" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "sMY" = ( /obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "sNb" = ( /obj/item/device/radio, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "sNg" = ( /obj/structure/closet/firecloset/full, /obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "sNi" = ( /obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "sNj" = ( /obj/structure/barricade/metal/wired{ @@ -30886,10 +24535,7 @@ /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "sNN" = ( /obj/structure/platform, @@ -30902,15 +24548,10 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) "sNU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/red/north, /area/fiorina/station/security) "sOf" = ( /obj/item/clothing/mask/cigarette/weed{ @@ -30939,10 +24580,7 @@ /area/fiorina/station/security) "sOs" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/fiorina/tumor/ship) "sOM" = ( /obj/item/device/flashlight/lamp/tripod, @@ -30955,16 +24593,10 @@ "sPh" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "sPi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/station/telecomm/lz1_cargo) "sPt" = ( /obj/structure/stairs/perspective{ @@ -30978,9 +24610,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "sQr" = ( /obj/structure/janitorialcart, @@ -30993,29 +24623,20 @@ "sQy" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "sQz" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "sQC" = ( /obj/structure/surface/rack, /obj/item/restraint/handcuffs, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "sQL" = ( /obj/structure/platform, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) "sRv" = ( /obj/item/clothing/shoes/marine/upp/knife, @@ -31024,9 +24645,7 @@ "sRE" = ( /obj/structure/platform, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "sRJ" = ( /obj/structure/machinery/constructable_frame, @@ -31034,10 +24653,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2/southwest, /area/fiorina/station/lowsec) "sSM" = ( /obj/structure/stairs/perspective{ @@ -31087,25 +24703,16 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "sTI" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "sTK" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "sTU" = ( /obj/structure/platform, @@ -31115,9 +24722,7 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "sUc" = ( /obj/structure/bed/chair/office/light{ @@ -31131,9 +24736,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "sUl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -31144,32 +24747,22 @@ "sUr" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) "sUt" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison, /area/fiorina/station/park) "sUV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/tumor/aux_engi) "sUX" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "sUY" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "sVd" = ( /obj/structure/stairs/perspective{ @@ -31189,17 +24782,11 @@ /area/fiorina/oob) "sVS" = ( /obj/item/trash/pistachios, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "sVT" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "sVU" = ( /obj/structure/largecrate/machine, @@ -31210,18 +24797,12 @@ /area/fiorina/station/medbay) "sVW" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "sVZ" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "sWb" = ( /obj/structure/prop/structure_lattice{ @@ -31233,15 +24814,10 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "sWe" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/civres_blue) "sWl" = ( /obj/structure/bed/roller, @@ -31273,9 +24849,7 @@ /turf/open/floor/prison, /area/fiorina/station/research_cells) "sXi" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "sXt" = ( /obj/structure/stairs/perspective{ @@ -31290,9 +24864,7 @@ pixel_x = -1; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "sYn" = ( /obj/structure/machinery/light/double/blue, @@ -31302,16 +24874,10 @@ /obj/item/ammo_casing{ icon_state = "casing_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "sYB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/telecomm/lz1_tram) "sYP" = ( /obj/item/stack/sheet/metal, @@ -31323,17 +24889,11 @@ /area/fiorina/station/telecomm/lz1_tram) "sZZ" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "tad" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "tai" = ( /obj/structure/bed/chair, @@ -31342,9 +24902,7 @@ dir = 4; pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "taj" = ( /turf/open/floor/prison, @@ -31360,22 +24918,15 @@ /area/fiorina/station/park) "taI" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "taL" = ( /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "taS" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/power_ring) "taY" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -31383,52 +24934,35 @@ /area/fiorina/lz/near_lzI) "tbd" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ship) "tbj" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "tbm" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "tbG" = ( /obj/structure/bed{ icon_state = "psychbed" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/servers) "tco" = ( /obj/item/paper/crumpled/bloody/csheet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "tcB" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "tcD" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib2" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "tcL" = ( /obj/structure/platform{ @@ -31438,9 +24972,7 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/chapel) "tcW" = ( /obj/structure/monorail{ @@ -31455,17 +24987,13 @@ /area/fiorina/station/transit_hub) "tde" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "tdq" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "tdr" = ( /obj/structure/prop/resin_prop{ @@ -31473,19 +25001,13 @@ icon_state = "chair"; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "tel" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/medbay) "teq" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "tet" = ( /obj/structure/machinery/light/double/blue{ @@ -31493,45 +25015,31 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) "teu" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "teI" = ( /obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "teK" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "tfl" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "tfw" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "tfx" = ( /obj/structure/barricade/wooden{ @@ -31553,9 +25061,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "tgB" = ( /obj/structure/barricade/wooden{ @@ -31565,10 +25071,7 @@ /area/fiorina/station/chapel) "tgK" = ( /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "tgL" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, @@ -31584,9 +25087,7 @@ pixel_x = -4; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "thI" = ( /obj/structure/machinery/light/double/blue{ @@ -31594,17 +25095,11 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "thV" = ( /obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) "tii" = ( /obj/structure/monorail{ @@ -31618,9 +25113,7 @@ }, /obj/item/stool, /obj/item/clothing/shoes/slippers_worn, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "tir" = ( /obj/item/ammo_magazine/rifle/m16, @@ -31632,10 +25125,7 @@ /obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "tiM" = ( /obj/item/shard{ @@ -31645,31 +25135,20 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "tiX" = ( /obj/item/stack/sheet/mineral/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "tiY" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +/turf/open/floor/prison/floorscorched2, /area/fiorina/tumor/civres) "tiZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "tja" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "tji" = ( /obj/structure/flora/pottedplant{ @@ -31690,9 +25169,7 @@ "tjw" = ( /obj/structure/platform_decoration, /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "tjR" = ( /obj/structure/machinery/shower{ @@ -31702,9 +25179,7 @@ dir = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "tkd" = ( /obj/structure/filingcabinet, @@ -31715,15 +25190,10 @@ /area/fiorina/station/security) "tkg" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "tkj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "tkP" = ( /obj/structure/stairs/perspective{ @@ -31738,10 +25208,7 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "tle" = ( /obj/structure/filingcabinet{ @@ -31753,17 +25220,13 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "tlj" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) "tlq" = ( /obj/structure/surface/table/reinforced/prison, @@ -31791,9 +25254,7 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "tlF" = ( /obj/structure/stairs/perspective{ @@ -31812,10 +25273,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "tlQ" = ( /obj/effect/decal/cleanable/blood/oil, @@ -31845,23 +25303,15 @@ /area/fiorina/station/park) "tmF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "tmI" = ( /obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "tmL" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "tmX" = ( /obj/structure/largecrate/random/case/small, @@ -31879,16 +25329,11 @@ /area/fiorina/station/chapel) "tnw" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "tnY" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "tob" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -31910,9 +25355,7 @@ /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "2" }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/maintenance) "tpt" = ( /obj/structure/closet/wardrobe/chaplain_black, @@ -31931,23 +25374,14 @@ /area/fiorina/lz/near_lzI) "tpz" = ( /obj/item/paper/carbon, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "tpE" = ( -/obj/item/tank/jetpack/carbondioxide, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "tpF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/fiorina/tumor/aux_engi) "tpY" = ( /obj/effect/landmark/monkey_spawn, @@ -31957,19 +25391,14 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "tql" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "tqw" = ( /obj/structure/stairs/perspective{ @@ -31983,10 +25412,7 @@ }, /obj/item/storage/toolbox, /obj/item/storage/toolbox, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) "tqP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -32008,16 +25434,11 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) "trJ" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/station/central_ring) "trN" = ( /obj/item/stack/barbed_wire, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "trR" = ( /obj/structure/sink{ @@ -32025,10 +25446,7 @@ pixel_x = 12 }, /obj/item/storage/fancy/cigarettes/blackpack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "trS" = ( /obj/structure/barricade/wooden{ @@ -32052,31 +25470,21 @@ /obj/item/storage/donut_box{ pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "tsr" = ( /obj/structure/pipes/unary/freezer{ icon_state = "freezer_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "tss" = ( /obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "tst" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/oob) "tsA" = ( /obj/structure/barricade/metal{ @@ -32084,25 +25492,18 @@ health = 150; icon_state = "metal_2" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) "tsH" = ( /obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "tsN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "tuf" = ( /obj/item/clothing/shoes/jackboots{ @@ -32120,10 +25521,7 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) "tuA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/telecomm/lz1_tram) "tuX" = ( /obj/structure/platform{ @@ -32140,10 +25538,7 @@ "tvi" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "twb" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -32152,19 +25547,14 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "txb" = ( /obj/structure/window/framed/prison/reinforced{ opacity = 1 }, /obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "txf" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ @@ -32174,9 +25564,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "txh" = ( /obj/structure/bed/sofa/vert/grey, @@ -32188,43 +25576,30 @@ pixel_y = 24 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "tyj" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/chapel) "tyt" = ( /obj/item/ammo_casing{ dir = 8; icon_state = "cartridge_2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "tyC" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "tyJ" = ( /obj/item/reagent_container/food/snacks/xenoburger, /obj/item/reagent_container/food/snacks/xenoburger, /obj/item/reagent_container/food/snacks/xenoburger, /obj/structure/closet/crate/freezer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "tzy" = ( /obj/item/ammo_magazine/smg/mp5, @@ -32249,16 +25624,11 @@ /area/fiorina/oob) "tzU" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "tzW" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/tumor/aux_engi) "tAb" = ( /obj/structure/surface/rack, @@ -32273,17 +25643,11 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) "tAE" = ( /obj/structure/barricade/handrail, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "tAR" = ( /obj/structure/surface/rack, @@ -32293,10 +25657,7 @@ pixel_y = -5 }, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "tBP" = ( /obj/structure/machinery/shower{ @@ -32306,16 +25667,11 @@ /area/fiorina/station/research_cells) "tCv" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "tCH" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "tCZ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -32340,9 +25696,7 @@ /area/fiorina/station/civres_blue) "tDC" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "tDE" = ( /obj/structure/machinery/light/double/blue{ @@ -32361,9 +25715,7 @@ /area/fiorina/station/civres_blue) "tEA" = ( /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "tEH" = ( /obj/structure/window/framed/prison, @@ -32378,9 +25730,7 @@ /area/fiorina/station/transit_hub) "tEX" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "tEY" = ( /obj/structure/machinery/newscaster{ @@ -32392,9 +25742,7 @@ /obj/structure/reagent_dispensers/watertank{ layer = 2.6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "tFA" = ( /obj/structure/platform{ @@ -32411,18 +25759,12 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "tGU" = ( /obj/structure/closet/crate/medical, /obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "tGY" = ( /obj/structure/surface/table/reinforced/prison, @@ -32441,27 +25783,18 @@ /area/fiorina/station/lowsec) "tHw" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "tHF" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "tHJ" = ( /obj/structure/closet/firecloset, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/maintenance) "tHL" = ( /obj/structure/blocker/invisible_wall, @@ -32476,9 +25809,7 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "tIn" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -32499,48 +25830,31 @@ icon_state = "fullgrass_1"; name = "Fiberbush(tm) tubers" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "tIU" = ( /obj/item/tool/candle, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) "tIW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/lz/near_lzI) "tJw" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "tJC" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "tJH" = ( /obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "tJQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/cigarette/cigar/tarbacks, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "tJR" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -32556,20 +25870,14 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "tKk" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "tKv" = ( /obj/structure/machinery/computer/secure_data{ @@ -32583,17 +25891,11 @@ desc = "Wow, instant sand. They really have everything in space."; name = "Insta-Sand! bag" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/fiorina/tumor/civres) "tLk" = ( /obj/item/paper/crumpled, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "tLC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -32603,17 +25905,12 @@ /obj/structure/prop/souto_land/pole{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "tMs" = ( /obj/item/weapon/gun/smg/mp5, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "tMS" = ( /obj/effect/alien/weeds/node, @@ -32628,25 +25925,18 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "tMV" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "tNf" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "tNF" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -32657,9 +25947,7 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "tNV" = ( /obj/item/stack/sheet/wood, @@ -32691,9 +25979,7 @@ desc = "Eggplant. Or, wait..."; layer = 2 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "tPz" = ( /obj/structure/surface/table/woodentable/fancy, @@ -32702,27 +25988,17 @@ pixel_x = 1; pixel_y = 13 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "tPA" = ( /obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "tPB" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "tPC" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/fiorina/station/flight_deck) "tPN" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -32732,9 +26008,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "tQm" = ( /obj/item/trash/boonie, @@ -32750,15 +26024,10 @@ "tSl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "tSm" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) "tSL" = ( /obj/structure/platform{ @@ -32771,9 +26040,7 @@ dir = 9 }, /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "tSY" = ( /obj/structure/machinery/light/double/blue, @@ -32784,16 +26051,11 @@ /obj/item/stool{ pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "tTv" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "tTA" = ( /obj/structure/prop/souto_land/pole{ @@ -32803,10 +26065,7 @@ /area/fiorina/station/park) "tTB" = ( /obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/central_ring) "tTI" = ( /obj/structure/closet/bodybag, @@ -32814,10 +26073,7 @@ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "tUs" = ( /turf/open/floor/plating/prison, @@ -32826,25 +26082,17 @@ /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) "tUD" = ( /obj/structure/closet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "tUG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical/green, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "tUS" = ( /obj/item/explosive/grenade/high_explosive/frag, @@ -32852,10 +26100,7 @@ /area/fiorina/station/medbay) "tVI" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "tVV" = ( /obj/effect/landmark/corpsespawner/ua_riot, @@ -32871,23 +26116,16 @@ /area/fiorina/station/central_ring) "tWh" = ( /obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "tWs" = ( /obj/item/toy/deck, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "tWz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "tWI" = ( /obj/structure/platform/kutjevo/smooth, @@ -32901,10 +26139,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "tXD" = ( /obj/structure/stairs/perspective{ @@ -32918,9 +26153,7 @@ /area/fiorina/station/park) "tXT" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "tYd" = ( /obj/structure/machinery/light/double/blue{ @@ -32928,68 +26161,44 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "tYg" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) "tYt" = ( /obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "tYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) "tYD" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/power_ring) "tYQ" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "tYU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) "tZe" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "tZk" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/aux_engi) "tZz" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "tZO" = ( /obj/item/frame/rack, @@ -32997,9 +26206,7 @@ /area/fiorina/station/disco) "tZW" = ( /obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "uap" = ( /obj/structure/surface/table/reinforced/prison, @@ -33008,17 +26215,11 @@ /area/fiorina/station/power_ring) "uaL" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "uaM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/tumor/aux_engi) "ubc" = ( /obj/structure/largecrate/random/barrel/green, @@ -33032,26 +26233,19 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "ubo" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "ubA" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) "ubN" = ( /turf/closed/shuttle/ert{ @@ -33071,10 +26265,7 @@ /turf/open/ice/noweed, /area/fiorina/station/research_cells) "ubX" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/tumor/ice_lab) "uci" = ( /obj/effect/spawner/random/tool, @@ -33083,9 +26274,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "ucj" = ( /turf/closed/shuttle/ert{ @@ -33096,16 +26285,11 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ucN" = ( /obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "ucS" = ( /obj/structure/machinery/light/double/blue, @@ -33113,9 +26297,7 @@ /area/fiorina/station/telecomm/lz1_tram) "udj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "udt" = ( /obj/structure/barricade/handrail{ @@ -33130,23 +26312,15 @@ "udB" = ( /obj/structure/bed/roller, /obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "udE" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "uen" = ( /obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "uep" = ( /obj/effect/decal/cleanable/blood, @@ -33162,25 +26336,17 @@ /area/fiorina/station/park) "ueI" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ueP" = ( /obj/item/paper/crumpled, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ueX" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ufE" = ( /obj/effect/decal/cleanable/blood/drip, @@ -33198,15 +26364,10 @@ /area/fiorina/station/central_ring) "ufN" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/tumor/aux_engi) "ufR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/east, /area/fiorina/station/research_cells) "ugg" = ( /obj/structure/closet/crate/miningcar{ @@ -33216,26 +26377,19 @@ /turf/open/floor/prison, /area/fiorina/station/lowsec) "ugk" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/fiorina/tumor/aux_engi) "ugm" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "ugq" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibdown1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "ugv" = ( /obj/structure/platform/kutjevo/smooth, @@ -33268,9 +26422,7 @@ /obj/structure/prop/resin_prop{ icon_state = "sheater0" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "uhm" = ( /obj/structure/window_frame/prison/reinforced, @@ -33278,35 +26430,24 @@ /area/fiorina/station/research_cells) "uhA" = ( /obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "uhX" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) "uia" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "uiD" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "uiV" = ( /obj/structure/platform{ @@ -33321,47 +26462,32 @@ /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) "ujb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/fiorina/station/telecomm/lz1_cargo) "ujo" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "ujs" = ( /obj/item/shard{ icon_state = "large"; name = "ice shard" }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "ujz" = ( /obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "ukg" = ( /obj/item/trash/candle, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "ukr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "uky" = ( /obj/structure/platform, @@ -33371,22 +26497,11 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/tumor/ice_lab) -"ukR" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/space/basic, -/area/fiorina/lz/near_lzI) "ulc" = ( /obj/item/paper, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "ume" = ( /obj/structure/surface/table/reinforced/prison, @@ -33402,15 +26517,10 @@ /area/fiorina/station/flight_deck) "umg" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/civres_blue) "umm" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/central_ring) "umy" = ( /obj/structure/prop/resin_prop{ @@ -33422,17 +26532,11 @@ /area/fiorina/tumor/aux_engi) "umz" = ( /obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "umI" = ( /obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/central_ring) "umW" = ( /obj/structure/bed/sofa/pews, @@ -33452,10 +26556,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "unu" = ( /obj/structure/stairs/perspective{ @@ -33469,14 +26570,10 @@ dir = 8 }, /obj/item/storage/box/flashbangs, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "unA" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/station/civres_blue) "unF" = ( /obj/item/tool/wirecutters, @@ -33501,29 +26598,18 @@ pixel_y = 2 }, /obj/item/storage/pouch/tools/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "upf" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/maintenance) "upr" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "upw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/fiorina/lz/near_lzII) "upK" = ( /obj/structure/surface/table/reinforced/prison, @@ -33533,10 +26619,7 @@ pixel_x = -2; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/east, /area/fiorina/station/power_ring) "upM" = ( /obj/structure/disposalpipe/broken, @@ -33552,10 +26635,7 @@ "uqd" = ( /obj/item/pamphlet/skill/powerloader, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "uqj" = ( /obj/structure/stairs/perspective{ @@ -33564,17 +26644,11 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/fiorina/station/park) "uqV" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "urv" = ( /obj/item/device/flashlight/lamp/tripod, @@ -33598,23 +26672,15 @@ /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "utL" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "utW" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) "uud" = ( /obj/structure/bed/chair/office/dark, @@ -33622,9 +26688,7 @@ /area/fiorina/station/disco) "uuk" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "uuG" = ( /obj/structure/machinery/washing_machine, @@ -33632,9 +26696,7 @@ pixel_y = 15 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "uuJ" = ( /obj/structure/holohoop{ @@ -33645,9 +26707,7 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "uuL" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -33661,15 +26721,10 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "uvn" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "uvu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/north, /area/fiorina/station/power_ring) "uvF" = ( /obj/structure/prop/structure_lattice{ @@ -33684,16 +26739,11 @@ /area/fiorina/maintenance) "uvS" = ( /obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/oob) "uvV" = ( /obj/structure/coatrack, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "uvZ" = ( /obj/structure/prop/structure_lattice{ @@ -33705,16 +26755,11 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "uwb" = ( /obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "uwk" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -33736,9 +26781,7 @@ /area/fiorina/station/power_ring) "uxd" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "uxv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -33746,10 +26789,7 @@ /area/fiorina/station/security) "uxN" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) "uye" = ( /obj/item/weapon/gun/rifle/m16, @@ -33763,9 +26803,7 @@ /area/fiorina/lz/near_lzI) "uyw" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "uyC" = ( /obj/structure/machinery/shower{ @@ -33774,9 +26812,7 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "uyM" = ( /obj/effect/decal/cleanable/blood/oil, @@ -33792,9 +26828,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "uza" = ( /obj/effect/decal/cleanable/blood/splatter{ @@ -33805,9 +26839,7 @@ /area/fiorina/station/medbay) "uzi" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "uzw" = ( /obj/structure/machinery/light/double/blue, @@ -33821,22 +26853,14 @@ /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) "uzG" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "uAg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/fiorina/tumor/ice_lab) "uAX" = ( /obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "uBq" = ( /obj/item/stack/rods, @@ -33850,17 +26874,13 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "uCO" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "uCX" = ( /obj/structure/stairs/perspective{ @@ -33877,9 +26897,7 @@ /obj/structure/prop/structure_lattice{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "uEh" = ( /obj/structure/surface/table/reinforced/prison, @@ -33887,9 +26905,7 @@ dir = 4; reason = "Visitor" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "uEj" = ( /obj/structure/reagent_dispensers/fueltank, @@ -33897,28 +26913,20 @@ /area/fiorina/station/transit_hub) "uEy" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/tumor/servers) "uEM" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/chapel) "uEY" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "uFd" = ( /obj/structure/machinery/light/double/blue{ @@ -33928,17 +26936,13 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "uFg" = ( /obj/effect/landmark/nightmare{ insert_tag = "birthday" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "uFs" = ( /obj/structure/stairs/perspective{ @@ -33951,37 +26955,26 @@ /area/fiorina/station/telecomm/lz1_tram) "uFC" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "uGu" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "3" }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "uGI" = ( /obj/structure/monorail{ name = "launch track" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) "uGL" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; name = "Insta-Sand! bag" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "uGT" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -33999,18 +26992,13 @@ /obj/item/storage/toolbox/mechanical{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "uIB" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "uIL" = ( /obj/structure/machinery/light/double/blue{ @@ -34020,9 +27008,7 @@ dir = 1; layer = 2.8 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "uIS" = ( /obj/structure/window/framed/prison, @@ -34040,48 +27026,31 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "uJp" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "uJG" = ( /obj/item/ammo_casing{ icon_state = "casing_10_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "uJQ" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "uJR" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ppflowers_2" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "uKb" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "uKx" = ( /turf/closed/shuttle/ert, @@ -34093,35 +27062,22 @@ "uKK" = ( /obj/structure/bed/roller, /obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "uKX" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security/wardens) "uLf" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "uLj" = ( /obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) "uLq" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/telecomm/lz1_tram) "uLr" = ( /obj/vehicle/powerloader, @@ -34141,16 +27097,11 @@ "uLM" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) "uLV" = ( /obj/item/bedsheet, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "uMc" = ( /obj/structure/largecrate/random/barrel/white, @@ -34158,10 +27109,7 @@ /area/fiorina/station/security) "uMm" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "uMq" = ( /obj/structure/machinery/light/small{ @@ -34177,14 +27125,10 @@ /area/fiorina/station/security/wardens) "uMN" = ( /obj/item/trash/semki, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "uMT" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/medbay) "uMZ" = ( /obj/structure/disposalpipe/segment{ @@ -34210,16 +27154,11 @@ /obj/structure/monorail{ name = "launch track" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "uNs" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "uNG" = ( /obj/structure/machinery/power/apc{ @@ -34244,21 +27183,14 @@ /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "bee" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "uOC" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/tumor/servers) "uOM" = ( /obj/structure/curtain, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "uOP" = ( /obj/item/newspaper, @@ -34267,15 +27199,10 @@ "uPi" = ( /obj/item/device/binoculars, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "uPl" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/east, /area/fiorina/station/telecomm/lz1_cargo) "uPA" = ( /obj/structure/platform{ @@ -34290,16 +27217,11 @@ /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) "uPX" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/prison/green/northeast, /area/fiorina/tumor/civres) "uQk" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "uQE" = ( /obj/item/stack/tile/plasteel{ @@ -34309,17 +27231,11 @@ /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) "uQJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/tumor/servers) "uQT" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/tumor/ice_lab) "uRv" = ( /obj/structure/machinery/light/double/blue{ @@ -34330,23 +27246,14 @@ /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) "uRF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/fiorina/station/medbay) "uRI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/maintenance) "uRT" = ( /obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "uRZ" = ( /obj/item/trash/barcardine, @@ -34366,9 +27273,7 @@ icon_state = "pottedplant_29"; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "uSX" = ( /obj/item/tool/kitchen/utensil/pknife, @@ -34388,52 +27293,34 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_cargo) "uTr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "uTs" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "uTt" = ( /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/north, /area/fiorina/station/telecomm/lz1_cargo) "uTw" = ( /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "uTA" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "uTR" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "uVk" = ( /obj/effect/decal{ @@ -34443,9 +27330,7 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) "uVn" = ( /turf/closed/shuttle/ert{ @@ -34453,19 +27338,14 @@ }, /area/fiorina/tumor/ship) "uVD" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "uVH" = ( /obj/effect/decal{ icon = 'icons/obj/items/policetape.dmi'; icon_state = "engineering_v" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "uVL" = ( /obj/structure/surface/table/reinforced/prison, @@ -34483,10 +27363,7 @@ dir = 8; pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "uVX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -34505,10 +27382,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "uWA" = ( /obj/structure/closet/secure_closet/engineering_electrical, @@ -34518,16 +27392,11 @@ pixel_y = -3 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "uWO" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "uWQ" = ( /obj/structure/platform{ @@ -34545,10 +27414,7 @@ icon_state = "fullgrass_3"; name = "Fiberbush(tm) tubers" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "uXw" = ( /obj/structure/surface/table/reinforced/prison, @@ -34566,29 +27432,20 @@ /area/fiorina/tumor/ship) "uXK" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "uXP" = ( /obj/item/reagent_container/food/drinks/bottle/pwine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "uXY" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "uYi" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "uYo" = ( /obj/structure/stairs/perspective{ @@ -34617,19 +27474,14 @@ pixel_x = 7; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "uZu" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) "uZA" = ( /turf/closed/shuttle/ert{ @@ -34638,10 +27490,7 @@ /area/fiorina/tumor/ship) "uZP" = ( /obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "uZX" = ( /obj/structure/curtain, @@ -34655,10 +27504,7 @@ pixel_y = -11 }, /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "vao" = ( /obj/structure/machinery/light/double/blue, @@ -34670,9 +27516,7 @@ /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, /obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "vbV" = ( /obj/structure/machinery/vending/coffee, @@ -34685,30 +27529,21 @@ /area/fiorina/oob) "vci" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "vcq" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "vcu" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "vcv" = ( /obj/item/tool/screwdriver, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "vcC" = ( /obj/item/stack/rods, @@ -34717,61 +27552,41 @@ "vcN" = ( /obj/structure/largecrate/random/case, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "vdn" = ( /obj/item/ammo_casing{ icon_state = "cartridge_2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "vds" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) "vdH" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) "vdJ" = ( /obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/tumor/civres) "vdN" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "vdW" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "vel" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "vem" = ( /turf/closed/shuttle/ert{ @@ -34794,16 +27609,11 @@ /area/fiorina/station/park) "veP" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "veR" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) "veW" = ( /obj/structure/stairs/perspective{ @@ -34824,10 +27634,7 @@ "vfL" = ( /obj/item/storage/box/flashbangs, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "vfM" = ( /turf/closed/shuttle/ert{ @@ -34835,33 +27642,22 @@ }, /area/fiorina/station/power_ring) "vfO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/fiorina/station/lowsec) "vgi" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "vgw" = ( /obj/item/storage/toolbox/antag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/tumor/civres) "vgC" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/lz/near_lzI) "vgL" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -34873,17 +27669,13 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/storage/pill_bottle/alkysine, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "vhd" = ( /obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "vhk" = ( /obj/structure/stairs/perspective{ @@ -34895,19 +27687,13 @@ /area/fiorina/station/power_ring) "vhy" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "vhB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) "vhI" = ( -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, +/turf/open/gm/river/darkred_pool, /area/fiorina/station/park) "viL" = ( /obj/item/stock_parts/micro_laser/ultra, @@ -34931,10 +27717,7 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "vjl" = ( /obj/structure/closet/crate/trashcart, @@ -34978,10 +27761,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "vkt" = ( /obj/structure/stairs/perspective{ @@ -34993,25 +27773,17 @@ /area/fiorina/station/central_ring) "vlK" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) "vlN" = ( /obj/structure/surface/rack, /obj/item/frame/table/almayer, /obj/item/frame/table/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "vlO" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/central_ring) "vlS" = ( /obj/structure/surface/table/reinforced/prison, @@ -35048,28 +27820,20 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "vmT" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "vnl" = ( /obj/structure/largecrate/random/barrel/white, /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "vnr" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -35088,30 +27852,21 @@ pixel_y = 8 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "vnG" = ( /turf/open/floor/prison, /area/fiorina/maintenance) "vnM" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/lz/near_lzI) "voh" = ( /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "voi" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "voq" = ( /obj/structure/machinery/computer/secure_data{ @@ -35128,9 +27883,7 @@ /area/fiorina/station/transit_hub) "voI" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "voK" = ( /obj/structure/stairs/perspective{ @@ -35143,24 +27896,17 @@ /area/fiorina/station/medbay) "voO" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "voP" = ( /obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/power_ring) "voV" = ( /obj/item/ammo_casing{ icon_state = "casing_6_1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "vpN" = ( /obj/structure/stairs/perspective{ @@ -35177,22 +27923,15 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "vqs" = ( /obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "vqW" = ( /obj/item/stack/sheet/cardboard, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) "vrp" = ( /obj/structure/ice/thin/indestructible{ @@ -35205,10 +27944,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "vrF" = ( /obj/item/toy/crayon/green, @@ -35217,16 +27953,11 @@ "vrH" = ( /obj/item/stack/sheet/metal, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "vrO" = ( /obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "vrR" = ( /obj/structure/platform_decoration, @@ -35234,16 +27965,11 @@ dir = 4; layer = 3.5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "vrS" = ( /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "vrT" = ( /obj/structure/platform{ @@ -35253,27 +27979,18 @@ /area/fiorina/station/chapel) "vsr" = ( /obj/structure/barricade/handrail, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "vsL" = ( /obj/structure/prop/dam/crane, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/fiorina/tumor/servers) "vsM" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "vsT" = ( /obj/structure/cable/heavyduty{ @@ -35285,9 +28002,7 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "vtk" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -35314,10 +28029,7 @@ pixel_x = 5; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "vts" = ( /obj/effect/landmark/corpsespawner/engineer, @@ -35328,10 +28040,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "vuK" = ( /obj/structure/filingcabinet/chestdrawer, @@ -35348,10 +28057,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/fiorina/station/power_ring) "vuV" = ( /obj/structure/stairs/perspective{ @@ -35364,9 +28070,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "vvp" = ( /obj/item/tool/candle{ @@ -35382,9 +28086,7 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) "vvT" = ( /obj/structure/surface/table/reinforced/prison, @@ -35393,10 +28095,7 @@ icon_state = "mwbloodyo"; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "vwt" = ( /obj/effect/landmark/objective_landmark/medium, @@ -35410,9 +28109,7 @@ /area/fiorina/lz/near_lzI) "vwD" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) "vwM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -35425,27 +28122,19 @@ /obj/structure/machinery/microwave{ pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "vwX" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "vxm" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue/east, /area/fiorina/station/botany) "vxs" = ( /turf/closed/shuttle/ert{ @@ -35454,26 +28143,18 @@ /area/fiorina/tumor/ship) "vxu" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "vxz" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ indestructible = 1; name = "launch bay door" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/oob) "vxI" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "vyu" = ( /obj/item/clothing/suit/storage/hazardvest, @@ -35484,25 +28165,17 @@ dir = 1 }, /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "vyw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/telecomm/lz1_cargo) "vyK" = ( /obj/structure/barricade/sandbags{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) "vzh" = ( /obj/structure/foamed_metal, @@ -35537,9 +28210,7 @@ "vzT" = ( /obj/item/frame/toolbox_tiles_sensor, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "vzU" = ( /turf/closed/shuttle/ert{ @@ -35552,24 +28223,16 @@ dir = 8 }, /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "vAX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "vBa" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "vBF" = ( /obj/structure/machinery/light/double/blue{ @@ -35577,16 +28240,11 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "vBH" = ( /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "vBP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -35611,23 +28269,15 @@ /area/fiorina/lz/near_lzI) "vCl" = ( /obj/item/tool/shovel/spade, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "vCm" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "vCu" = ( /obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/chapel) "vCL" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ @@ -35637,10 +28287,7 @@ pixel_x = 2; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "vCQ" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -35649,26 +28296,18 @@ pixel_x = 7; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/chapel) "vDf" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "vDL" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/central_ring) "vDO" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -35678,9 +28317,7 @@ /area/fiorina/station/power_ring) "vDR" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "vEi" = ( /obj/structure/platform{ @@ -35698,10 +28335,7 @@ health = 150; icon_state = "metal_2" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) "vFi" = ( /obj/structure/window_frame/prison, @@ -35721,9 +28355,7 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "vFs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -35734,22 +28366,15 @@ /area/fiorina/station/security/wardens) "vFA" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "vFS" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) "vFV" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) "vFY" = ( /obj/item/reagent_container/glass/bucket, @@ -35763,23 +28388,15 @@ }, /obj/item/reagent_container/food/snacks/eat_bar, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "vHo" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/fiorina/tumor/servers) "vHD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "vHU" = ( /obj/structure/surface/table/woodentable/fancy, @@ -35800,14 +28417,10 @@ name = "overhead ducting"; pixel_y = 33 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "vIG" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg2" - }, +/turf/open/floor/prison/platingdmg2, /area/fiorina/station/security) "vJh" = ( /obj/effect/spawner/random/sentry/midchance, @@ -35823,10 +28436,7 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "vJL" = ( /obj/structure/machinery/light/double/blue{ @@ -35847,10 +28457,7 @@ /obj/item/stack/sheet/metal{ amount = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) "vKP" = ( /obj/structure/surface/rack, @@ -35860,10 +28467,7 @@ "vLe" = ( /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/maintenance) "vLH" = ( /obj/item/device/flashlight/lamp/tripod, @@ -35873,30 +28477,19 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "vLX" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "vMk" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "vMs" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "vMK" = ( /turf/closed/wall/r_wall/prison, @@ -35905,16 +28498,10 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/station/park) "vMT" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) "vNd" = ( /obj/structure/machinery/light/double/blue{ @@ -35922,9 +28509,7 @@ pixel_y = 21 }, /obj/item/toy/beach_ball, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "vNq" = ( /turf/closed/wall/r_wall/prison, @@ -35940,10 +28525,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "vOm" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/botany) "vOD" = ( /obj/effect/landmark/corpsespawner/ua_riot, @@ -35951,9 +28533,7 @@ /area/fiorina/lz/near_lzI) "vOO" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/chapel) "vOP" = ( /obj/structure/disposalpipe/segment{ @@ -35978,9 +28558,7 @@ pixel_y = 13 }, /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "vPM" = ( /obj/structure/platform_decoration/kutjevo{ @@ -35996,10 +28574,7 @@ /area/fiorina/tumor/ship) "vQi" = ( /obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "vQC" = ( /obj/structure/closet/crate/trashcart, @@ -36012,17 +28587,11 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) "vRk" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/power_ring) "vRu" = ( /obj/structure/sink{ @@ -36030,10 +28599,7 @@ pixel_x = 12 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/oob) "vRA" = ( /turf/open/floor/plating/prison, @@ -36041,17 +28607,11 @@ "vRF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pamphlet/skill/powerloader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "vRH" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "vRP" = ( /obj/item/trash/cigbutt/cigarbutt, @@ -36062,9 +28622,7 @@ pixel_x = -5; pixel_y = -6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "vSW" = ( /obj/structure/closet/crate/internals, @@ -36073,10 +28631,7 @@ /area/fiorina/lz/near_lzI) "vTq" = ( /obj/structure/prop/resin_prop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "vTv" = ( /turf/closed/shuttle/elevator{ @@ -36084,42 +28639,30 @@ }, /area/fiorina/station/civres_blue) "vTA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/flight_deck) "vTI" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "vTL" = ( /obj/item/trash/hotdog, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "vTM" = ( /obj/item/storage/donut_box{ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "vTR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "vUf" = ( /obj/structure/platform, @@ -36134,9 +28677,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "vUv" = ( /obj/structure/surface/table/reinforced/prison, @@ -36146,23 +28687,16 @@ /area/fiorina/station/security) "vUF" = ( /obj/item/tool/screwdriver, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/prison/green/southwest, /area/fiorina/tumor/civres) "vUP" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "vUZ" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "vVi" = ( /obj/structure/window/framed/prison, @@ -36190,25 +28724,17 @@ "vWj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "vWL" = ( /obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "vXk" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "vXl" = ( /obj/structure/surface/rack, @@ -36217,10 +28743,7 @@ /turf/open/floor/prison, /area/fiorina/station/medbay) "vXy" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/prison/green/southeast, /area/fiorina/tumor/civres) "vXT" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -36228,9 +28751,7 @@ /area/fiorina/station/security/wardens) "vYw" = ( /obj/structure/girder/reinforced, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "vYX" = ( /obj/item/roller, @@ -36242,22 +28763,15 @@ layer = 3.5; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/station/transit_hub) "vZe" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) "vZs" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "vZD" = ( /obj/item/storage/box/donkpockets, @@ -36293,10 +28807,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "waQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/power_ring) "waU" = ( /obj/structure/machinery/light/double/blue, @@ -36304,18 +28815,12 @@ /area/fiorina/station/telecomm/lz2_maint) "wbp" = ( /obj/item/inflatable, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "wbr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "wbB" = ( /obj/structure/computerframe, @@ -36356,18 +28861,13 @@ "wcB" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "wcC" = ( /obj/structure/closet/basketball, /obj/item/storage/pill_bottle/bicaridine/skillless, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "wcP" = ( /obj/effect/landmark/queen_spawn, @@ -36381,41 +28881,28 @@ /obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "wdo" = ( /obj/structure/closet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/east, /area/fiorina/station/power_ring) "wdL" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "wdU" = ( /obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "wef" = ( /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) "wet" = ( /obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "weB" = ( /obj/structure/machinery/light/double/blue{ @@ -36423,21 +28910,14 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "weE" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/oob) "weM" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "weV" = ( /obj/structure/sink{ @@ -36448,9 +28928,7 @@ /obj/structure/mirror{ pixel_x = -29 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "weX" = ( /obj/structure/barricade/metal{ @@ -36468,10 +28946,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "wfo" = ( /obj/structure/coatrack, @@ -36483,10 +28958,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "wfu" = ( /obj/structure/machinery/light/double/blue{ @@ -36500,16 +28972,11 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/fiorina/station/central_ring) "wfV" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "wfY" = ( /obj/item/device/flashlight/flare/on, @@ -36523,10 +28990,7 @@ /area/fiorina/oob) "wgq" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "wgs" = ( /obj/structure/surface/table/reinforced/prison, @@ -36537,15 +29001,10 @@ /obj/item/book/manual/engineering_guide{ pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "wgO" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "whf" = ( /turf/closed/shuttle/elevator{ @@ -36554,16 +29013,11 @@ /area/fiorina/station/civres_blue) "whl" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "whr" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) "whu" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -36572,25 +29026,17 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "wiR" = ( /obj/structure/surface/rack, /obj/item/key, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) "wjC" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/tumor/aux_engi) "wjH" = ( /obj/item/stack/barbed_wire, @@ -36614,40 +29060,26 @@ /area/fiorina/station/medbay) "wkg" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "wky" = ( /obj/structure/tunnel/maint_tunnel, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) "wkA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/power_ring) "wkL" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/flight_deck) "wln" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) "wlv" = ( /obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "wly" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -36666,23 +29098,15 @@ /area/fiorina/tumor/fiberbush) "wmm" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/power_ring) "wmx" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/fiorina/station/security) "wnh" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) "wnq" = ( /obj/item/tool/match, @@ -36695,9 +29119,7 @@ /turf/open/floor/wood, /area/fiorina/station/park) "wnD" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "wnM" = ( /obj/structure/surface/rack, @@ -36708,18 +29130,13 @@ pixel_y = 6 }, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/maintenance) "woh" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "wol" = ( /obj/structure/platform{ @@ -36729,25 +29146,17 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "wou" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "wow" = ( /obj/structure/closet/crate/medical, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "woB" = ( /obj/structure/closet/crate/bravo, @@ -36755,9 +29164,7 @@ /obj/item/stack/sheet/metal/medium_stack, /obj/item/fuel_cell, /obj/item/stack/sheet/plasteel, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "wps" = ( /obj/structure/bed/sofa/south/grey/left, @@ -36765,16 +29172,10 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "wpy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/north, /area/fiorina/station/chapel) "wpD" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -36794,17 +29195,12 @@ name = "Fiberbush(tm) safety plaque"; pixel_y = 29 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "wqs" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/poster, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "wqz" = ( /obj/structure/closet{ @@ -36812,20 +29208,14 @@ pixel_y = 18 }, /obj/item/clothing/gloves/combat, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "wqY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "wrR" = ( /turf/closed/wall/prison, @@ -36838,15 +29228,10 @@ /area/fiorina/station/disco) "wsw" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "wsz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) "wsM" = ( /obj/structure/barricade/handrail/type_b{ @@ -36855,10 +29240,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "wtm" = ( /obj/structure/monorail{ @@ -36877,24 +29259,16 @@ dir = 4 }, /obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "wua" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/power_ring) "wun" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/fiorina/tumor/ice_lab) "wuz" = ( /obj/structure/stairs/perspective{ @@ -36927,21 +29301,15 @@ /area/fiorina/station/park) "wuN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "wuW" = ( /obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "wvH" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "wvL" = ( /obj/item/tool/wrench, @@ -36949,10 +29317,7 @@ /area/fiorina/station/central_ring) "wvU" = ( /obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "wvY" = ( /obj/item/reagent_container/food/snacks/eat_bar, @@ -36962,31 +29327,22 @@ /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) "wwa" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/fiorina/tumor/civres) "wwo" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; name = "\improper Fiorina Engineering Canteen Vendor" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "wxl" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/maintenance) "wxW" = ( /obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "wxX" = ( /obj/structure/machinery/computer/cameras{ @@ -36998,9 +29354,7 @@ /area/fiorina/station/security/wardens) "wxY" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "wxZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -37023,9 +29377,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "wyl" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -37041,15 +29393,11 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/oob) "wyQ" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "wyT" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -37057,9 +29405,7 @@ /area/fiorina/station/transit_hub) "wyU" = ( /obj/effect/decal/cleanable/blood/gibs/robot/up, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "wzd" = ( /obj/structure/stairs/perspective{ @@ -37070,19 +29416,13 @@ /area/fiorina/station/security) "wzg" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) "wzE" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/lowsec) "wzH" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/chapel) "wzK" = ( /obj/structure/platform{ @@ -37113,18 +29453,13 @@ "wAt" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) "wAQ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) "wBx" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -37133,26 +29468,18 @@ pixel_x = 6; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "wBB" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) "wBE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) "wBK" = ( /obj/item/stack/tile/plasteel, @@ -37163,33 +29490,22 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "wCI" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/station/park) "wCJ" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "wDe" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, +/turf/open/floor/prison/greenblue, /area/fiorina/station/botany) "wDw" = ( /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "wDz" = ( /obj/structure/machinery/vending/snack, @@ -37197,9 +29513,7 @@ /area/fiorina/station/security) "wDJ" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "wDK" = ( /obj/structure/machinery/shower{ @@ -37209,10 +29523,7 @@ /obj/structure/window{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "wED" = ( /obj/structure/machinery/light/double/blue{ @@ -37220,17 +29531,11 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/civres_blue) "wEE" = ( /obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "wEX" = ( /obj/structure/machinery/light/double/blue{ @@ -37238,26 +29543,18 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "wFd" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) "wFp" = ( /obj/item/stack/cable_coil/pink, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "wFB" = ( /obj/structure/machinery/light/double/blue{ @@ -37265,23 +29562,16 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "wFM" = ( /obj/structure/machinery/power/apc{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "wFS" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/fiorina/station/chapel) "wFU" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -37291,9 +29581,7 @@ /obj/item/ammo_casing{ icon_state = "casing_1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) "wGf" = ( /obj/item/stack/rods, @@ -37305,9 +29593,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "wGM" = ( /obj/item/device/taperecorder{ @@ -37324,10 +29610,7 @@ layer = 2.5; pixel_y = -11 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "wHl" = ( /obj/structure/platform_decoration{ @@ -37343,10 +29626,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/fiorina/station/security) "wHw" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, @@ -37357,9 +29637,7 @@ dir = 4 }, /obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "wId" = ( /obj/structure/reagent_dispensers/fueltank, @@ -37377,16 +29655,11 @@ /area/fiorina/tumor/aux_engi) "wIx" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/prison/red/east, /area/fiorina/station/security) "wIy" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "wIG" = ( /obj/structure/platform/kutjevo/smooth{ @@ -37416,15 +29689,11 @@ /area/fiorina/tumor/aux_engi) "wIL" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "wJd" = ( /obj/structure/barricade/handrail, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) "wJw" = ( /obj/structure/closet/crate/trashcart, @@ -37441,9 +29710,7 @@ /area/fiorina/station/park) "wKl" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "wKm" = ( /obj/item/stack/sheet/cardboard, @@ -37453,10 +29720,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) "wKE" = ( /obj/effect/landmark/monkey_spawn, @@ -37469,9 +29733,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "wLA" = ( /obj/structure/extinguisher_cabinet, @@ -37479,10 +29741,7 @@ /area/fiorina/station/security) "wLS" = ( /obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/fiorina/tumor/servers) "wLT" = ( /obj/structure/prop/structure_lattice{ @@ -37493,9 +29752,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "wMe" = ( /obj/structure/surface/table/reinforced/prison, @@ -37507,9 +29764,7 @@ pixel_x = 7; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "wMh" = ( /obj/structure/surface/table/reinforced/prison, @@ -37526,9 +29781,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) "wMz" = ( /obj/structure/machinery/faxmachine, @@ -37537,10 +29790,7 @@ /area/fiorina/station/security/wardens) "wMA" = ( /obj/item/disk/botany, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "wNi" = ( /obj/effect/landmark/yautja_teleport, @@ -37550,10 +29800,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) "wNB" = ( /obj/structure/closet/firecloset/full, @@ -37561,61 +29808,40 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "wND" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/civres_blue) "wNG" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "wNM" = ( /obj/item/tool/weldingtool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "wNX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/station/chapel) "wOG" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "wPz" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/telecomm/lz1_cargo) "wQb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) "wQg" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "wQD" = ( /obj/structure/surface/table/reinforced/prison, @@ -37623,9 +29849,7 @@ dir = 1 }, /obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "wQN" = ( /obj/structure/machinery/floodlight/landing/floor, @@ -37652,10 +29876,7 @@ /area/fiorina/station/park) "wQY" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "wRg" = ( /obj/item/stack/sheet/metal, @@ -37666,10 +29887,7 @@ /area/fiorina/tumor/servers) "wRz" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/central_ring) "wRP" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -37680,9 +29898,7 @@ /area/fiorina/lz/near_lzI) "wSb" = ( /obj/structure/machinery/gibber, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "wSc" = ( /obj/structure/barricade/wooden{ @@ -37699,9 +29915,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "wSm" = ( /turf/open/floor/plating/prison, @@ -37710,10 +29924,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/station/park) "wSt" = ( /obj/structure/monorail{ @@ -37729,9 +29940,7 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "wSD" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, @@ -37740,43 +29949,28 @@ "wSN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) "wSU" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) "wSX" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) "wTC" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/station/telecomm/lz1_cargo) "wTW" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/disco) "wUs" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/fiorina/station/civres_blue) "wUz" = ( /obj/item/frame/toolbox_tiles, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/fiorina/station/research_cells) "wVc" = ( /obj/structure/surface/table/reinforced/prison, @@ -37784,9 +29978,7 @@ pixel_x = 11; pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "wWs" = ( /turf/open/floor/greengrid, @@ -37804,9 +29996,7 @@ /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "wXy" = ( /obj/structure/largecrate/random, @@ -37820,10 +30010,7 @@ "wXN" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "wXQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -37832,37 +30019,25 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "wYq" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "wYP" = ( /obj/structure/platform, /obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/botany) "wYT" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/power_ring) "wZt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/fiorina/station/research_cells) "wZv" = ( /obj/item/stack/sheet/metal, @@ -37879,32 +30054,22 @@ "xak" = ( /obj/structure/closet/emcloset, /obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "xat" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "xaO" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "xbc" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/central_ring) "xbm" = ( /obj/structure/machinery/line_nexter{ @@ -37920,10 +30085,7 @@ icon_state = "sandbag_0"; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "xbp" = ( /obj/item/card/id/silver/clearance_badge/cl{ @@ -37931,30 +30093,21 @@ name = "certified powerloader operator card"; registered_name = "John Forklift" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "xbr" = ( /obj/structure/machinery/power/apc{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/prison/green/north, /area/fiorina/station/transit_hub) "xbE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "xbM" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "xck" = ( /obj/structure/largecrate/random/case/small, @@ -37967,9 +30120,7 @@ pixel_y = 21 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xcS" = ( /obj/structure/platform{ @@ -37980,9 +30131,7 @@ pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xdb" = ( /obj/structure/closet/bodybag, @@ -38004,15 +30153,11 @@ /area/fiorina/station/telecomm/lz1_tram) "xdL" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) "xdT" = ( /obj/item/trash/cigbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xdZ" = ( /obj/structure/machinery/light/double/blue{ @@ -38020,22 +30165,15 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "xei" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "xel" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "xew" = ( /turf/closed/shuttle/ert{ @@ -38046,9 +30184,7 @@ /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) "xeX" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/fiorina/tumor/servers) "xfb" = ( /obj/item/inflatable, @@ -38063,40 +30199,28 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "xgb" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "xgn" = ( /obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "xgx" = ( /obj/structure/machinery/defenses/tesla_coil{ faction_group = list("USCM") }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "xgC" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) "xgF" = ( /obj/structure/machinery/light/double/blue, @@ -38104,37 +30228,25 @@ /area/fiorina/station/medbay) "xgH" = ( /obj/item/toy/handcard/uno_reverse_blue, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "xgU" = ( /obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/fiorina/tumor/servers) "xhL" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopleft" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "xhM" = ( /obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) "xia" = ( /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "xiF" = ( /obj/structure/largecrate/random/case/double, @@ -38145,16 +30257,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) "xiL" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) "xiO" = ( /obj/structure/machinery/vending/cigarette/free, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "xja" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -38167,16 +30274,11 @@ /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) "xjM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/prison/redcorner/west, /area/fiorina/station/security) "xkm" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "xkq" = ( /obj/structure/platform, @@ -38186,9 +30288,7 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xkv" = ( /turf/closed/wall/prison, @@ -38197,18 +30297,13 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "xlk" = ( /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "xlp" = ( /obj/structure/bed/chair/office/dark{ @@ -38219,9 +30314,7 @@ "xlx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/tomatosoup, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/fiorina/station/power_ring) "xlZ" = ( /obj/structure/surface/table/woodentable, @@ -38240,17 +30333,11 @@ /area/fiorina/station/security/wardens) "xmC" = ( /obj/item/device/flashlight/flare/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "xmV" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_tram) "xna" = ( /obj/item/stack/tile/plasteel, @@ -38266,10 +30353,7 @@ pixel_y = 18 }, /obj/item/clothing/gloves/combat, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "xnU" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -38280,10 +30364,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/medbay) "xow" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/prison/green/east, /area/fiorina/station/chapel) "xoK" = ( /obj/structure/closet, @@ -38295,18 +30376,13 @@ "xoR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "xpj" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_4" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) "xpw" = ( /obj/structure/machinery/power/apc{ @@ -38320,32 +30396,22 @@ /area/fiorina/station/security) "xpM" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xpO" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "xqP" = ( /obj/structure/surface/rack, /obj/item/tool/plantspray/weeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "xqY" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "xrd" = ( /obj/structure/machinery/computer3/server/rack, @@ -38359,15 +30425,11 @@ /obj/structure/machinery/computer/skills{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "xrz" = ( /obj/item/clothing/head/cmcap, -/turf/open/floor/prison{ - icon_state = "green" - }, +/turf/open/floor/prison/green, /area/fiorina/station/transit_hub) "xrH" = ( /obj/structure/machinery/landinglight/ds2{ @@ -38379,9 +30441,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "xsh" = ( /obj/structure/bed/roller, @@ -38389,10 +30449,7 @@ pixel_y = 19 }, /obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "xst" = ( /obj/structure/platform, @@ -38400,10 +30457,7 @@ /area/fiorina/station/chapel) "xsC" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "xsS" = ( /obj/structure/bed/chair{ @@ -38413,10 +30467,7 @@ /area/fiorina/station/power_ring) "xsX" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "xtd" = ( /obj/structure/largecrate/random/case/small, @@ -38429,9 +30480,7 @@ /area/fiorina/station/telecomm/lz1_tram) "xtm" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "xtP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -38451,10 +30500,7 @@ /obj/effect/decal/medical_decals{ icon_state = "docstripingdir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "xvv" = ( /turf/open/floor/prison, @@ -38467,9 +30513,7 @@ /area/fiorina/station/transit_hub) "xvC" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) "xvI" = ( /obj/structure/disposalpipe/segment{ @@ -38484,17 +30528,11 @@ "xwo" = ( /obj/structure/surface/rack, /obj/item/storage/box/sprays, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "xwt" = ( /obj/structure/bed/chair/comfy, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "xwC" = ( /turf/closed/wall/mineral/bone_resin, @@ -38506,19 +30544,13 @@ /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_2" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) "xxU" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) "xxX" = ( /obj/effect/decal/cleanable/blood/splatter{ @@ -38530,10 +30562,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "xyw" = ( /obj/structure/machinery/computer/arcade, @@ -38544,16 +30573,10 @@ /area/fiorina/tumor/civres) "xzs" = ( /obj/structure/machinery/space_heater, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "xzN" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/chapel) "xAl" = ( /obj/structure/cargo_container/grant/right{ @@ -38564,24 +30587,15 @@ "xAo" = ( /obj/item/trash/cigbutt/bcigbutt, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "xAq" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "xAs" = ( /obj/item/device/reagent_scanner, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) "xAY" = ( /obj/effect/landmark{ @@ -38589,16 +30603,11 @@ name = "xeno_hive_spawn" }, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/north, /area/fiorina/tumor/ice_lab) "xBc" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "xBl" = ( /obj/structure/surface/table/woodentable, @@ -38628,9 +30637,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "xCa" = ( /obj/item/toy/crayon/rainbow, @@ -38638,32 +30645,21 @@ /area/fiorina/station/power_ring) "xCg" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "xCh" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "xCp" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) "xCr" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) "xCv" = ( /obj/structure/platform{ @@ -38676,10 +30672,7 @@ /turf/open/floor/prison, /area/fiorina/station/civres_blue) "xDk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/fiorina/station/civres_blue) "xDq" = ( /turf/closed/shuttle/ert{ @@ -38695,9 +30688,7 @@ icon_state = "pottedplant_29"; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xEy" = ( /obj/structure/machinery/light/double/blue{ @@ -38705,56 +30696,36 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) "xEH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) "xEW" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xEX" = ( /obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/lz/near_lzI) "xFf" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "xFg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/central_ring) "xFJ" = ( /obj/item/tool/soap, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/lowsec) "xFL" = ( /obj/effect/decal{ icon = 'icons/obj/items/policetape.dmi'; icon_state = "engineering_v" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "xFP" = ( /turf/closed/shuttle/ert{ @@ -38765,40 +30736,28 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "xGd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/cigarette/weed{ icon_state = "ucigoff" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/lowsec) "xGi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "xGl" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xGr" = ( /obj/item/trash/sosjerky, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) "xGt" = ( /obj/structure/window/framed/prison/reinforced, @@ -38811,10 +30770,7 @@ /area/fiorina/station/security) "xHi" = ( /obj/item/trash/candle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "xHV" = ( /turf/closed/wall/mineral/bone_resin, @@ -38833,9 +30789,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) "xIx" = ( /obj/structure/largecrate/random, @@ -38843,9 +30797,7 @@ /area/fiorina/station/chapel) "xJn" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) "xJw" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -38855,10 +30807,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) "xKj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -38885,15 +30834,11 @@ pixel_x = 8; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/lowsec) "xKP" = ( /obj/structure/barricade/handrail, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "xKX" = ( /turf/open/floor/plating/prison, @@ -38902,18 +30847,13 @@ /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "xLf" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibmid1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "xLi" = ( /turf/closed/wall/prison, @@ -38930,18 +30870,14 @@ /area/fiorina/station/medbay) "xLx" = ( /obj/item/bedsheet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) "xLD" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "xLQ" = ( /obj/structure/window/framed/prison, @@ -38954,10 +30890,7 @@ /area/fiorina/station/medbay) "xMp" = ( /obj/item/trash/c_tube, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "xMO" = ( /obj/item/stack/sandbags_empty/half, @@ -38979,18 +30912,13 @@ /area/fiorina/oob) "xMX" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "xNg" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "2" }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) "xNm" = ( /obj/structure/extinguisher_cabinet, @@ -39008,67 +30936,46 @@ "xNG" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "xNJ" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 }, /obj/item/frame/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/disco) "xNU" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/station/flight_deck) "xOm" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "xOs" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "xOE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) "xOU" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) "xPk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/prison/greencorner/west, /area/fiorina/tumor/civres) "xPG" = ( /obj/structure/bed/chair/comfy{ @@ -39077,9 +30984,7 @@ /turf/open/floor/plating/prison, /area/fiorina/maintenance) "xQx" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "xQC" = ( /obj/structure/platform/kutjevo/smooth, @@ -39102,25 +31007,17 @@ /area/fiorina/station/power_ring) "xRw" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/fiorina/station/power_ring) "xRI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) "xRY" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/card/id/visa, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) "xSz" = ( /obj/structure/barricade/metal/wired{ @@ -39133,33 +31030,22 @@ dir = 1; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/central_ring) "xTf" = ( /obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) "xTD" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "xTW" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "xUi" = ( /obj/structure/surface/rack, @@ -39179,26 +31065,19 @@ /area/fiorina/lz/near_lzII) "xUr" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) "xVw" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "xVJ" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "xVK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -39207,15 +31086,10 @@ /obj/structure/barricade/handrail/type_b{ layer = 3.5 }, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "xVW" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/station/park) "xWc" = ( /obj/item/clothing/shoes/dress, @@ -39226,16 +31100,11 @@ pixel_x = -5; pixel_y = -11 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) "xWG" = ( /obj/item/weapon/twohanded/spear, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) "xWV" = ( /obj/structure/surface/table/reinforced/prison, @@ -39250,17 +31119,13 @@ pixel_y = 10 }, /obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "xXh" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "xXl" = ( /obj/structure/flora/pottedplant{ @@ -39283,9 +31148,7 @@ /area/fiorina/station/power_ring) "xXY" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) "xYe" = ( /obj/structure/tunnel/maint_tunnel, @@ -39299,49 +31162,33 @@ /obj/structure/machinery/power/apc{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) "xYJ" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/fiorina/station/research_cells) "xYN" = ( /obj/item/device/t_scanner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) "xYR" = ( /obj/item/paper_bin{ pixel_x = 5; pixel_y = 22 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) "xZx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) "xZA" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_tram) "xZD" = ( /obj/structure/surface/table/reinforced/prison, @@ -39361,23 +31208,15 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) "xZM" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/prison/green/west, /area/fiorina/tumor/civres) "xZN" = ( /obj/item/clothing/under/shorts/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/central_ring) "xZR" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -39389,17 +31228,11 @@ /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) "xZV" = ( /obj/item/trash/semki, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "yar" = ( /obj/structure/machinery/vending/cola, @@ -39407,10 +31240,7 @@ dir = 1; pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) "yat" = ( /obj/item/inflatable/door, @@ -39463,9 +31293,7 @@ /area/fiorina/station/park) "ycf" = ( /obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ycw" = ( /obj/structure/machinery/light/double/blue{ @@ -39473,10 +31301,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "ycC" = ( /turf/open/floor/plating/prison, @@ -39487,9 +31312,7 @@ /area/fiorina/tumor/fiberbush) "ycT" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) "ydb" = ( /obj/structure/machinery/light/double/blue{ @@ -39501,29 +31324,20 @@ /area/fiorina/station/civres_blue) "ydd" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) "ydK" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) "ydQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) "yet" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) "yeA" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, @@ -39543,20 +31357,14 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/disco) "yfA" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) "yfE" = ( /obj/structure/disposalpipe/junction{ @@ -39565,10 +31373,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) "yfK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/fiorina/maintenance) "yge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -39579,24 +31384,17 @@ layer = 3.5 }, /obj/effect/spawner/random/technology_scanner, -/turf/open/organic/grass{ - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "ygk" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner, /area/fiorina/station/lowsec) "ygr" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/security) "ygs" = ( /obj/structure/platform{ @@ -39626,9 +31424,7 @@ /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "yhu" = ( /obj/structure/window/framed/prison, @@ -39645,10 +31441,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells) "yhR" = ( /obj/structure/sign/prop3{ @@ -39671,30 +31464,21 @@ /area/fiorina/tumor/civres) "yiL" = ( /obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "yiR" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/fiorina/station/civres_blue) "yiT" = ( /obj/structure/barricade/sandbags{ icon_state = "sandbag_0"; pixel_y = -14 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/lz/near_lzI) "yjW" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ykw" = ( /obj/structure/inflatable/popped, @@ -39725,10 +31509,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/fiorina/station/research_cells) "ylu" = ( /obj/item/tool/wrench, @@ -39738,10 +31519,7 @@ /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) (1,1,1) = {" @@ -85644,7 +77422,7 @@ vlU xSz uYi lRT -deL +dzl dzl dzl dzl @@ -88367,10 +80145,10 @@ xDw lRT lRT lRT -ukR -ukR -ukR -ukR +taY +taY +taY +taY lRT lRT lRT diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm index b2a660473a19..410ef56b0c1e 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm @@ -13,9 +13,7 @@ }, /area/template_noop) "aW" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "bh" = ( /turf/closed/wall/strata_ice/jungle{ @@ -31,21 +29,15 @@ /area/template_noop) "bC" = ( /obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "eF" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "fE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "fI" = ( /obj/structure/machinery/light/small{ @@ -73,9 +65,7 @@ pixel_y = 7; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "fN" = ( /obj/structure/largecrate/random/barrel{ @@ -96,9 +86,7 @@ /obj/structure/barricade/sandbags/wired{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "gi" = ( /obj/structure/girder/displaced, @@ -106,9 +94,7 @@ /area/template_noop) "hP" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "iT" = ( /obj/structure/barricade/metal/wired{ @@ -118,9 +104,7 @@ pixel_x = -15; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "iU" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -134,9 +118,7 @@ "kA" = ( /obj/structure/bed/chair/dropship/pilot, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "kO" = ( /obj/structure/machinery/light/small{ @@ -145,9 +127,7 @@ pixel_y = 10 }, /obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "kR" = ( /obj/structure/machinery/light/small{ @@ -159,9 +139,7 @@ pixel_y = 29; pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "lI" = ( /obj/structure/largecrate/random/barrel{ @@ -251,9 +229,7 @@ /area/template_noop) "qn" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "qI" = ( /turf/closed/shuttle/ert{ @@ -284,9 +260,7 @@ pixel_x = -7; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "tp" = ( /turf/open/floor/almayer, @@ -304,9 +278,7 @@ /area/template_noop) "vI" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "wO" = ( /turf/closed/shuttle/ert{ @@ -380,10 +352,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/template_noop) "EW" = ( /turf/closed/shuttle/ert{ @@ -393,15 +362,10 @@ /area/template_noop) "Fd" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "FV" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/template_noop) "Gu" = ( /obj/structure/prop/structure_lattice{ @@ -412,9 +376,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Hb" = ( /obj/structure/machinery/light/small{ @@ -462,18 +424,13 @@ icon_state = "fullgrass_2"; name = "Fiberbush(tm) tubers" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +/turf/open/organic/grass/astroturf, /area/template_noop) "JP" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "Ki" = ( /obj/effect/landmark/survivor_spawner, @@ -490,9 +447,7 @@ /obj/item/clothing/head/soft/ferret{ pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "Ky" = ( /obj/structure/bed, @@ -553,9 +508,7 @@ /obj/item/device/healthanalyzer{ pixel_y = -9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "ON" = ( /turf/closed/shuttle/ert{ @@ -574,9 +527,7 @@ /turf/open/floor/plating/plating_catwalk, /area/template_noop) "QZ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "Sh" = ( /obj/structure/machinery/light/small{ @@ -597,10 +548,7 @@ /area/template_noop) "TS" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/template_noop) "Uh" = ( /turf/closed/shuttle/ert{ @@ -621,9 +569,7 @@ /obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "Vh" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -633,9 +579,7 @@ /obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/template_noop) "VD" = ( /obj/structure/bed, diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm index 826f67364751..4013f2605422 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm @@ -1,27 +1,21 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "b" = ( /obj/item/reagent_container/food/drinks/bottle/gin{ pixel_y = -6; pixel_x = -9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "e" = ( /obj/effect/landmark/corpsespawner/prison_security, /obj/item/clothing/head/cakehat{ pixel_x = -10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "h" = ( /obj/structure/surface/table/woodentable/poor, @@ -33,17 +27,13 @@ pixel_x = -1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "i" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "o" = ( /obj/structure/machinery/light/double/blue{ @@ -53,18 +43,14 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "s" = ( /obj/item/weapon/broken_bottle{ pixel_x = 5; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "u" = ( /turf/closed/wall/prison, @@ -76,23 +62,17 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "B" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "C" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "E" = ( /obj/structure/surface/table/woodentable/poor, @@ -100,9 +80,7 @@ pixel_y = 14; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "G" = ( /obj/structure/surface/table/woodentable/poor, @@ -114,15 +92,11 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "H" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "K" = ( /obj/structure/prop/souto_land/pole{ @@ -130,9 +104,7 @@ pixel_x = 10; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "L" = ( /obj/structure/surface/table/woodentable/poor, @@ -144,25 +116,19 @@ pixel_y = 2; pixel_x = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "N" = ( /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "P" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "U" = ( /obj/structure/prop/souto_land/pole{ @@ -177,9 +143,7 @@ pixel_x = 8; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Y" = ( /obj/structure/machinery/light/double/blue{ @@ -188,17 +152,13 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Z" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm index f9a376869849..62e24f138207 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm @@ -14,23 +14,18 @@ req_access = null }, /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "e" = ( /turf/closed/wall/prison, /area/template_noop) "g" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "i" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; - req_access = null; req_one_access = null }, /turf/open/floor/plating/prison, @@ -42,9 +37,7 @@ /obj/item/clothing/shoes/galoshes{ pixel_y = -6 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "l" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -53,9 +46,7 @@ /obj/item/clothing/shoes/dress/commander{ pixel_y = -9 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "m" = ( /obj/structure/closet/secure_closet/security_empty, @@ -63,21 +54,15 @@ dir = 8 }, /obj/item/storage/box/flashbangs, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "n" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "r" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "s" = ( /obj/structure/machinery/power/apc{ @@ -95,9 +80,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "v" = ( /obj/item/clothing/under/color/orange, @@ -108,18 +91,14 @@ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "x" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/template_noop) "y" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "z" = ( /obj/item/clothing/shoes/black{ @@ -134,9 +113,7 @@ pixel_x = -7; pixel_y = -15 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "C" = ( /obj/structure/machinery/light/double/blue{ @@ -159,18 +136,14 @@ "F" = ( /obj/item/prop/helmetgarb/riot_shield, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "I" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null }, /obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "J" = ( /obj/structure/window/reinforced{ @@ -180,9 +153,7 @@ /area/template_noop) "K" = ( /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "L" = ( /obj/structure/window/framed/prison/reinforced, @@ -202,9 +173,7 @@ /area/template_noop) "U" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "V" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -217,15 +186,11 @@ pixel_x = 2; pixel_y = -9 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "X" = ( /obj/item/frame/rack, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "Z" = ( /obj/effect/landmark/corpsespawner/ua_riot, diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm index c9f19cbe91e5..eb7b53bac0de 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm @@ -3,10 +3,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/template_noop) "aA" = ( /obj/effect/landmark/monkey_spawn, @@ -23,9 +20,7 @@ /turf/open/floor/prison, /area/template_noop) "fi" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/template_noop) "gB" = ( /obj/structure/surface/table/reinforced/prison, @@ -42,16 +37,11 @@ /area/template_noop) "hT" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/template_noop) "jh" = ( /obj/item/trash/pistachios, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "ji" = ( /obj/structure/surface/table/reinforced/prison, @@ -64,24 +54,18 @@ pixel_y = 18; desc = "Wait, why won't it work with my computer?" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "kU" = ( /obj/structure/machinery/deployable/barrier, /turf/open/floor/plating/prison, /area/template_noop) "lm" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "mN" = ( /obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "na" = ( /obj/structure/surface/table/reinforced/prison, @@ -97,29 +81,18 @@ /obj/item/reagent_container/food/drinks/cans/dr_gibb{ pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/template_noop) "nZ" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "pq" = ( /obj/structure/prop/dam/crane, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/template_noop) "sl" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/template_noop) "sF" = ( /obj/structure/surface/table/reinforced/prison, @@ -131,83 +104,55 @@ pixel_x = 4; pixel_y = -8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/template_noop) "tg" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "tn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/template_noop) "tH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/template_noop) "uf" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/template_noop) "ur" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "uD" = ( /obj/item/trash/wy_chips_pepper, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "uO" = ( /obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/template_noop) "va" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/template_noop) "wj" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/template_noop) "xH" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "yS" = ( /turf/closed/wall/prison, @@ -218,27 +163,17 @@ }, /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "zL" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "CE" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/template_noop) "CO" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/template_noop) "CV" = ( /obj/structure/surface/table/reinforced/prison, @@ -246,17 +181,13 @@ dir = 8; icon_state = "commb" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "DF" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/template_noop) "DV" = ( /obj/structure/machinery/light/double/blue{ @@ -264,9 +195,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "El" = ( /obj/structure/bed/chair{ @@ -276,9 +205,7 @@ /area/template_noop) "Ep" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Fp" = ( /turf/open/floor/prison, @@ -288,16 +215,11 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Jv" = ( /obj/item/trash/chunk, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/west, /area/template_noop) "Kd" = ( /obj/structure/prop/structure_lattice{ @@ -309,9 +231,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Mn" = ( /obj/structure/machinery/light/double/blue{ @@ -319,9 +239,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "MZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -330,17 +248,11 @@ icon_state = "commb"; layer = 2.99 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/template_noop) "Ng" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/template_noop) "Ot" = ( /obj/structure/surface/table/reinforced/prison, @@ -348,17 +260,12 @@ dir = 4; icon_state = "commb" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Oy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/chips, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/template_noop) "OG" = ( /turf/closed/wall/mineral/bone_resin, @@ -387,23 +294,16 @@ pixel_y = 21 }, /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "QF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "QG" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/template_noop) "Rd" = ( /obj/structure/bed/chair{ @@ -411,19 +311,13 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/template_noop) "RW" = ( /turf/open/floor/bluegrid, /area/template_noop) "Ss" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/template_noop) "SF" = ( /obj/structure/surface/table/reinforced/prison, @@ -436,32 +330,24 @@ pixel_x = 8; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Tl" = ( /obj/structure/computer3frame, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "TI" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Vc" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "VZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -481,28 +367,18 @@ dir = 4; icon_state = "commb" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/template_noop) "WV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) "XD" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/template_noop) "Yj" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/template_noop) "Za" = ( /obj/structure/surface/table/reinforced/prison, @@ -518,17 +394,12 @@ pixel_y = 13 }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Zn" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm index 61fd7320e1ce..8ec3365773a2 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm @@ -4,9 +4,7 @@ layer = 2.7; dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) "aZ" = ( /obj/structure/bed/roller, @@ -14,10 +12,7 @@ pixel_y = 19 }, /obj/item/bedsheet/medical, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "bl" = ( /obj/structure/machinery/light/double/blue{ @@ -25,27 +20,18 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) "bm" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "bs" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "bv" = ( /obj/structure/stairs/perspective{ @@ -62,10 +48,7 @@ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "cO" = ( /obj/structure/machinery/door/airlock/almayer/marine{ @@ -76,43 +59,29 @@ /area/template_noop) "dg" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "dp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) "dK" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/template_noop) "eb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; - req_access = null; req_one_access = null }, /turf/open/floor/plating/prison, /area/template_noop) "eO" = ( /obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) "fn" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) "go" = ( /obj/structure/sign/prop3{ @@ -122,79 +91,52 @@ /area/template_noop) "gC" = ( /obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "ir" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) "it" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/template_noop) "iK" = ( /obj/structure/janitorialcart, /turf/open/floor/prison, /area/template_noop) "jy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) "kE" = ( /turf/closed/wall/prison, /area/template_noop) "kG" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "kK" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "kY" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "kZ" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "lm" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "nj" = ( /obj/structure/bed/chair/janicart, @@ -212,17 +154,11 @@ /area/template_noop) "nx" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/template_noop) "nJ" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "nR" = ( /obj/structure/platform{ @@ -230,10 +166,7 @@ }, /obj/effect/decal/cleanable/blood/drip, /obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "nX" = ( /obj/structure/bed/roller, @@ -242,10 +175,7 @@ }, /obj/item/bedsheet/medical, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "of" = ( /obj/structure/surface/table/reinforced/prison, @@ -258,10 +188,7 @@ pixel_y = 6; layer = 3.1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, /area/template_noop) "oy" = ( /obj/structure/machinery/light/double/blue{ @@ -269,45 +196,27 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "ph" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "pR" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) "qb" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) "qe" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) "qS" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "sk" = ( /obj/structure/bed/roller, @@ -317,53 +226,33 @@ /obj/item/bedsheet/medical, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/greenglow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "tE" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "tL" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/template_noop) "uE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/template_noop) "uG" = ( /obj/effect/decal/prints{ pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "uU" = ( /obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "vA" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "xC" = ( /obj/structure/surface/table/reinforced/prison, @@ -371,10 +260,7 @@ pixel_y = 4 }, /obj/item/storage/surgical_tray, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "xY" = ( /obj/structure/largecrate/random/case/double{ @@ -389,37 +275,23 @@ pixel_y = -17; pixel_x = -5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "zm" = ( /obj/structure/machinery/optable, /obj/item/bedsheet/rainbow, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) "zG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/template_noop) "Be" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "BS" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "Cr" = ( /obj/structure/largecrate/random/barrel/yellow{ @@ -437,10 +309,7 @@ pixel_y = 6; layer = 2.7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "CA" = ( /obj/structure/extinguisher_cabinet, @@ -448,10 +317,7 @@ /area/template_noop) "Df" = ( /obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) "Es" = ( /obj/item/reagent_container/glass/bucket/mopbucket, @@ -463,10 +329,7 @@ dir = 4; layer = 2.7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "ES" = ( /obj/structure/platform{ @@ -476,10 +339,7 @@ icon_state = "triagedecalbottomleft" }, /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "EZ" = ( /obj/structure/machinery/shower{ @@ -515,10 +375,7 @@ "GL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "GT" = ( /obj/structure/machinery/cryo_cell, @@ -532,26 +389,17 @@ icon_state = "triagedecalbottomleft" }, /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/template_noop) "Hw" = ( /obj/item/ammo_casing{ icon_state = "cartridge_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "HS" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) "IK" = ( /obj/structure/platform{ @@ -571,10 +419,7 @@ layer = 2.9; pixel_y = -8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "JJ" = ( /obj/structure/platform_decoration{ @@ -584,29 +429,21 @@ dir = 4; layer = 2.8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "JL" = ( /obj/structure/platform_decoration{ dir = 1 }, /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) "JW" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) "Kk" = ( /obj/structure/machinery/door/airlock/almayer/marine{ @@ -622,30 +459,19 @@ /obj/item/reagent_container/food/drinks/coffee{ pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "Ky" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner, /area/template_noop) "KF" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "KJ" = ( /obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/east, /area/template_noop) "Mi" = ( /obj/structure/machinery/light/double/blue{ @@ -654,10 +480,7 @@ pixel_y = 13 }, /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/template_noop) "NV" = ( /obj/structure/machinery/light/double/blue{ @@ -666,10 +489,7 @@ pixel_y = -3 }, /obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) "Od" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -682,10 +502,7 @@ /obj/effect/decal/cleanable/mucus{ pixel_x = -16 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "OH" = ( /obj/structure/largecrate/random/case/double{ @@ -697,31 +514,19 @@ /obj/structure/largecrate/random/case/double{ pixel_y = -18 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Pa" = ( /obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "Pd" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southwest, /area/template_noop) "Pt" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "PE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -734,23 +539,14 @@ icon_state = "triagedecalbottom" }, /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "PV" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreencorner/west, /area/template_noop) "QG" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "Ro" = ( /obj/structure/machinery/shower{ @@ -763,10 +559,7 @@ /area/template_noop) "RG" = ( /obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Sz" = ( /obj/structure/platform{ @@ -778,20 +571,14 @@ layer = 3.1; pixel_y = -4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "Tb" = ( /obj/structure/bed/chair{ dir = 8; layer = 2.7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "TF" = ( /obj/structure/platform_decoration{ @@ -801,47 +588,31 @@ icon_state = "triagedecalleft" }, /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "TV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "UI" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) "US" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Va" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/template_noop) "Vp" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/template_noop) "VD" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) "WP" = ( /obj/structure/platform_decoration{ @@ -850,34 +621,22 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "WY" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Xl" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Yy" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) "Yz" = ( /obj/structure/window/framed/prison/cell, @@ -890,10 +649,7 @@ "Zp" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/machinery/defenses/bell_tower/md, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm index 34dc51f305fb..f30a796cdd74 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm @@ -15,9 +15,7 @@ /area/template_noop) "bO" = ( /obj/item/storage/belt/marine/quackers, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "cb" = ( /obj/item/trash/barcardine{ @@ -35,9 +33,7 @@ pixel_y = -7; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "cq" = ( /obj/structure/surface/table/reinforced/prison, @@ -53,44 +49,31 @@ /area/template_noop) "cK" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "cU" = ( /obj/structure/machinery/power/apc, /turf/open/floor/wood, /area/template_noop) "dB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northwest, /area/template_noop) "ef" = ( /obj/item/toy/beach_ball, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "el" = ( /obj/structure/prop/souto_land/streamer{ dir = 6 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "fv" = ( /obj/item/toy/crossbow_ammo{ pixel_x = -16 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) "fL" = ( /obj/structure/grille, @@ -105,36 +88,26 @@ /obj/structure/prop/invuln/fire{ layer = 2.9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) "fN" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "fX" = ( /turf/closed/wall/mineral/bone_resin, /area/template_noop) "gs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "gV" = ( /turf/open/space, /area/template_noop) "hf" = ( -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "hP" = ( /obj/structure/platform{ @@ -163,19 +136,13 @@ pixel_x = -13; pixel_y = -11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "is" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/template_noop) "iC" = ( /obj/item/tool/mop{ @@ -187,17 +154,11 @@ pixel_x = 9; pixel_y = -5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "iK" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "iY" = ( /obj/structure/surface/table/reinforced/prison, @@ -220,27 +181,20 @@ pixel_y = 6; pixel_x = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "kb" = ( /obj/item/trash/crushed_cup{ pixel_y = -65; pixel_x = 29 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "kA" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "lc" = ( /obj/structure/surface/table/reinforced/prison, @@ -288,16 +242,11 @@ /obj/item/trash/kepler{ pixel_x = 13 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "mj" = ( /obj/structure/prop/souto_land/pole, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "mk" = ( /obj/structure/machinery/light/double/blue{ @@ -311,10 +260,7 @@ /turf/open/floor/wood, /area/template_noop) "mq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/template_noop) "mu" = ( /turf/open/floor/plating/prison, @@ -327,10 +273,7 @@ pixel_x = 31; pixel_y = -16 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "ni" = ( /turf/closed/wall/prison, @@ -356,9 +299,7 @@ /area/template_noop) "ou" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "oL" = ( /obj/structure/lattice, @@ -377,10 +318,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/template_noop) "pG" = ( /obj/structure/stairs/perspective{ @@ -394,10 +332,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "ql" = ( /obj/item/trash/sosjerky{ @@ -405,10 +340,7 @@ pixel_y = -20 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "qm" = ( /obj/structure/stairs/perspective{ @@ -440,9 +372,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "rp" = ( /obj/item/reagent_container/glass/bucket/janibucket, @@ -452,19 +382,14 @@ /obj/item/trash/semki{ pixel_x = 15 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "rt" = ( /obj/item/trash/crushed_cup{ pixel_x = -2; pixel_y = 36 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "rU" = ( /obj/structure/grille, @@ -479,9 +404,7 @@ /obj/structure/prop/invuln/fire{ layer = 2.9 }, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "rW" = ( /obj/structure/bed/chair/comfy{ @@ -523,16 +446,11 @@ /obj/item/trash/plate{ pixel_x = -9 }, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "tM" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/template_noop) "tT" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -542,10 +460,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) "vd" = ( /obj/structure/prop/souto_land/pole, @@ -558,18 +473,13 @@ pixel_y = -9 }, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "vf" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "vU" = ( /obj/structure/surface/table/reinforced/prison, @@ -627,10 +537,7 @@ /turf/open/floor/wood, /area/template_noop) "wS" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southeast, /area/template_noop) "wV" = ( /obj/structure/platform{ @@ -640,9 +547,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "xz" = ( /obj/structure/prop/souto_land/streamer{ @@ -652,9 +557,7 @@ /area/template_noop) "xQ" = ( /obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "xS" = ( /obj/structure/platform{ @@ -668,10 +571,7 @@ /area/template_noop) "yx" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "yL" = ( /obj/structure/stairs/perspective{ @@ -689,9 +589,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "zR" = ( /obj/item/trash/cigbutt{ @@ -719,9 +617,7 @@ /area/template_noop) "Bj" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Bm" = ( /obj/structure/prop/souto_land/pole{ @@ -735,10 +631,7 @@ pixel_x = -3; pixel_y = -9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "Bv" = ( /obj/structure/prop/souto_land/streamer{ @@ -786,10 +679,7 @@ pixel_x = -17; pixel_y = 41 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Cx" = ( /obj/item/weapon/baseballbat/metal, @@ -799,21 +689,15 @@ /obj/item/trash/crushed_cup{ pixel_x = -20 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "DN" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "DT" = ( /obj/structure/platform, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "Fj" = ( /obj/structure/platform_decoration{ @@ -828,10 +712,7 @@ /turf/open/floor/prison, /area/template_noop) "Fo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "Fy" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -840,10 +721,7 @@ /obj/structure/prop/souto_land/streamer{ dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "FD" = ( /obj/structure/surface/table/reinforced/prison, @@ -865,9 +743,7 @@ pixel_x = 11; pixel_y = -8 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Gi" = ( /obj/structure/stairs/perspective{ @@ -908,20 +784,14 @@ pixel_y = -2; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "GO" = ( /obj/item/toy/crossbow_ammo{ pixel_y = -14; pixel_x = -15 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Hn" = ( /obj/structure/platform{ @@ -933,9 +803,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "HP" = ( /obj/structure/prop/souto_land/streamer{ @@ -952,10 +820,7 @@ pixel_y = -6; pixel_x = -8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "IU" = ( /obj/effect/decal/cleanable/blood/oil, @@ -974,10 +839,7 @@ /turf/open/floor/wood, /area/template_noop) "Jr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/east, /area/template_noop) "Jw" = ( /obj/structure/machinery/light/double/blue{ @@ -992,24 +854,17 @@ /area/template_noop) "JR" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "Ke" = ( /obj/item/toy/crossbow_ammo{ pixel_x = 19; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Kx" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "KL" = ( /obj/structure/surface/table/reinforced/prison, @@ -1033,10 +888,7 @@ /area/template_noop) "KM" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "KO" = ( /obj/structure/surface/table/reinforced/prison, @@ -1055,9 +907,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "Ls" = ( /obj/structure/surface/table/reinforced/prison, @@ -1101,10 +951,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "Mn" = ( /obj/structure/platform, @@ -1114,9 +961,7 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "MS" = ( /obj/structure/platform, @@ -1126,78 +971,54 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "ND" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/template_noop) "NQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/southwest, /area/template_noop) "Oz" = ( /obj/item/trash/crushed_cup{ pixel_y = 5; pixel_x = 11 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "PA" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/northeast, /area/template_noop) "PR" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "Qn" = ( /turf/open/floor/prison, /area/template_noop) "QF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) "QO" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Rg" = ( /obj/structure/prop/souto_land/pole{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Ro" = ( /obj/item/toy/bikehorn/rubberducky{ pixel_x = -2; pixel_y = -15 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "Rr" = ( /obj/structure/stairs/perspective{ @@ -1207,9 +1028,7 @@ /turf/open/floor/plating/prison, /area/template_noop) "Rs" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "RW" = ( /obj/structure/surface/table/reinforced/prison, @@ -1230,17 +1049,11 @@ /area/template_noop) "Sg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/template_noop) "SC" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "SO" = ( /obj/structure/machinery/light/double/blue{ @@ -1275,23 +1088,14 @@ pixel_x = 1; pixel_y = -9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "Th" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Tq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) "TO" = ( /obj/structure/prop/souto_land/streamer{ @@ -1319,9 +1123,7 @@ pixel_x = -13; pixel_y = 48 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "Vi" = ( /obj/structure/surface/table/reinforced/prison, @@ -1371,10 +1173,7 @@ /turf/open/floor/prison, /area/template_noop) "Wh" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Wx" = ( /obj/structure/platform, @@ -1382,17 +1181,13 @@ pixel_y = 13; pixel_x = 45 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "WY" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Xn" = ( /obj/item/storage/belt/shotgun/full/quackers{ @@ -1406,32 +1201,22 @@ pixel_y = 4; pixel_x = 1 }, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) "Xu" = ( /obj/structure/platform, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Xw" = ( /obj/item/toy/beach_ball/holoball{ pixel_x = -10; pixel_y = -7 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "XM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "XS" = ( /obj/effect/landmark/corpsespawner/prisoner, @@ -1456,16 +1241,11 @@ pixel_x = -1; pixel_y = -9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "XX" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Yd" = ( /obj/structure/machinery/light/double/blue, @@ -1502,9 +1282,7 @@ /area/template_noop) "ZB" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm index 9ff0e6e4a246..ddf166738112 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm @@ -1,10 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "aU" = ( /obj/structure/sign/poster{ @@ -18,44 +15,30 @@ /turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) "bO" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/template_noop) "bZ" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +/turf/open/floor/prison/floorscorched2, /area/template_noop) "cz" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "cL" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "cM" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "dR" = ( /obj/structure/bookcase/manuals/research_and_development{ pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "eG" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -67,24 +50,18 @@ /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "eQ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "fg" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) "fk" = ( /obj/item/explosive/grenade/incendiary/molotov{ @@ -94,16 +71,11 @@ /turf/open/space/basic, /area/template_noop) "gy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/template_noop) "gB" = ( /obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "gR" = ( /obj/structure/extinguisher_cabinet{ @@ -126,64 +98,43 @@ dir = 4; health = 150 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "jM" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "ke" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "ks" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/card/id/visa, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) "kx" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "kY" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/turf/open/floor/prison/platingdmg1, /area/template_noop) "me" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "mu" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "mz" = ( /obj/item/tool/kitchen/utensil/pspoon, @@ -194,68 +145,42 @@ dir = 4; health = 200 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "nw" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "on" = ( /obj/structure/barricade/metal/wired{ dir = 1; health = 55 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "oR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "pp" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/template_noop) "pP" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/prison/whitepurplecorner/west, /area/template_noop) "qk" = ( /obj/structure/bed{ icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "qu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/template_noop) "qL" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +/turf/open/floor/prison/panelscorched, /area/template_noop) "rb" = ( /obj/structure/toilet{ @@ -266,10 +191,7 @@ dir = 6 }, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) "sa" = ( /obj/structure/sink{ @@ -277,56 +199,38 @@ pixel_x = -12 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "tc" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/toy/deck, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "tr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/template_noop) "tB" = ( /obj/structure/barricade/metal/wired{ dir = 1; health = 65 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "tD" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) "tI" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "tN" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "ux" = ( /obj/structure/sink{ @@ -334,45 +238,32 @@ pixel_x = -12 }, /obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "uF" = ( /obj/effect/decal/prints{ pixel_y = 3; pixel_x = -10 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/template_noop) "uM" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "we" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "wv" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "wy" = ( /obj/structure/surface/table/reinforced/prison, @@ -387,49 +278,32 @@ /obj/item/implanter{ pixel_x = -4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "xy" = ( /obj/structure/grille, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "yv" = ( /obj/structure/sink{ dir = 4; pixel_x = 12 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "zj" = ( /obj/item/stack/sheet/metal{ pixel_y = -9; pixel_x = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "zA" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) "zT" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) "Bl" = ( /obj/structure/sink{ @@ -437,17 +311,11 @@ pixel_x = 12 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "Bx" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/template_noop) "Dq" = ( /obj/structure/barricade/metal/wired{ @@ -458,70 +326,45 @@ pixel_y = 4; pixel_x = -10 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Dt" = ( /obj/structure/bed{ icon_state = "abed" }, /obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "DE" = ( /obj/structure/toilet{ dir = 4; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) "DV" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "EQ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) "ES" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "Fc" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) "FP" = ( /obj/structure/barricade/metal/wired{ dir = 4; health = 55 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Gy" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "GR" = ( /turf/closed/wall/r_wall/prison_unmeltable{ @@ -531,71 +374,47 @@ /area/template_noop) "Hf" = ( /obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "Hp" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) "Hw" = ( /obj/structure/toilet{ dir = 8; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) "HN" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Id" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Ig" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Io" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/floorscorched1, /area/template_noop) "Ix" = ( /obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "IN" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "IW" = ( -/turf/open/floor/prison{ - icon_state = "damaged2" - }, +/turf/open/floor/prison/damaged2, /area/template_noop) "Jm" = ( /obj/structure/sink{ @@ -605,38 +424,25 @@ /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs, /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "JQ" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "Kc" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Kj" = ( /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/template_noop) "KF" = ( -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +/turf/open/floor/prison/damaged3, /area/template_noop) "LM" = ( /turf/closed/wall/prison, @@ -652,10 +458,7 @@ icon_state = "abed" }, /obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "Mo" = ( /obj/structure/window/framed/prison/cell, @@ -665,30 +468,20 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "MI" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/core, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "MO" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Nr" = ( /obj/structure/machinery/light/double/blue, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) "Ns" = ( /obj/structure/surface/table/reinforced/prison, @@ -703,15 +496,10 @@ /obj/item/restraint/handcuffs{ pixel_x = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "NI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Oo" = ( /obj/effect/spawner/gibspawner/human, @@ -719,96 +507,63 @@ /area/template_noop) "Pd" = ( /obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/template_noop) "Pk" = ( /obj/effect/decal/cleanable/spiderling_remains, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "PS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Qc" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) "Qn" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/east, /area/template_noop) "QF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "QU" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Sx" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +/turf/open/floor/prison/floorscorched2, /area/template_noop) "TD" = ( /obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) "TE" = ( /obj/structure/barricade/metal/wired{ dir = 1; health = 150 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "TH" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, +/turf/open/floor/prison/platingdmg3, /area/template_noop) "VP" = ( /obj/structure/barricade/metal/wired{ dir = 8; health = 200 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) "VQ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/west, /area/template_noop) "Wo" = ( /obj/structure/toilet{ @@ -816,10 +571,7 @@ pixel_y = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) "Yw" = ( /obj/structure/extinguisher_cabinet, @@ -830,14 +582,10 @@ dir = 8; health = 55 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) "YY" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg2" - }, +/turf/open/floor/prison/platingdmg2, /area/template_noop) "Zi" = ( /turf/open/space/basic, @@ -847,10 +595,7 @@ icon_state = "abed" }, /obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm index 408bccfc7eea..55e933cf4d27 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm @@ -6,35 +6,23 @@ /turf/open/floor/plating/prison, /area/template_noop) "h" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "k" = ( /obj/structure/sign/poster/hero/voteno{ pixel_y = 29 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "n" = ( /obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "o" = ( /turf/closed/wall/mineral/bone_resin, /area/template_noop) "s" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/template_noop) "t" = ( /obj/structure/filingcabinet{ @@ -46,9 +34,7 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "x" = ( /obj/structure/surface/table/reinforced/prison, @@ -60,10 +46,7 @@ layer = 2.8; pixel_y = -7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "z" = ( /obj/structure/coatrack, @@ -77,10 +60,7 @@ pixel_x = -2; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "D" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, @@ -89,10 +69,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "E" = ( /obj/structure/machinery/photocopier, @@ -104,9 +81,7 @@ /obj/item/paper{ desc = "The image appears to be someone's backside, the page number is labled as 259." }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "F" = ( /obj/structure/surface/table/reinforced/prison, @@ -127,10 +102,7 @@ /obj/item/weapon/butterfly{ pixel_x = 17 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "O" = ( /obj/structure/surface/table/reinforced/prison, @@ -138,10 +110,7 @@ icon_state = "mwo"; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "Q" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -154,15 +123,10 @@ /obj/item/storage/firstaid/regular/empty{ pixel_x = 14 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "T" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "V" = ( /obj/structure/filingcabinet{ @@ -175,9 +139,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/item/pamphlet/engineer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "X" = ( /obj/structure/closet/secure_closet/engineering_electrical, @@ -188,10 +150,7 @@ }, /obj/effect/landmark/objective_landmark/medium, /obj/item/storage/backpack/marine/engineerpack/satchel, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) "Z" = ( /obj/structure/surface/table/reinforced/prison, @@ -202,10 +161,7 @@ /obj/item/book/manual/engineering_guide{ pixel_x = -4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm index 101db372897e..8b840ec4ec8c 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm @@ -1,16 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "b" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/template_noop) "c" = ( /obj/structure/surface/table/reinforced/prison, @@ -26,9 +21,7 @@ pixel_x = -1; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "d" = ( /obj/structure/surface/table/reinforced/prison, @@ -46,17 +39,12 @@ /area/template_noop) "e" = ( /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/template_noop) "f" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "g" = ( /obj/structure/surface/table/reinforced/prison, @@ -67,9 +55,7 @@ pixel_y = -2 }, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "i" = ( /turf/open/space, @@ -90,10 +76,7 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/template_noop) "k" = ( /obj/structure/surface/table/reinforced/prison, @@ -101,17 +84,13 @@ pixel_y = 32 }, /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "l" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "m" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, @@ -120,15 +99,11 @@ /obj/item/reagent_container/food/snacks/grown/tomato, /obj/item/reagent_container/food/snacks/grown/tomato, /obj/item/reagent_container/food/snacks/grown/tomato, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "o" = ( /obj/effect/landmark/corpsespawner/pizza/burst, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "p" = ( /obj/structure/surface/table/reinforced/prison, @@ -157,32 +132,21 @@ pixel_y = -16; pixel_x = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "r" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/template_noop) "s" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/template_noop) "t" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/template_noop) "u" = ( /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/template_noop) "v" = ( /obj/structure/window/framed/prison, @@ -197,9 +161,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "y" = ( /obj/structure/closet/crate/freezer, @@ -208,18 +170,13 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "z" = ( /turf/closed/wall/prison, /area/template_noop) "A" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/template_noop) "B" = ( /obj/structure/surface/table/reinforced/prison, @@ -232,9 +189,7 @@ pixel_x = 12; pixel_y = -2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "C" = ( /obj/structure/surface/table/reinforced/prison, @@ -250,23 +205,16 @@ /obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "D" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/template_noop) "E" = ( /obj/structure/machinery/gibber, /obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "G" = ( /obj/structure/surface/table/reinforced/prison, @@ -293,44 +241,30 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, /obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, /obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "I" = ( /obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "K" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/weapon/pizza_cutter, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "L" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "M" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/prison, /area/template_noop) "N" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/template_noop) "O" = ( /obj/item/card/id/pizza, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/template_noop) "P" = ( /obj/structure/lattice, @@ -342,9 +276,7 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "S" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -362,9 +294,7 @@ pixel_y = 2 }, /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "T" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -383,15 +313,11 @@ /turf/open/floor/plating/prison, /area/template_noop) "X" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Y" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm index 6cda425f51b0..bba4398e4d95 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm @@ -26,9 +26,7 @@ /turf/open/space/basic, /area/template_noop) "e" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "f" = ( /obj/item/stack/sandbags_empty/half, @@ -119,10 +117,7 @@ /area/template_noop) "y" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/template_noop) "z" = ( /obj/structure/platform/kutjevo/smooth{ @@ -141,11 +136,6 @@ }, /turf/open/space, /area/template_noop) -"C" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/template_noop) "D" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -165,10 +155,7 @@ /turf/open/floor/plating/prison, /area/template_noop) "G" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/template_noop) "H" = ( /obj/structure/reagent_dispensers/fueltank/oxygentank, @@ -198,21 +185,14 @@ /turf/open/space, /area/template_noop) "L" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/template_noop) "M" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/template_noop) "N" = ( -/turf/open/floor{ - desc = "A sophisticated device that captures and converts light from the system's star into energy for the station."; - icon_state = "solarpanel"; - name = "solarpanel" - }, +/turf/open/floor/solarpanel, /area/template_noop) "O" = ( /obj/structure/platform/kutjevo/smooth, @@ -239,9 +219,7 @@ /area/template_noop) "T" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/template_noop) "U" = ( /obj/item/stack/sheet/metal, @@ -261,10 +239,7 @@ /turf/open/floor/almayer_hull, /area/template_noop) "X" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/template_noop) "Y" = ( /obj/structure/platform/kutjevo/smooth{ @@ -284,7 +259,7 @@ (1,1,1) = {" x -C +F F F F diff --git a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm index 721ebbc10aed..4cdabb8199c1 100644 --- a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm +++ b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm @@ -4,15 +4,11 @@ /obj/item/storage/donut_box{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "aE" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "aK" = ( /obj/item/clothing/under/marine/ua_riot, @@ -28,9 +24,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "bb" = ( /obj/structure/stairs/perspective{ @@ -38,23 +32,17 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "bl" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "bm" = ( /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "bC" = ( /obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, @@ -65,9 +53,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ce" = ( /obj/effect/decal/cleanable/blood/oil, @@ -77,9 +63,7 @@ /obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "cn" = ( /obj/structure/surface/table/reinforced/prison, @@ -87,15 +71,11 @@ dir = 8 }, /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "co" = ( /obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "cr" = ( /obj/structure/sign/poster/clf, @@ -103,25 +83,18 @@ /area/fiorina/station/security) "cI" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/security) "cZ" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "do" = ( /obj/structure/coatrack, /obj/item/clothing/suit/storage/CMB, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "dT" = ( /obj/structure/surface/table/reinforced/prison, @@ -131,9 +104,7 @@ /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "eK" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -145,9 +116,7 @@ /area/fiorina/station/security) "fh" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "fs" = ( /obj/structure/window/reinforced{ @@ -162,17 +131,13 @@ /area/fiorina/station/security) "fy" = ( /obj/item/explosive/grenade/flashbang, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "fX" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "fZ" = ( /obj/item/ammo_magazine/rifle/m16, @@ -187,15 +152,11 @@ /obj/item/reagent_container/glass/bottle/robot/antitoxin, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "gl" = ( /obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "gI" = ( /obj/structure/surface/table/reinforced/prison, @@ -204,9 +165,7 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "gT" = ( /obj/structure/surface/table/reinforced/prison, @@ -224,21 +183,15 @@ /area/fiorina/station/security) "hg" = ( /obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "hI" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "hY" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "is" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -249,9 +202,7 @@ "iK" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "jb" = ( /obj/structure/surface/table/reinforced/prison, @@ -259,49 +210,34 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ji" = ( /obj/item/device/flash, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "jI" = ( /obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "jJ" = ( /obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "jL" = ( /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/lz/near_lzII) "jW" = ( /obj/item/frame/table/almayer, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ke" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "kX" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -314,22 +250,14 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/security) "lA" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/lz/near_lzII) "lE" = ( /obj/structure/window/reinforced, @@ -343,10 +271,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzII) "lP" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -355,33 +280,25 @@ /obj/item/storage/box/pillbottles, /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lR" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "lZ" = ( /obj/item/clothing/under/marine/ua_riot, /obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "ma" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "mf" = ( /obj/structure/window/reinforced{ @@ -392,9 +309,7 @@ /area/fiorina/station/security) "mn" = ( /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "mt" = ( /obj/effect/spawner/random/gun/shotgun/midchance, @@ -406,16 +321,12 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "nf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/nade_box/tear_gas, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "nl" = ( /turf/template_noop, @@ -429,22 +340,16 @@ "nD" = ( /obj/structure/platform, /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "nN" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "oi" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ locked = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "on" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -452,26 +357,20 @@ }, /obj/item/weapon/gun/launcher/grenade/m81, /obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "oE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "oS" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "pa" = ( /obj/structure/filingcabinet{ @@ -484,15 +383,11 @@ pixel_x = -7; pixel_y = 11 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "pd" = ( /obj/item/ammo_magazine/handful/shotgun/beanbag, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "pn" = ( /obj/effect/acid_hole, @@ -508,9 +403,7 @@ /area/fiorina/station/security) "pN" = ( /obj/item/ammo_box/magazine/shotgun/beanbag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "pR" = ( /obj/structure/surface/table/reinforced/prison, @@ -523,23 +416,17 @@ "pV" = ( /obj/effect/landmark/corpsespawner/prisoner, /obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "qd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "qw" = ( /obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "qQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -548,9 +435,7 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "qX" = ( /obj/structure/surface/table/reinforced/prison, @@ -561,9 +446,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "qY" = ( /obj/structure/surface/table/reinforced/prison, @@ -579,9 +462,7 @@ /area/fiorina/lz/near_lzII) "rg" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "rl" = ( /obj/item/tool/weldingtool, @@ -603,24 +484,18 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "sj" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "sq" = ( /turf/open/floor/prison, /area/fiorina/station/security) "sA" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "tf" = ( /obj/item/prop/helmetgarb/riot_shield, @@ -632,18 +507,13 @@ /area/fiorina/station/security) "tl" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/fiorina/station/security) "tv" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ty" = ( /obj/structure/machinery/power/apc{ @@ -657,31 +527,22 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "uh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flash, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "uQ" = ( /turf/open/floor/prison, /area/fiorina/lz/near_lzII) "uX" = ( /obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "vf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/lz/near_lzII) "vq" = ( /turf/closed/wall/r_wall/prison, @@ -691,9 +552,7 @@ /obj/structure/filingcabinet{ pixel_x = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "wi" = ( /obj/structure/machinery/vending/snack, @@ -708,9 +567,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "wH" = ( /obj/effect/decal/cleanable/blood/oil, @@ -733,9 +590,7 @@ icon_state = "pottedplant_29"; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "xv" = ( /obj/structure/surface/table/reinforced/prison, @@ -743,15 +598,11 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "xI" = ( /obj/effect/landmark/survivor_spawner/fiorina_armory_cmb, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "xM" = ( /obj/structure/surface/table/reinforced/prison, @@ -767,30 +618,21 @@ pixel_y = 16 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "xW" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "yf" = ( /obj/item/frame/table/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "yn" = ( /obj/item/weapon/classic_baton, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) "yv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzII) "yP" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -799,16 +641,12 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "zb" = ( /obj/structure/machinery/light/double/blue, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "zx" = ( /obj/structure/closet/secure_closet/security_empty, @@ -816,9 +654,7 @@ dir = 8 }, /obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "zA" = ( /obj/structure/surface/table/reinforced/prison, @@ -826,9 +662,7 @@ icon_state = "pottedplant_29"; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "zI" = ( /obj/structure/machinery/computer/secure_data, @@ -840,23 +674,17 @@ /area/fiorina/station/security) "Ac" = ( /obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Ai" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "AD" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "AM" = ( /obj/structure/surface/table/reinforced/prison, @@ -872,9 +700,7 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "AY" = ( /obj/structure/surface/table/reinforced/prison, @@ -889,9 +715,7 @@ pixel_x = 9; pixel_y = -10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Bd" = ( /obj/structure/barricade/handrail{ @@ -910,17 +734,13 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Cb" = ( /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "CO" = ( /obj/item/ammo_magazine/handful/shotgun/beanbag, @@ -931,9 +751,7 @@ /obj/item/phone{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "DH" = ( /obj/structure/surface/table/reinforced/prison, @@ -943,9 +761,7 @@ /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Ek" = ( /obj/item/reagent_container/food/drinks/coffeecup{ @@ -960,15 +776,11 @@ /area/fiorina/station/security) "ER" = ( /obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "EV" = ( /obj/item/frame/rack, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Fj" = ( /obj/structure/stairs/perspective{ @@ -989,17 +801,13 @@ /turf/open/floor/prison, /area/fiorina/station/security) "FH" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "FK" = ( /obj/item/frame/rack, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "FQ" = ( /obj/effect/landmark/corpsespawner/ua_riot, @@ -1020,14 +828,10 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/storage/pill_bottle/alkysine, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Gl" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "GH" = ( /obj/structure/surface/table/reinforced/prison, @@ -1042,15 +846,11 @@ pixel_y = 10 }, /obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "GZ" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Ho" = ( /obj/structure/window_frame/prison/reinforced, @@ -1061,9 +861,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/pepper, /obj/item/clothing/glasses/sunglasses/sechud, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "HH" = ( /obj/item/weapon/gun/launcher/grenade/m81/riot, @@ -1072,10 +870,7 @@ "HL" = ( /obj/item/clothing/under/color/orange, /obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/fiorina/lz/near_lzII) "HW" = ( /obj/structure/machinery/computer/cameras{ @@ -1085,9 +880,7 @@ pixel_x = 5; pixel_y = -4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Ie" = ( /obj/structure/stairs/perspective{ @@ -1102,9 +895,7 @@ dir = 8 }, /obj/item/storage/box/flashbangs, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "IG" = ( /obj/structure/extinguisher_cabinet, @@ -1112,22 +903,15 @@ /area/fiorina/station/security) "IK" = ( /obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzII) "JR" = ( /obj/item/ammo_casing, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Kb" = ( /obj/item/weapon/baton, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "KU" = ( /obj/item/shard{ @@ -1140,9 +924,7 @@ /obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "Mg" = ( /obj/structure/sign/poster/clf, @@ -1153,9 +935,7 @@ pixel_y = 30 }, /obj/item/explosive/grenade/custom/teargas, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "MX" = ( /obj/item/stack/sheet/metal, @@ -1170,36 +950,25 @@ /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "NL" = ( /obj/structure/platform, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/security) "NN" = ( /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Ox" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "OA" = ( /obj/item/implanter/compressed, /obj/structure/safe, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "OE" = ( /obj/structure/machinery/vending/cola, @@ -1212,9 +981,7 @@ /area/fiorina/lz/near_lzII) "Pt" = ( /obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "PA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -1229,17 +996,13 @@ /area/fiorina/station/security) "QC" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "QF" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "QJ" = ( /turf/closed/wall/prison, @@ -1247,32 +1010,24 @@ "QV" = ( /obj/item/frame/rack, /obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Re" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "RR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigarettes/emeraldgreen, /obj/item/tool/lighter, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Sd" = ( /obj/item/poster, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Sl" = ( /obj/structure/extinguisher_cabinet, @@ -1280,17 +1035,13 @@ /area/fiorina/station/security) "Sm" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Sn" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ name = "computer" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "Sp" = ( /obj/structure/surface/table/reinforced/prison, @@ -1306,9 +1057,7 @@ "Su" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "SD" = ( /obj/structure/machinery/vending/coffee, @@ -1329,9 +1078,7 @@ /area/fiorina/station/security) "Tp" = ( /obj/item/paper/crumpled, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "TO" = ( /obj/item/stack/tile/plasteel, @@ -1342,37 +1089,27 @@ /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "UU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Va" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Vb" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Vd" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "Vs" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -1380,9 +1117,7 @@ }, /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "VF" = ( /turf/closed/wall/prison, @@ -1390,9 +1125,7 @@ "VG" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Wc" = ( /obj/structure/machinery/light/double/blue{ @@ -1407,21 +1140,15 @@ dir = 4 }, /obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Ws" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Wy" = ( /obj/item/weapon/shield/riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "WB" = ( /obj/structure/bed/chair/office/light{ @@ -1431,9 +1158,7 @@ /area/fiorina/station/security) "WG" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "WI" = ( /obj/structure/surface/table/reinforced/prison, @@ -1447,15 +1172,11 @@ /obj/item/phone{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "WW" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Xj" = ( /obj/structure/surface/table/reinforced/prison, @@ -1475,9 +1196,7 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "XA" = ( /obj/item/storage/belt/marine, @@ -1487,27 +1206,20 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) "XV" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security) "Yt" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/security) "YH" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "YI" = ( /obj/structure/surface/table/reinforced/prison, @@ -1519,9 +1231,7 @@ pixel_x = 6; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "YL" = ( /obj/structure/window/framed/prison/reinforced, @@ -1537,9 +1247,7 @@ /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "YZ" = ( /obj/effect/landmark/corpsespawner/prisoner, @@ -1547,9 +1255,7 @@ dir = 8 }, /obj/item/shard/shrapnel, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "Zg" = ( /obj/structure/surface/table/reinforced/prison, @@ -1562,16 +1268,11 @@ "Zi" = ( /obj/structure/machinery/line_nexter, /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/prison/red/west, /area/fiorina/station/security) "Zo" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index 5326d72de2a8..af8650e3bdb2 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -93,25 +93,16 @@ /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) "aau" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/exterior/surface/landing_pad2) "aav" = ( /obj/structure/barricade/metal{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad2) "aaw" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/exterior/surface/landing_pad2) "aax" = ( /turf/open/auto_turf/snow/layer2, @@ -165,10 +156,7 @@ /obj/structure/barricade/metal{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad2) "aaL" = ( /obj/structure/machinery/colony_floodlight, @@ -179,19 +167,13 @@ /area/ice_colony/exterior/surface/landing_pad2) "aaN" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad2) "aaO" = ( /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad2) "aaP" = ( /turf/closed/ice/corner{ @@ -225,16 +207,10 @@ }, /area/ice_colony/exterior/surface/cliff) "aaV" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/exterior/surface/landing_pad2) "aaW" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/landing_pad2) "aaX" = ( /turf/closed/ice/end{ @@ -314,10 +290,7 @@ /area/ice_colony/exterior/surface/cliff) "abo" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad2) "abp" = ( /turf/closed/wall{ @@ -336,10 +309,7 @@ /area/ice_colony/exterior/surface/landing_pad2) "abs" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad2) "abt" = ( /obj/structure/ice/thin/straight{ @@ -627,16 +597,10 @@ /area/ice_colony/exterior/surface/valley/northwest) "acF" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/surface/requesitions) "acG" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/surface/requesitions) "acH" = ( /obj/structure/machinery/light, @@ -653,24 +617,15 @@ /obj/item/tool/extinguisher/mini, /obj/item/circuitboard/airlock, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering/electric) "acK" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/electric) "acL" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/electric) "acM" = ( /obj/structure/surface/table, @@ -679,10 +634,7 @@ }, /obj/item/storage/toolbox/emergency, /obj/item/circuitboard/firealarm, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/electric) "acN" = ( /obj/structure/surface/table, @@ -691,10 +643,7 @@ /obj/item/device/assembly/igniter, /obj/item/device/assembly/signaller, /obj/item/circuitboard/airlock, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/electric) "acO" = ( /obj/structure/tunnel{ @@ -706,10 +655,7 @@ /obj/structure/surface/table, /obj/item/device/assembly/infra, /obj/item/device/assembly/voice, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering/electric) "acQ" = ( /obj/structure/ice/thin/end{ @@ -754,28 +700,18 @@ /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) "acW" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/surface/requesitions) "acX" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/surface/requesitions) "acY" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/surface/requesitions) "acZ" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/surface/requesitions) "ada" = ( /obj/item/lightstick/planted, @@ -804,36 +740,22 @@ /obj/item/explosive/grenade/custom/metal_foam, /obj/item/explosive/grenade/custom/metal_foam, /obj/item/device/flashlight, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering/electric) "adf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering/electric) "adg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/electric) "adh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/surface/engineering/electric) "adi" = ( /obj/structure/surface/table, /obj/item/storage/box/lights/mixed, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering/electric) "adj" = ( /turf/open/ice, @@ -855,9 +777,7 @@ /obj/structure/shuttle/diagonal{ icon_state = "heater" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "ado" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -881,34 +801,25 @@ /turf/open/ice, /area/ice_colony/exterior/surface/clearing/north) "ads" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering/electric) "adt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/electric) "adu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/electric) "adv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/electric) "adw" = ( /obj/structure/shuttle/diagonal{ @@ -917,15 +828,11 @@ /obj/structure/shuttle/diagonal{ icon_state = "heater" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "adx" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/electric) "ady" = ( /obj/structure/surface/table, @@ -935,10 +842,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering/electric) "adz" = ( /obj/structure/ice/thin/corner{ @@ -976,16 +880,10 @@ name = "Storage Unit Control"; pixel_x = -24 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/surface/requesitions) "adF" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/surface/requesitions) "adG" = ( /obj/structure/shuttle/diagonal{ @@ -995,9 +893,7 @@ dir = 1; icon_state = "platform" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "adH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1005,10 +901,7 @@ /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) "adI" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/surface/requesitions) "adJ" = ( /obj/structure/machinery/conveyor{ @@ -1018,10 +911,7 @@ name = "Storage Unit Control"; pixel_x = 24 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/surface/requesitions) "adK" = ( /obj/structure/machinery/door_control{ @@ -1048,52 +938,35 @@ /obj/structure/surface/table, /obj/item/tool/crowbar/red, /obj/item/device/flash, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering/electric) "adO" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/item/device/radio, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering/electric) "adP" = ( /obj/structure/surface/table, /obj/item/device/assembly/prox_sensor, /obj/item/device/assembly/timer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/electric) "adQ" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering/electric) "adR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/electric) "adS" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering/electric) "adT" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering/electric) "adU" = ( /obj/structure/ice/thin/end, @@ -1135,10 +1008,7 @@ /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) "aea" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/surface/requesitions) "aeb" = ( /turf/closed/ice_rock/singlePart, @@ -1159,9 +1029,7 @@ name = "\improper Colony Engineering Electric Storage"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/electric) "aeg" = ( /turf/closed/wall, @@ -1183,17 +1051,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/surface/requesitions) "ael" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/surface/requesitions) "aem" = ( /turf/open/auto_turf/snow/layer1, @@ -1208,10 +1072,7 @@ /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering/tool) "aeo" = ( /obj/structure/surface/table, @@ -1223,19 +1084,13 @@ start_charge = 0 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/tool) "aep" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/tool) "aeq" = ( /obj/structure/surface/rack, @@ -1246,10 +1101,7 @@ /obj/effect/spawner/random/toolbox, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering/tool) "aer" = ( /obj/structure/window/framed/colony, @@ -1257,40 +1109,26 @@ /area/ice_colony/surface/engineering/tool) "aes" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) "aet" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "aeu" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering) "aev" = ( /obj/structure/surface/table, /obj/item/stack/medical/ointment, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering/generator) "aew" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering/generator) "aey" = ( /obj/item/lightstick/planted, @@ -1299,10 +1137,7 @@ "aez" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering/generator) "aeA" = ( /obj/effect/landmark/monkey_spawn, @@ -1367,32 +1202,22 @@ /area/ice_colony/surface/engineering) "aeL" = ( /obj/structure/dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering/tool) "aeM" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering/tool) "aeN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/tool) "aeO" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/engineering/tool) "aeP" = ( /obj/structure/surface/rack, @@ -1403,43 +1228,26 @@ /obj/item/storage/belt/utility, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering/tool) "aeQ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) "aeR" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering) "aeS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering/generator) "aeT" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/surface/engineering/generator) "aeU" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/ice_colony/surface/engineering/generator) "aeV" = ( /obj/structure/shuttle/diagonal{ @@ -1449,15 +1257,10 @@ dir = 1; icon_state = "platform" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aeW" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering/generator) "aeX" = ( /obj/structure/surface/table, @@ -1465,10 +1268,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering/generator) "aeY" = ( /obj/vehicle/train/cargo/trolley, @@ -1520,10 +1320,7 @@ id = "engineering_ladder"; pixel_y = 16 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) "afh" = ( /obj/structure/ladder{ @@ -1532,85 +1329,56 @@ id = "engineering_ladder1"; pixel_y = 16 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "afi" = ( /obj/structure/surface/table/reinforced, /obj/item/stack/medical/bruise_pack, /obj/item/cell, /obj/item/clothing/gloves/yellow, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering) "afj" = ( /obj/structure/surface/table, /obj/item/cell/high/empty, /obj/structure/machinery/cell_charger, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering/tool) "afk" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering/tool) "afl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/tool) "afm" = ( /obj/structure/surface/rack, /obj/item/stack/cable_coil, /obj/item/storage/box/engineer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering/tool) "afn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) "afo" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "afp" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Engineering Generator Room" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/generator) "afq" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/generator) "afr" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/engineering/generator) "afs" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering/generator) "aft" = ( /obj/structure/shuttle/diagonal{ @@ -1620,23 +1388,15 @@ dir = 1; icon_state = "platform" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "afu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/engineering/generator) "afv" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering/generator) "afw" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -1662,22 +1422,13 @@ }, /obj/item/cell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) "afA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering) "afB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering) "afC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1685,42 +1436,28 @@ dir = 1; name = "\improper Colony Engineering Tool Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/tool) "afD" = ( /obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) "afE" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering) "afF" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering) "afG" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) "afH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering/generator) "afI" = ( /obj/structure/shuttle/diagonal{ @@ -1730,9 +1467,7 @@ dir = 1; icon_state = "platform" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "afJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1752,10 +1487,7 @@ pixel_x = -5; pixel_y = -5 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering/generator) "afM" = ( /obj/item/storage/toolbox/emergency, @@ -1791,18 +1523,13 @@ }, /obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) "afS" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "afT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1811,9 +1538,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Engineering Material Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "afU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1822,9 +1547,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "afV" = ( /obj/structure/machinery/power/apc{ @@ -1835,18 +1558,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "afW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "afX" = ( /obj/structure/machinery/light{ @@ -1855,25 +1573,17 @@ /obj/structure/closet/fireaxecabinet{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "afY" = ( /obj/structure/machinery/light_switch{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "afZ" = ( /obj/item/weapon/gun/pistol/highpower, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "aga" = ( /obj/effect/decal/cleanable/blood, @@ -1882,17 +1592,12 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agb" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering/generator) "agc" = ( /obj/item/stack/sheet/mineral/phoron, @@ -1907,14 +1612,10 @@ "age" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering/electric) "agf" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering) "agg" = ( /obj/structure/closet/secure_closet/engineering_electrical, @@ -1922,16 +1623,11 @@ /obj/item/circuitboard/apc, /obj/item/circuitboard/apc, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering) "agh" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering) "agi" = ( /turf/closed/wall, @@ -1946,32 +1642,23 @@ /area/ice_colony/exterior/surface/valley/northwest) "agl" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agm" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agn" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ago" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering) "agp" = ( /obj/structure/window/framed/colony, @@ -1984,27 +1671,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering/generator) "agr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering/generator) "agt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/ice_colony/surface/engineering/generator) "agu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2016,16 +1695,11 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering/generator) "agw" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering/generator) "agx" = ( /obj/structure/ice/ice_rock/cornerOverlay, @@ -2066,18 +1740,13 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) "agE" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agF" = ( /obj/structure/bed/chair{ @@ -2087,9 +1756,7 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agG" = ( /obj/structure/surface/table, @@ -2099,9 +1766,7 @@ icon_state = "pipe-c" }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agH" = ( /obj/structure/surface/table/reinforced, @@ -2112,42 +1777,29 @@ amount = 15 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering) "agI" = ( /obj/structure/surface/table, /obj/item/tool/wrench, /obj/item/tool/screwdriver, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agJ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "agK" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering) "agL" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/hallway/north_west) "agM" = ( /obj/structure/surface/table, @@ -2156,10 +1808,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering/generator) "agN" = ( /turf/closed/wall/r_wall, @@ -2207,28 +1856,19 @@ /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) "agZ" = ( /obj/structure/closet/radiation, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "aha" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/mechanical, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering) "ahb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2241,26 +1881,20 @@ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahd" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/human/burger, /obj/structure/disposalpipe/segment, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahe" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2295,10 +1929,7 @@ /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/north) "ahm" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering/generator) "ahn" = ( /obj/item/lightstick/planted, @@ -2314,10 +1945,7 @@ "ahq" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering/generator) "ahr" = ( /obj/structure/surface/table/reinforced, @@ -2326,28 +1954,19 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/substation/smes) "ahs" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ req_access_txt = "102" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation/smes) "aht" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "102" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation/smes) "ahu" = ( /obj/structure/ladder{ @@ -2355,10 +1974,7 @@ icon_state = "ladderdown"; id = "power_storage_ladder1" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation/smes) "ahv" = ( /obj/structure/ladder{ @@ -2366,10 +1982,7 @@ icon_state = "ladderdown"; id = "power_storage_ladder" }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/substation/smes) "ahw" = ( /turf/closed/wall, @@ -2378,44 +1991,30 @@ /obj/structure/machinery/power/smes/buildable{ name = "colony distribution SMES" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/substation/smes) "ahy" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation/smes) "ahz" = ( /obj/structure/machinery/power/smes/buildable{ name = "colony distribution SMES" }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/substation/smes) "ahA" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/west) "ahB" = ( /obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/surface/requesitions) "ahC" = ( /obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/surface/requesitions) "ahD" = ( /obj/structure/barricade/metal, @@ -2423,10 +2022,7 @@ /area/ice_colony/surface/requesitions) "ahE" = ( /obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/surface/requesitions) "ahG" = ( /turf/closed/wall/r_wall, @@ -2446,23 +2042,17 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Engineering Locker Room" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahM" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahN" = ( /obj/structure/bed/chair{ @@ -2472,9 +2062,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahO" = ( /obj/structure/bed/chair{ @@ -2483,9 +2071,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ahP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2497,9 +2083,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/engineering) "ahR" = ( /obj/structure/disposalpipe/segment{ @@ -2545,45 +2129,28 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering/generator) "ahW" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/substation/smes) "ahX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/substation/smes) "ahY" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "ahZ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation/smes) "aia" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/substation/smes) "aib" = ( /obj/structure/disposalpipe/segment{ @@ -2595,10 +2162,7 @@ /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) "aic" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/surface/substation/smes) "aid" = ( /obj/structure/disposalpipe/segment{ @@ -2655,75 +2219,48 @@ /area/ice_colony/exterior/surface/cliff) "ail" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering) "aim" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering) "ain" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering) "aio" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering) "aip" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/engineering) "aiq" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "air" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/engineering) "ais" = ( /obj/structure/disposalpipe/segment, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) "ait" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering) "aiu" = ( /obj/structure/surface/table, /obj/item/tool/wrench, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering/generator) "aiv" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering/generator) "aiw" = ( /obj/structure/disposalpipe/segment{ @@ -2734,18 +2271,12 @@ /area/ice_colony/exterior/surface/clearing/north) "aix" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering/generator) "aiy" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering/generator) "aiz" = ( /obj/structure/disposalpipe/segment{ @@ -2763,10 +2294,7 @@ "aiB" = ( /obj/structure/surface/rack, /obj/item/cell/high/empty, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/substation/smes) "aiC" = ( /obj/item/lightstick/red/planted, @@ -2779,28 +2307,21 @@ pixel_x = 2; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "aiE" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "aiF" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation/smes) "aiG" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -2814,16 +2335,11 @@ dir = 8 }, /obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/substation/smes) "aiI" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "aiJ" = ( /obj/structure/machinery/colony_floodlight, @@ -2833,10 +2349,7 @@ /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation/smes) "aiL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2896,9 +2409,7 @@ dir = 1; name = "\improper Colony Engineering" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "aiU" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -2914,9 +2425,7 @@ dir = 1; name = "\improper Colony Engineering Backup Power Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "aiW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2933,47 +2442,31 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/substation/smes) "aja" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation/smes) "ajb" = ( /obj/structure/surface/table/reinforced, /obj/item/cell/high/empty, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/substation/smes) "ajc" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "ajd" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation/smes) "aje" = ( /obj/structure/machinery/power/smes/buildable{ name = "colony distribution SMES" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/substation/smes) "ajf" = ( /obj/item/lightstick/red/planted, @@ -2994,23 +2487,16 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Hydroponics North Wing Dome" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/north) "ajm" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "ajn" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "ajo" = ( /obj/structure/machinery/light{ @@ -3019,16 +2505,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "ajp" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/north) "ajq" = ( /obj/structure/disposalpipe/segment, @@ -3041,10 +2522,7 @@ pixel_y = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) "ajs" = ( /obj/structure/surface/rack, @@ -3055,10 +2533,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering) "ajt" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -3070,10 +2545,7 @@ /obj/structure/machinery/power/smes/buildable{ name = "backup power SMES" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/engineering) "ajv" = ( /obj/structure/machinery/power/terminal{ @@ -3082,27 +2554,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ajw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "ajx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "ajy" = ( /obj/structure/machinery/colony_floodlight_switch{ @@ -3111,41 +2575,27 @@ /obj/effect/decal/warning_stripes{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "ajz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/engineering) "ajA" = ( /obj/structure/machinery/computer3/powermonitor, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/engineering) "ajB" = ( /obj/structure/surface/rack, /obj/item/cell/high/empty, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/substation/smes) "ajC" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/plasteel{ amount = 15 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "ajD" = ( /obj/structure/surface/rack, @@ -3154,10 +2604,7 @@ pixel_x = -5; pixel_y = -5 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation/smes) "ajE" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -3165,9 +2612,7 @@ dir = 1; name = "\improper Colony Power Substation SMES" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "ajF" = ( /obj/item/disk/botany, @@ -3175,47 +2620,31 @@ /area/ice_colony/surface/hydroponics/north) "ajG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/north) "ajH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/north) "ajI" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad2) "ajJ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering) "ajK" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ajL" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering) "ajM" = ( /obj/item/lightstick/red/planted, @@ -3226,27 +2655,19 @@ /obj/structure/machinery/power/smes/buildable{ name = "backup power SMES" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering) "ajO" = ( /obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/engineering) "ajP" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "ajQ" = ( /turf/open/auto_turf/snow/layer2, @@ -3263,10 +2684,7 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/engineering) "ajU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3302,10 +2720,7 @@ /obj/structure/surface/table/reinforced, /obj/structure/machinery/cell_charger, /obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/substation/smes) "ajZ" = ( /obj/structure/fence, @@ -3324,29 +2739,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation/smes) "akc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation/smes) "akd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "ake" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/engineering) "akf" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -3363,9 +2768,7 @@ /area/ice_colony/exterior/surface/valley/northwest) "akh" = ( /obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad2) "aki" = ( /obj/structure/surface/rack, @@ -3373,54 +2776,35 @@ amount = 50 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/engineering) "akj" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/engineering) "akk" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/ice_colony/surface/engineering) "akl" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/surface/engineering) "akm" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/engineering/generator) "akn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/substation/smes) "ako" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "akp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -3430,9 +2814,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "akq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3441,9 +2823,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "akr" = ( /obj/structure/disposalpipe/junction{ @@ -3459,27 +2839,20 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "akt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/substation/smes) "aku" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/substation/smes) "akv" = ( /obj/structure/disposalpipe/segment{ @@ -3550,48 +2923,32 @@ /obj/structure/surface/rack, /obj/item/cell, /obj/item/cell, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/substation/smes) "akJ" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation/smes) "akK" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "akL" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation/smes) "akM" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation/smes) "akN" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation/smes) "akO" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/substation/smes) "akP" = ( /obj/structure/ice/thin/corner, @@ -3628,29 +2985,21 @@ pixel_x = 5; pixel_y = -8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "akV" = ( /obj/structure/curtain/open/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "akW" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "akX" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "akY" = ( /obj/structure/machinery/power/apc{ @@ -3658,17 +3007,13 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "akZ" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "ala" = ( /obj/structure/machinery/shower{ @@ -3676,20 +3021,14 @@ pixel_x = 5; pixel_y = -8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "alb" = ( /obj/structure/curtain/open/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "alc" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "ald" = ( /obj/structure/machinery/power/apc{ @@ -3697,33 +3036,25 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "ale" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "alf" = ( /obj/structure/curtain/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "alg" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "alh" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -3732,9 +3063,7 @@ dir = 1; name = "\improper Colony Power Substation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation/smes) "ali" = ( /obj/structure/ice/thin/straight, @@ -3748,15 +3077,11 @@ /area/ice_colony/surface/dorms/restroom_w) "all" = ( /obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "alm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "aln" = ( /obj/effect/landmark/hunter_secondary, @@ -3772,9 +3097,7 @@ /area/ice_colony/exterior/surface/clearing/north) "alq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "alr" = ( /obj/item/shard, @@ -3789,16 +3112,10 @@ /obj/item/circuitboard/airlock, /obj/item/circuitboard/airlock, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/substation) "alu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation) "alv" = ( /obj/structure/disposalpipe/segment, @@ -3815,10 +3132,7 @@ "alx" = ( /obj/structure/surface/rack, /obj/item/circuitboard/airalarm, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation) "aly" = ( /obj/structure/machinery/power/apc{ @@ -3826,34 +3140,22 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation) "alz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation) "alA" = ( /obj/structure/surface/rack, /obj/item/circuitboard/apc, /obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/substation) "alB" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/substation) "alC" = ( /obj/structure/ice/thin/corner, @@ -3911,10 +3213,7 @@ start_charge = 0 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/north) "alO" = ( /obj/structure/machinery/shower{ @@ -3924,15 +3223,11 @@ }, /obj/effect/landmark/survivor_spawner, /obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "alP" = ( /obj/structure/curtain/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "alQ" = ( /obj/structure/machinery/shower{ @@ -3940,9 +3235,7 @@ }, /obj/effect/landmark/corpsespawner/bridgeofficer, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "alR" = ( /turf/closed/ice_rock/singlePart{ @@ -3955,43 +3248,29 @@ /obj/item/circuitboard/airlock, /obj/item/circuitboard/airlock, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/substation) "alT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "alU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "alV" = ( /obj/structure/surface/rack, /obj/item/circuitboard/airalarm, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "alW" = ( /obj/structure/surface/rack, /obj/item/circuitboard/apc, /obj/item/circuitboard/apc, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "alX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/substation) "alY" = ( /obj/effect/landmark/monkey_spawn, @@ -4024,56 +3303,40 @@ /area/ice_colony/surface/mining) "ame" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/north) "amf" = ( /obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "amg" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/north) "amh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "ami" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "amj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "amk" = ( /obj/item/tool/soap, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "aml" = ( /obj/item/lightstick/red/planted, @@ -4115,39 +3378,25 @@ "ams" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/substation/smes) "amt" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/substation) "amu" = ( /obj/effect/landmark/hunter_primary, /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "amv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/surface/substation) "amw" = ( /obj/structure/surface/table/reinforced, /obj/item/explosive/grenade/custom/metal_foam, /obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/substation/smes) "amx" = ( /obj/structure/disposalpipe/segment{ @@ -4178,10 +3427,7 @@ /area/ice_colony/exterior/surface/cliff) "amD" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/north) "amE" = ( /obj/structure/disposalpipe/segment, @@ -4193,17 +3439,12 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/north) "amG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "amH" = ( /obj/structure/disposalpipe/segment{ @@ -4217,9 +3458,7 @@ /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "amJ" = ( /obj/structure/disposalpipe/junction{ @@ -4299,24 +3538,16 @@ /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/substation) "amV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/substation) "amW" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "amX" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -4324,9 +3555,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "amY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4335,9 +3564,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "amZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4347,23 +3574,16 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "ana" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/substation) "anb" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/substation) "anc" = ( /turf/open/floor, @@ -4382,9 +3602,7 @@ /area/ice_colony/exterior/surface/valley/west) "anf" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "ang" = ( /obj/structure/disposalpipe/segment{ @@ -4394,9 +3612,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "anh" = ( /obj/structure/disposalpipe/segment{ @@ -4409,9 +3625,7 @@ name = "\improper Hydroponics North Wing Technical Storage"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "ani" = ( /obj/structure/disposalpipe/segment{ @@ -4421,17 +3635,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "anj" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "ank" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, @@ -4442,18 +3652,13 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/north) "anl" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "anm" = ( /obj/structure/disposalpipe/segment{ @@ -4478,9 +3683,7 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "anr" = ( /obj/structure/disposalpipe/segment{ @@ -4534,28 +3737,19 @@ /area/ice_colony/exterior/surface/valley/southeast) "any" = ( /obj/structure/dispenser, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/substation) "anz" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation) "anA" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation) "anB" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation) "anC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4565,26 +3759,19 @@ /area/ice_colony/exterior/surface/valley/southeast) "anD" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation) "anE" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/substation) "anF" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/substation) "anG" = ( /obj/effect/landmark/corpsespawner/miner, @@ -4622,24 +3809,15 @@ /area/ice_colony/exterior/surface/valley/southeast) "anM" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/north) "anN" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/north) "anO" = ( /obj/structure/closet/wardrobe/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/north) "anP" = ( /obj/structure/toilet{ @@ -4648,17 +3826,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "anQ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "anR" = ( /obj/structure/sink{ @@ -4668,9 +3842,7 @@ /obj/structure/mirror{ pixel_x = 24 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "anS" = ( /turf/closed/shuttle/elevator{ @@ -4699,17 +3871,13 @@ /obj/structure/mirror{ pixel_x = -24 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "anY" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "anZ" = ( /obj/structure/toilet{ @@ -4718,9 +3886,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "aoa" = ( /obj/structure/disposalpipe/segment{ @@ -4760,9 +3926,7 @@ dir = 1; name = "\improper Colony Power Substation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/substation) "aof" = ( /obj/structure/disposalpipe/segment{ @@ -4804,10 +3968,7 @@ /area/ice_colony/exterior/surface/valley/west) "aol" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/north) "aom" = ( /turf/closed/shuttle/elevator, @@ -4831,23 +3992,14 @@ /area/shuttle/elevator2/ground) "aor" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/treatment) "aos" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/treatment) "aot" = ( /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/surface/clinic/treatment) "aou" = ( /turf/closed/wall, @@ -4856,54 +4008,33 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/treatment) "aow" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/surface/clinic/treatment) "aox" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/treatment) "aoy" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/treatment) "aoz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/treatment) "aoA" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/treatment) "aoB" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/surface/clinic/treatment) "aoC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4992,17 +4123,11 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/hydroponics/north) "aoS" = ( /obj/structure/closet/crate/hydroponics, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/north) "aoT" = ( /turf/open/auto_turf/snow/layer3, @@ -5013,23 +4138,16 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/treatment) "aoV" = ( -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aoW" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aoX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5038,25 +4156,19 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Aurora Medical Clinic Recovery Room" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aoY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aoZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "apa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5065,29 +4177,20 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Aurora Medical Clinic Scanning Unit" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "apb" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "apc" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "apd" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/treatment) "ape" = ( /obj/structure/surface/rack, @@ -5117,59 +4220,38 @@ /area/ice_colony/exterior/surface/valley/west) "api" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "apj" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/surface/clinic/treatment) "apk" = ( -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/treatment) "apl" = ( /obj/structure/surface/table, /obj/item/storage/box/botanydisk, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/north) "apm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/treatment) "apn" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/surface/clinic/treatment) "apo" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/treatment) "app" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/treatment) "apq" = ( /obj/effect/landmark/hunter_secondary, @@ -5218,10 +4300,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/treatment) "apA" = ( /obj/structure/ice/thin/end{ @@ -5231,22 +4310,13 @@ /area/ice_colony/surface/mining) "apB" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/dorms) "apC" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "apD" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/dorms) "apE" = ( /obj/structure/bed, @@ -5255,17 +4325,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/treatment) "apF" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/treatment) "apG" = ( /obj/structure/machinery/power/apc{ @@ -5276,44 +4340,29 @@ /obj/item/storage/toolbox/emergency, /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/treatment) "apH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/north, /area/ice_colony/surface/clinic/treatment) "apI" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/treatment) "apJ" = ( /turf/closed/wall, /area/ice_colony/surface/clinic/storage) "apK" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/storage) "apL" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/storage) "apM" = ( /obj/structure/machinery/colony_floodlight, @@ -5326,19 +4375,13 @@ pixel_x = 6; pixel_y = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/storage) "apO" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/substation) "apP" = ( /turf/closed/wall/r_wall, @@ -5360,9 +4403,7 @@ "apT" = ( /obj/structure/machinery/space_heater, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "apU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5370,18 +4411,14 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "apV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "apW" = ( /obj/structure/machinery/power/apc{ @@ -5396,60 +4433,38 @@ }, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/dorms) "apX" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "apY" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/dorms) "apZ" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aqa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/dorms) "aqb" = ( /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{ pixel_y = 30 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "aqc" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/dorms) "aqd" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "aqe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5457,16 +4472,12 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "aqf" = ( /obj/structure/machinery/space_heater, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "aqg" = ( /obj/structure/toilet{ @@ -5476,22 +4487,15 @@ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "aqh" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/treatment) "aqi" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aqj" = ( /obj/structure/machinery/colony_floodlight, @@ -5501,9 +4505,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aql" = ( /obj/structure/disposalpipe/segment{ @@ -5522,25 +4524,19 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Aurora Medical Clinic Storage" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/storage) "aqn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/storage) "aqo" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/storage) "aqp" = ( /obj/structure/disposalpipe/segment{ @@ -5552,9 +4548,7 @@ /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) "aqq" = ( -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/storage) "aqr" = ( /obj/structure/surface/table, @@ -5567,10 +4561,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/storage) "aqs" = ( /obj/structure/ice/thin/straight{ @@ -5599,9 +4590,7 @@ dir = 1; name = "\improper Dormitories Men's Restroom" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_w) "aqw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5615,9 +4604,7 @@ /area/ice_colony/exterior/surface/clearing/pass) "aqx" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aqy" = ( /obj/structure/disposalpipe/segment, @@ -5625,10 +4612,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms) "aqz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5637,9 +4621,7 @@ dir = 1; name = "\improper Dormitories Women's Restroom" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/dorms/restroom_e) "aqA" = ( /obj/structure/ice/thin/end{ @@ -5653,47 +4635,33 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aqD" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aqE" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aqF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "aqG" = ( /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/treatment) "aqH" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/substation) "aqI" = ( /obj/structure/surface/table, @@ -5702,10 +4670,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/storage) "aqJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5725,34 +4690,24 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/north) "aqM" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/north) "aqN" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/dorms) "aqO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aqP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5761,42 +4716,29 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "aqQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "aqR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/dorms) "aqS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aqT" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aqU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5806,9 +4748,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aqV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5818,9 +4758,7 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aqW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5830,10 +4768,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/dorms) "aqX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5843,10 +4778,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "aqY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5858,10 +4790,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "aqZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5871,9 +4800,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "ara" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -5887,25 +4814,17 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "arc" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/storage) "ard" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/storage) "are" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5928,10 +4847,7 @@ name = "\improper Colony Dormitories"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/dorms) "ari" = ( /obj/structure/disposalpipe/segment{ @@ -5951,17 +4867,13 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "arl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms) "arm" = ( /obj/structure/disposalpipe/segment{ @@ -5982,19 +4894,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/dorms) "arp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "arq" = ( /obj/structure/machinery/door_control{ @@ -6009,18 +4916,14 @@ /area/ice_colony/surface/storage_unit/power) "arr" = ( /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/dorms) "ars" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms) "art" = ( /obj/structure/machinery/colony_floodlight, @@ -6031,18 +4934,14 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms) "arv" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast) "arw" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms) "arx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -6050,10 +4949,7 @@ name = "\improper Colony Dormitories"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/dorms) "ary" = ( /obj/structure/bed, @@ -6061,16 +4957,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/treatment) "arz" = ( /obj/structure/curtain/open/medical, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/treatment) "arA" = ( /obj/effect/landmark/hunter_secondary, @@ -6081,10 +4972,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/storage) "arC" = ( /turf/closed/ice/intersection, @@ -6103,23 +4991,15 @@ /turf/open/floor/wood, /area/ice_colony/surface/dorms) "arG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/dorms) "arH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "arJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms) "arK" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -6151,10 +5031,7 @@ /obj/structure/surface/table, /obj/item/paper/research_notes, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/storage) "arP" = ( /obj/structure/machinery/light/small{ @@ -6167,10 +5044,7 @@ /area/ice_colony/surface/dorms) "arR" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/dorms) "arS" = ( /obj/structure/machinery/light/small{ @@ -6195,29 +5069,19 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/surface/clinic/treatment) "arX" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/treatment) "arY" = ( /obj/structure/bed/chair/wheelchair, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/treatment) "arZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/west, /area/ice_colony/surface/clinic/treatment) "asa" = ( /obj/structure/disposalpipe/segment{ @@ -6225,43 +5089,30 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner, /area/ice_colony/surface/clinic/treatment) "asb" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/treatment) "asc" = ( /obj/structure/closet/secure_closet/chemical{ req_access_txt = "100" }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/surface/clinic/storage) "asd" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/storage) "ase" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/storage) "asf" = ( /obj/structure/ice/thin/corner, @@ -6273,10 +5124,7 @@ name = "\improper Hydroponics Dome North Wing"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/north) "ash" = ( /obj/structure/ladder{ @@ -6295,27 +5143,19 @@ name = "\improper Aurora Medical Clinic Treatment"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/treatment) "ask" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/treatment) "asl" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; name = "\improper Aurora Medical Clinic Storage" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/storage) "asm" = ( /obj/structure/window/framed/colony/reinforced, @@ -6329,34 +5169,22 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/lobby) "asp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/hydroponics/lobby) "asq" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/hydroponics/lobby) "asr" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) "ass" = ( /obj/structure/window/framed/colony/reinforced, @@ -6375,17 +5203,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "asw" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "asx" = ( /obj/structure/closet/cabinet, @@ -6407,33 +5231,21 @@ /area/ice_colony/surface/clinic/lobby) "asB" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/lobby) "asC" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/lobby) "asD" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/lobby) "asE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/north, /area/ice_colony/surface/clinic/lobby) "asF" = ( /obj/structure/disposalpipe/segment{ @@ -6441,10 +5253,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/east, /area/ice_colony/surface/clinic/lobby) "asG" = ( /obj/structure/flora/pottedplant, @@ -6452,10 +5261,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/surface/clinic/lobby) "asH" = ( /obj/structure/window/framed/colony, @@ -6463,22 +5269,14 @@ /area/ice_colony/surface/clinic/lobby) "asI" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/lobby) "asJ" = ( -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "asK" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/treatment) "asL" = ( /obj/structure/tunnel{ @@ -6488,67 +5286,42 @@ /area/ice_colony/exterior/surface/valley/west) "asM" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/exterior/surface/valley/west) "asN" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/hydroponics/lobby) "asO" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/hydroponics/lobby) "asP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/lobby) "asQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/lobby) "asR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/hydroponics/lobby) "asS" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/exterior/surface/clearing/north) "asT" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/dorms) "asU" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms) "asV" = ( /obj/item/lightstick/red/planted, @@ -6558,45 +5331,30 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/lobby) "asX" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "asY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "asZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/lobby) "ata" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/lobby) "atb" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "atc" = ( /obj/structure/surface/table, @@ -6606,10 +5364,7 @@ pixel_x = 24 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/lobby) "atd" = ( /turf/closed/ice/straight{ @@ -6651,38 +5406,24 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/lobby) "ati" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/lobby) "atj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/lobby) "atk" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/hydroponics/lobby) "atl" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/lobby) "atm" = ( /obj/structure/closet/cabinet, @@ -6733,58 +5474,40 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "whiteredfull" - }, +/turf/open/floor/whiteredfull, /area/ice_colony/surface/clinic/lobby) "atw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/north, /area/ice_colony/surface/clinic/lobby) "atx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "aty" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/lobby) "atz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/surface/clinic/lobby) "atA" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "atB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/east, /area/ice_colony/surface/clinic/lobby) "atC" = ( /obj/item/stack/sheet/metal, @@ -6792,10 +5515,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/lobby) "atD" = ( /obj/structure/bed/chair/office/dark{ @@ -6808,18 +5528,13 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/north, /area/ice_colony/surface/clinic/lobby) "atE" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "atF" = ( /obj/structure/surface/table, @@ -6833,10 +5548,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/surface/clinic/storage) "atG" = ( /obj/structure/ice/ice_rock/cornerOverlay, @@ -6881,17 +5593,11 @@ /area/ice_colony/surface/hydroponics/lobby) "atO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/lobby) "atP" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/lobby) "atQ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -6909,9 +5615,7 @@ /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "atU" = ( /obj/structure/machinery/colony_floodlight, @@ -6933,94 +5637,68 @@ name = "\improper Aurora Medical Clinic"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "whiteredfull" - }, +/turf/open/floor/whiteredfull, /area/ice_colony/surface/clinic/lobby) "atY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/west, /area/ice_colony/surface/clinic/lobby) "atZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "aua" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/surface/clinic/lobby) "aub" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/surface/clinic/lobby) "auc" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "aud" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner, /area/ice_colony/surface/clinic/lobby) "aue" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/lobby) "auf" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/lobby) "aug" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/lobby) "auh" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/lobby) "aui" = ( /turf/open/auto_turf/snow/layer3, @@ -7046,10 +5724,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/lobby) "aun" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -7059,27 +5734,18 @@ /obj/structure/surface/table, /obj/item/bodybag/cryobag, /obj/item/storage/box/syringes, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/surface/clinic/storage) "aup" = ( /obj/structure/surface/table/woodentable, /obj/item/paper/research_notes, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/hydroponics/lobby) "auq" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/lobby) "aur" = ( /obj/structure/bed/chair{ @@ -7089,10 +5755,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/lobby) "aus" = ( /turf/open/auto_turf/snow/layer1, @@ -7114,29 +5777,21 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/lobby) "auy" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/surface/clinic/lobby) "auz" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/lobby) "auA" = ( /obj/effect/landmark/monkey_spawn, @@ -7153,27 +5808,18 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/lobby) "auD" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/lobby) "auE" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/hydroponics/lobby) "auF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -7181,37 +5827,25 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) "auG" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/lobby) "auH" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/hydroponics/lobby) "auI" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/lobby) "auJ" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -7222,10 +5856,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) "auL" = ( /obj/structure/sign/safety/biolab, @@ -7246,19 +5877,14 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "auO" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms) "auP" = ( /obj/effect/spawner/random/toolbox, @@ -7278,37 +5904,27 @@ "auS" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/surface/clinic/lobby) "auT" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/lobby) "auU" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/surface/clinic/lobby) "auV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/surface/clinic/lobby) "auW" = ( /obj/structure/ice/thin/single, @@ -7326,31 +5942,19 @@ /turf/open/gm/grass/grass1, /area/ice_colony/surface/hydroponics/lobby) "auZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/hydroponics/lobby) "ava" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/hydroponics/lobby) "avb" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/lobby) "avc" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/hydroponics/lobby) "avd" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -7358,62 +5962,43 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/hydroponics/lobby) "ave" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/lobby) "avf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/lobby) "avg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/hydroponics/lobby) "avh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/hydroponics/lobby) "avi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/lobby) "avj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/lobby) "avk" = ( /obj/effect/decal/cleanable/blood{ @@ -7426,27 +6011,19 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/dorms) "avm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "avn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "avo" = ( /obj/structure/disposalpipe/segment{ @@ -7455,10 +6032,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms) "avp" = ( /obj/structure/disposalpipe/segment{ @@ -7470,18 +6044,13 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "avq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/dorms) "avr" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -7489,9 +6058,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "avs" = ( /obj/effect/decal/cleanable/blood{ @@ -7504,19 +6071,13 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/dorms) "avu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/dorms) "avw" = ( /obj/effect/landmark/corpsespawner/engineer, @@ -7556,39 +6117,29 @@ dir = 1; name = "\improper Hydroponics Zoo Dome" }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "avC" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "avD" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "avE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "avF" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "avG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7598,70 +6149,48 @@ dir = 1; name = "\improper Hydroponics Dome" }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "avH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/lobby) "avI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/lobby) "avJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) "avK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/lobby) "avL" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/hydroponics/lobby) "avM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/hydroponics/lobby) "avN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) "avO" = ( /obj/item/lightstick/planted, @@ -7671,10 +6200,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/lobby) "avQ" = ( /obj/item/shard, @@ -7684,10 +6210,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/lobby) "avS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7697,9 +6220,7 @@ dir = 1; name = "\improper Hydroponics Dome" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/lobby) "avT" = ( /obj/item/stack/rods, @@ -7721,27 +6242,19 @@ dir = 1; name = "\improper Colony Dormitories" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/dorms) "avW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms) "avX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/dorms) "avY" = ( /obj/structure/disposalpipe/segment{ @@ -7749,9 +6262,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "avZ" = ( /obj/structure/disposalpipe/segment{ @@ -7760,9 +6271,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "awa" = ( /obj/structure/disposalpipe/segment{ @@ -7772,9 +6281,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/dorms) "awb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7784,10 +6291,7 @@ dir = 1; name = "\improper Colony Dormitories" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/dorms) "awc" = ( /obj/structure/machinery/colony_floodlight, @@ -7833,76 +6337,49 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/hydroponics/lobby) "awj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/lobby) "awk" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/lobby) "awl" = ( /obj/structure/bed/chair/comfy/orange, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/lobby) "awm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/lobby) "awn" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/lobby) "awo" = ( /obj/structure/bed/chair/comfy/orange, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/hydroponics/lobby) "awp" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/floor/grass, /area/ice_colony/surface/hydroponics/lobby) "awq" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/hydroponics/lobby) "awr" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/lobby) "aws" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms) "awu" = ( /obj/item/shard, @@ -7958,10 +6435,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/lobby) "awD" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -7998,9 +6472,7 @@ "awH" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "awJ" = ( /obj/item/lightstick/planted, @@ -8043,17 +6515,11 @@ /area/ice_colony/surface/disposals) "awQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/lobby) "awR" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/lobby) "awT" = ( /obj/structure/closet/cabinet, @@ -8137,25 +6603,17 @@ /area/ice_colony/surface/disposals) "axh" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/exterior/surface/valley/west) "axi" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/hydroponics/lobby) "axj" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/exterior/surface/clearing/north) "axk" = ( /turf/closed/wall/r_wall, @@ -8167,10 +6625,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms) "axn" = ( /turf/closed/wall, @@ -8220,43 +6675,31 @@ /area/ice_colony/exterior/surface/clearing/south) "axv" = ( /obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/ice_colony/surface/disposals) "axw" = ( /obj/item/ammo_magazine/shotgun/slugs{ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/ice_colony/surface/disposals) "axx" = ( /obj/item/trash/raisins, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/ice_colony/surface/disposals) "axy" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/ice_colony/surface/disposals) "axz" = ( /obj/item/evidencebag, /obj/item/trash/pistachios, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/ice_colony/surface/disposals) "axA" = ( /obj/item/trash/liquidfood, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/ice_colony/surface/disposals) "axB" = ( /obj/structure/ice/thin/junction, @@ -8265,55 +6708,35 @@ "axC" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/hydroponics/lobby) "axD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/lobby) "axE" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/hydroponics/lobby) "axF" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/lobby) "axG" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/dorms/lavatory) "axH" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/dorms/lavatory) "axI" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/dorms/lavatory) "axJ" = ( /obj/structure/machinery/power/apc{ @@ -8322,23 +6745,14 @@ start_charge = 0 }, /obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/dorms/lavatory) "axK" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/dorms/lavatory) "axL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/dorms/lavatory) "axM" = ( /obj/structure/ladder{ @@ -8347,23 +6761,14 @@ id = "dorms_ladder"; pixel_y = 16 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/dorms/lavatory) "axN" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/dorms) "axO" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/dorms/canteen) "axP" = ( /obj/structure/machinery/power/apc{ @@ -8371,25 +6776,16 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms/canteen) "axQ" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms/canteen) "axR" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms/canteen) "axS" = ( /obj/structure/surface/table, @@ -8398,36 +6794,24 @@ }, /obj/item/reagent_container/food/snacks/hotchili, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms/canteen) "axT" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms/canteen) "axU" = ( /obj/structure/surface/table, /obj/item/storage/box/donkpockets, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/dorms/canteen) "axV" = ( /obj/structure/surface/table, /obj/item/storage/box/pizza, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/dorms/canteen) "axW" = ( /obj/vehicle/train/cargo/trolley, @@ -8519,26 +6903,17 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/disposals) "ayn" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/disposals) "ayo" = ( /obj/structure/machinery/door/window/northright, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/disposals) "ayp" = ( /turf/closed/wall/r_wall, @@ -8548,44 +6923,28 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Hydroponics Dome South Wing" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/south) "ayr" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/south) "ays" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/dorms/lavatory) "ayt" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/lavatory) "ayu" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/lavatory) "ayv" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/south) "ayw" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/dorms/lavatory) "ayx" = ( /obj/structure/machinery/vending/coffee, @@ -8593,35 +6952,25 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/dorms/canteen) "ayy" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southwest) "ayz" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/canteen) "ayA" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/canteen) "ayB" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms/canteen) "ayC" = ( /turf/open/auto_turf/snow/layer1, @@ -8684,10 +7033,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/treatment) "ayM" = ( /obj/structure/closet/secure_closet/medical3{ @@ -8696,10 +7042,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/storage) "ayN" = ( /turf/open/auto_turf/snow/layer0, @@ -8720,9 +7063,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Disposals" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/disposals) "ayS" = ( /obj/structure/disposalpipe/segment, @@ -8743,18 +7084,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/disposals) "ayV" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/disposals) "ayW" = ( /obj/structure/window/framed/colony/reinforced, @@ -8772,51 +7108,34 @@ "ayY" = ( /obj/structure/surface/table, /obj/structure/bedsheetbin, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/dorms/lavatory) "ayZ" = ( /obj/structure/surface/table, /obj/structure/bedsheetbin, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/dorms/lavatory) "aza" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray/cleaner, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/dorms/lavatory) "azb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/lavatory) "azc" = ( /obj/structure/closet/wardrobe/mixed, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/dorms/lavatory) "azd" = ( /obj/structure/closet/wardrobe/mixed, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/dorms/lavatory) "aze" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/dorms/canteen) "azf" = ( /obj/structure/disposalpipe/segment{ @@ -8828,45 +7147,34 @@ /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south) "azg" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms/canteen) "azh" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/canteen) "azi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/canteen) "azj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/dorms/canteen) "azk" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/dorms/canteen) "azl" = ( /obj/structure/disposalpipe/segment{ @@ -8901,30 +7209,20 @@ /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south) "azr" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/disposals) "azs" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/disposals) "azt" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south/excavation) "azu" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/disposals) "azv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/disposals) "azw" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -8938,9 +7236,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Colony Dormitories Lavatory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/lavatory) "azz" = ( /turf/open/auto_turf/snow/layer0, @@ -8954,15 +7250,11 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Colony Dormitories Canteen" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/canteen) "azC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms/canteen) "azD" = ( /turf/closed/wall/r_wall, @@ -8992,22 +7284,14 @@ /obj/item/device/radio, /obj/item/storage/toolbox/emergency, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/disposals) "azJ" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/disposals) "azK" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/disposals) "azL" = ( /obj/structure/machinery/light{ @@ -9019,22 +7303,13 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Colony Dormitories" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/dorms) "azN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/dorms) "azO" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/surface/dorms) "azP" = ( /obj/effect/landmark/hunter_secondary, @@ -9042,9 +7317,7 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "azQ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "azR" = ( /turf/closed/wall/r_wall, @@ -9053,32 +7326,20 @@ /obj/structure/surface/table, /obj/item/storage/belt/utility, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/garage/one) "azT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "azU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "azV" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "azW" = ( /obj/structure/machinery/power/apc{ @@ -9086,26 +7347,17 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "azX" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "azY" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "azZ" = ( /obj/structure/machinery/light{ @@ -9114,18 +7366,12 @@ /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "aAa" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/garage/one) "aAb" = ( /turf/closed/wall, @@ -9133,10 +7379,7 @@ "aAc" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aAd" = ( /obj/structure/machinery/light{ @@ -9144,23 +7387,14 @@ }, /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aAe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aAf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aAg" = ( /obj/structure/machinery/power/apc{ @@ -9168,34 +7402,22 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aAh" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aAi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aAj" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/garage/two) "aAk" = ( /obj/structure/surface/table, @@ -9207,10 +7429,7 @@ /obj/item/storage/box/lightstick/red, /obj/effect/landmark/good_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/disposals) "aAm" = ( /obj/structure/surface/table, @@ -9222,92 +7441,65 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/disposals) "aAo" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/disposals) "aAp" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/disposals) "aAq" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/flashlight/flare, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/disposals) "aAr" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Hydroponics South Wing Dome" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/south) "aAs" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aAt" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aAu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aAv" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/south) "aAw" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aAx" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/dorms) "aAy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aAz" = ( /obj/structure/surface/table, @@ -9320,9 +7512,7 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aAB" = ( /obj/structure/surface/table, @@ -9331,9 +7521,7 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "aAC" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aAD" = ( /obj/structure/machinery/floodlight{ @@ -9356,9 +7544,7 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f5" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aAH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -9368,18 +7554,14 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aAI" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aAJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -9388,9 +7570,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aAK" = ( /obj/structure/shuttle/diagonal{ @@ -9399,9 +7579,7 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aAL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -9411,9 +7589,7 @@ dir = 4 }, /obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "aAN" = ( /obj/effect/landmark/yautja_teleport, @@ -9427,30 +7603,20 @@ /obj/structure/surface/table, /obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/garage/one) "aAQ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/surface/garage/one) "aAR" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aAS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aAT" = ( /obj/structure/surface/rack, @@ -9458,30 +7624,20 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "aAU" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/garage/one) "aAV" = ( /obj/structure/closet/secure_closet/medical1{ req_access_txt = "100" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/surface/clinic/storage) "aAW" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aAX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aAY" = ( /obj/structure/surface/rack, @@ -9490,16 +7646,10 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "aAZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/surface/garage/two) "aBa" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/garage/two) "aBb" = ( /obj/structure/ice/thin/straight{ @@ -9524,14 +7674,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Colony Administration" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) "aBg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) "aBh" = ( /obj/structure/window/framed/colony/reinforced, @@ -9542,10 +7688,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/garage/repair) "aBj" = ( /obj/structure/disposalpipe/segment{ @@ -9559,10 +7702,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/garage/repair) "aBk" = ( /obj/structure/machinery/light{ @@ -9571,40 +7711,27 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/garage/repair) "aBl" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick/red, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/garage/repair) "aBm" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/one) "aBn" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aBo" = ( /obj/vehicle/train/cargo/trolley, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aBp" = ( /obj/item/tool/pickaxe, @@ -9613,78 +7740,51 @@ "aBq" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aBr" = ( /obj/vehicle/train/cargo/engine, /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aBs" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/two) "aBt" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aBu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/garage/two) "aBv" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/surface/command/control/office) "aBw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control/office) "aBx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control/office) "aBy" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/surface/command/control/office) "aBz" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/surface/command/checkpoint) "aBA" = ( /obj/structure/closet/secure_closet/security, @@ -9693,45 +7793,28 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/surface/command/checkpoint) "aBB" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/surface/command/checkpoint) "aBC" = ( /obj/item/shard, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/surface/command/checkpoint) "aBD" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) "aBE" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/checkpoint) "aBF" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/surface/command/checkpoint) "aBG" = ( /obj/structure/surface/rack, @@ -9755,25 +7838,17 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "aBK" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/garage/repair) "aBL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/garage/repair) "aBM" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south/excavation) "aBN" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aBO" = ( /obj/structure/surface/rack, @@ -9782,29 +7857,20 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "aBP" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/one) "aBQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "aBR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "aBS" = ( /obj/structure/surface/rack, @@ -9815,36 +7881,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "aBU" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/two) "aBV" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aBW" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aBX" = ( /obj/structure/surface/rack, @@ -9856,22 +7910,14 @@ icon_state = "N-corner" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aBZ" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/command/control/office) "aCa" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCb" = ( /obj/structure/window/reinforced/tinted{ @@ -9883,9 +7929,7 @@ /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCc" = ( /obj/structure/window/reinforced/tinted{ @@ -9897,29 +7941,20 @@ /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCd" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCe" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCf" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/surface/command/control/office) "aCg" = ( /obj/structure/machinery/alarm{ @@ -9930,10 +7965,7 @@ layer = 3 }, /obj/effect/landmark/corpsespawner/russian, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/command/checkpoint) "aCh" = ( /obj/structure/surface/table, @@ -9944,19 +7976,13 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Colony Security Checkpoint" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/command/checkpoint) "aCm" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/surface/command/checkpoint) "aCo" = ( /obj/structure/window/framed/colony/reinforced, @@ -9964,40 +7990,25 @@ /area/ice_colony/surface/garage/repair) "aCp" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/garage/repair) "aCq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/one) "aCr" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aCs" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/two) "aCt" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aCu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aCv" = ( /obj/structure/ice/ice_rock/cornerOverlay, @@ -10018,44 +8029,33 @@ dir = 8 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/command/control/office) "aCy" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCz" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCA" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, /obj/structure/machinery/computer/communications, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCB" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCC" = ( /obj/effect/landmark/corpsespawner/bridgeofficer, @@ -10063,27 +8063,21 @@ layer = 3 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCD" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCE" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, /obj/structure/machinery/computer/station_alert, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aCF" = ( /obj/structure/surface/table, @@ -10093,10 +8087,7 @@ pixel_x = 24 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/surface/clinic/lobby) "aCG" = ( /obj/structure/machinery/firealarm{ @@ -10104,79 +8095,55 @@ pixel_x = -24 }, /obj/item/weapon/gun/energy/taser, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/command/checkpoint) "aCH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/surface/command/checkpoint) "aCI" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/command/checkpoint) "aCK" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/garage/repair) "aCL" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aCM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aCN" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aCP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aCQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aCR" = ( /obj/vehicle/train/cargo/trolley, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aCS" = ( /obj/vehicle/train/cargo/trolley, @@ -10184,15 +8151,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aCU" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aCW" = ( /obj/structure/ice/thin/single, @@ -10205,10 +8168,7 @@ pixel_x = -24 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/command/control/office) "aDa" = ( /obj/structure/window/reinforced/tinted{ @@ -10218,16 +8178,12 @@ /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aDb" = ( /obj/item/weapon/gun/revolver/cmb, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aDc" = ( /obj/structure/window/reinforced/tinted{ @@ -10238,9 +8194,7 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aDd" = ( /obj/structure/machinery/power/apc{ @@ -10248,28 +8202,20 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/surface/command/control/office) "aDe" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/command/checkpoint) "aDf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) "aDg" = ( /obj/structure/bed/chair/office/light{ @@ -10278,10 +8224,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/surface/command/checkpoint) "aDh" = ( /obj/item/clipboard, @@ -10295,33 +8238,24 @@ /obj/item/stack/sheet/metal, /obj/item/shard, /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/command/checkpoint) "aDi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) "aDj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) "aDk" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/checkpoint) "aDl" = ( /obj/structure/bed/chair{ @@ -10330,44 +8264,30 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/surface/command/checkpoint) "aDm" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/garage/repair) "aDn" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aDo" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aDp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aDq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Colony Garage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aDr" = ( /obj/effect/decal/warning_stripes{ @@ -10377,20 +8297,14 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "aDs" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/garage/one) "aDt" = ( /obj/structure/ice/thin/corner, @@ -10410,10 +8324,7 @@ dir = 2; icon_state = "pipe-u" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/surface/hydroponics/south) "aDx" = ( /obj/structure/closet/crate/hydroponics, @@ -10422,44 +8333,30 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/south) "aDy" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/surface/command/control/office) "aDz" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control/office) "aDA" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control/office) "aDB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control/office) "aDC" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control/office) "aDD" = ( /obj/structure/machinery/firealarm{ @@ -10470,28 +8367,17 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/surface/command/control/office) "aDE" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/surface/command/checkpoint) "aDF" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/surface/command/checkpoint) "aDG" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/surface/command/checkpoint) "aDH" = ( /obj/structure/surface/table/reinforced, @@ -10504,31 +8390,20 @@ /obj/item/paper_bin, /obj/item/tool/stamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/command/checkpoint) "aDI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/surface/command/checkpoint) "aDJ" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/checkpoint) "aDK" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/surface/command/checkpoint) "aDL" = ( /obj/item/shard, @@ -10537,17 +8412,11 @@ /turf/open/floor/plating, /area/ice_colony/surface/garage/repair) "aDM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/garage/repair) "aDN" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/garage/repair) "aDO" = ( /obj/effect/decal/cleanable/blood/oil, @@ -10558,9 +8427,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10569,9 +8436,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10581,9 +8446,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10596,9 +8459,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDS" = ( /obj/structure/disposalpipe/segment{ @@ -10611,9 +8472,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10624,9 +8483,7 @@ icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10636,9 +8493,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10648,9 +8503,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10662,9 +8515,7 @@ /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "Colony Garage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aDX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10673,9 +8524,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aDY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10684,34 +8533,26 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aEa" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aEb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aEc" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aEd" = ( /turf/closed/ice/straight, @@ -10719,17 +8560,11 @@ "aEe" = ( /obj/structure/disposalpipe/segment, /obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/south) "aEg" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/hydroponics/south) "aEh" = ( /obj/structure/window/framed/colony/reinforced, @@ -10762,18 +8597,14 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Colony Offices" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aEl" = ( /obj/structure/machinery/door/poddoor/almayer{ id = "colony_admin_top"; name = "\improper Colony Administration Blast Door" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aEm" = ( /obj/structure/window/framed/colony/reinforced, @@ -10805,49 +8636,32 @@ flipped = 1; icon_state = "tableflip0" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/garage/repair) "aEr" = ( /obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/garage/repair) "aEs" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/garage/repair) "aEt" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/garage/repair) "aEu" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/garage/repair) "aEv" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/one) "aEw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aEx" = ( /obj/structure/disposalpipe/segment{ @@ -10857,24 +8671,17 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aEy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aEz" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/two) "aEA" = ( /turf/closed/ice/end{ @@ -10896,60 +8703,37 @@ "aEE" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/south) "aEF" = ( /obj/structure/closet/wardrobe/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/south) "aEG" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/command/control) "aEH" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/surface/command/control) "aEI" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aEJ" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aEK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aEL" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aEM" = ( /obj/item/stack/rods, /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/surface/command/control) "aEN" = ( /obj/item/shard, @@ -10961,19 +8745,13 @@ /area/ice_colony/surface/command/control) "aEO" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aEP" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aEQ" = ( /obj/structure/machinery/light{ @@ -10983,20 +8761,14 @@ flipped = 1; icon_state = "tableflip0" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aER" = ( /obj/structure/surface/table{ flipped = 1; icon_state = "tableflip0" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aES" = ( /obj/structure/disposalpipe/segment{ @@ -11004,37 +8776,27 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aET" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aEU" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control) "aEV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/surface/command/control) "aEW" = ( /obj/item/shard, @@ -11047,30 +8809,21 @@ dir = 1; name = "\improper Colony Garage Repair Station" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/repair) "aEY" = ( /obj/structure/surface/table, /obj/item/clothing/mask/rebreather, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/garage/one) "aEZ" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/one) "aFa" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/garage/one) "aFb" = ( /obj/structure/machinery/light, @@ -11078,9 +8831,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/one) "aFc" = ( /obj/structure/ladder{ @@ -11088,36 +8839,23 @@ icon_state = "ladderdown"; id = "garage_ladder" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/garage/one) "aFd" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/garage/two) "aFe" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/two) "aFf" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/garage/two) "aFg" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/garage/two) "aFi" = ( /obj/structure/disposalpipe/segment{ @@ -11127,9 +8865,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aFj" = ( /obj/structure/disposalpipe/segment{ @@ -11141,9 +8877,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aFk" = ( /obj/structure/disposalpipe/segment{ @@ -11153,17 +8887,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aFl" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aFm" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, @@ -11174,32 +8904,22 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/south) "aFn" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/command/control) "aFo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFr" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -11207,33 +8927,22 @@ id = "colony_admin_top"; name = "\improper Colony Administration Blast Door" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFt" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFv" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/surface/command/control) "aFy" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/one) "aFz" = ( /obj/structure/machinery/door_control{ @@ -11241,20 +8950,13 @@ name = "garage shutter control"; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/one) "aFA" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/garage/one) "aFB" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/two) "aFC" = ( /obj/structure/machinery/door_control{ @@ -11262,31 +8964,20 @@ name = "garage shutter control"; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/garage/two) "aFE" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/power) "aFH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/south) "aFI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/south) "aFJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/hydroponics/south) "aFK" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -11298,32 +8989,23 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/command/control) "aFM" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFO" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFQ" = ( /obj/structure/disposalpipe/segment{ @@ -11333,9 +9015,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFR" = ( /obj/structure/disposalpipe/junction{ @@ -11344,9 +9024,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFS" = ( /obj/structure/disposalpipe/segment{ @@ -11364,9 +9042,7 @@ dir = 1; name = "\improper Colony Control Center" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFT" = ( /obj/structure/disposalpipe/segment{ @@ -11375,27 +9051,21 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFU" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFW" = ( /obj/structure/disposalpipe/junction{ @@ -11405,19 +9075,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aFX" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/surface/command/control) "aFY" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -11426,38 +9091,28 @@ dir = 2; name = "Colony Garage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/one) "aFZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "garage_ice_1"; name = "\improper Garage Shutters" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/one) "aGb" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 2; name = "Colony Garage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/garage/two) "aGc" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "garage_ice_2"; name = "\improper Garage Shutters" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) "aGd" = ( /obj/structure/closet/crate, @@ -11470,18 +9125,12 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 15 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aGe" = ( /obj/structure/largecrate/random, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aGf" = ( /turf/closed/ice/end{ @@ -11490,10 +9139,7 @@ /area/ice_colony/exterior/surface/valley/southeast) "aGg" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/south) "aGh" = ( /turf/closed/ice_rock/singleT{ @@ -11502,21 +9148,14 @@ /area/ice_colony/exterior/surface/cliff) "aGi" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/surface/command/control) "aGj" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control) "aGk" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control) "aGl" = ( /obj/structure/disposalpipe/segment{ @@ -11527,18 +9166,14 @@ icon_state = "gib6" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aGm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control) "aGn" = ( /obj/structure/disposalpipe/segment{ @@ -11547,17 +9182,13 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control) "aGo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control) "aGp" = ( /obj/structure/disposalpipe/segment{ @@ -11567,9 +9198,7 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/command/control) "aGq" = ( /obj/structure/disposalpipe/segment{ @@ -11577,10 +9206,7 @@ icon_state = "pipe-c" }, /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/surface/command/control) "aGr" = ( /obj/structure/window/framed/colony/reinforced, @@ -11594,16 +9220,11 @@ "aGs" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control) "aGu" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/surface/command/control) "aGC" = ( /obj/structure/ice/thin/end{ @@ -11630,33 +9251,21 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aGH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aGI" = ( /obj/structure/closet/crate, /obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aGJ" = ( /obj/structure/surface/table, /obj/item/storage/bag/plants, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/surface/hydroponics/south) "aGK" = ( /obj/structure/ladder{ @@ -11665,10 +9274,7 @@ id = "hydroponics_ladder"; pixel_y = 16 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/south) "aGL" = ( /turf/closed/wall/r_wall, @@ -11755,10 +9361,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aHd" = ( /obj/structure/machinery/door_control{ @@ -11769,10 +9372,7 @@ req_access_txt = "100"; specialfunctions = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aHf" = ( /turf/closed/ice/end{ @@ -11906,20 +9506,14 @@ /area/ice_colony/exterior/surface/clearing/pass) "aHy" = ( /obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aHz" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/surface/clinic/lobby) "aHD" = ( /obj/structure/closet/secure_closet/guncabinet, @@ -11988,17 +9582,11 @@ /area/ice_colony/surface/command/control/pv2) "aHP" = ( /obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aHQ" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aHS" = ( /obj/structure/ice/thin/straight, @@ -12020,9 +9608,7 @@ "aHV" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/hydroponics/lobby) "aHW" = ( /obj/structure/surface/table/woodentable, @@ -12038,10 +9624,7 @@ "aHY" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/surface/hydroponics/lobby) "aHZ" = ( /obj/structure/surface/table/woodentable, @@ -12082,10 +9665,7 @@ "aIg" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/surface/hydroponics/lobby) "aIh" = ( /obj/structure/surface/table/woodentable, @@ -12108,17 +9688,11 @@ /area/ice_colony/exterior/surface/clearing/pass) "aIm" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aIn" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "aIo" = ( /obj/structure/ice/thin/corner, @@ -12170,10 +9744,7 @@ "aIw" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/hydroponics/lobby) "aIx" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -12290,16 +9861,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "aIT" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/surface/hydroponics/south) "aIU" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -12371,16 +9937,10 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/telecomms) "aJi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/telecomms) "aJj" = ( /obj/structure/machinery/door_control{ @@ -12391,10 +9951,7 @@ req_access_txt = "100"; specialfunctions = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/telecomms) "aJk" = ( /obj/effect/landmark/hunter_secondary, @@ -12410,17 +9967,11 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/telecomms) "aJp" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/telecomms) "aJq" = ( /turf/closed/shuttle/elevator{ @@ -12474,18 +10025,12 @@ }, /area/shuttle/elevator1/ground) "aJE" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/ice_colony/surface/storage_unit/telecomms) "aJF" = ( /obj/effect/spawner/random/toolbox, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/telecomms) "aJG" = ( /obj/structure/tunnel{ @@ -12573,14 +10118,10 @@ /area/ice_colony/surface/hangar/checkpoint) "aKi" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aKj" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aKk" = ( /obj/effect/landmark/hunter_primary, @@ -12592,21 +10133,11 @@ /area/ice_colony/exterior/surface/valley/southwest) "aKn" = ( /obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKo" = ( /obj/structure/surface/rack, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKp" = ( /obj/structure/machinery/light/small{ @@ -12617,25 +10148,16 @@ icon_state = "ladderdown"; id = "research_storage_ladder" }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKq" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar/red, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKr" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKs" = ( /obj/structure/ice/thin/single, @@ -12691,10 +10213,7 @@ /area/ice_colony/exterior/surface/clearing/south) "aKK" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/surface/hangar/checkpoint) "aKL" = ( /obj/structure/closet/secure_closet/security, @@ -12703,50 +10222,32 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/surface/hangar/checkpoint) "aKN" = ( /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aKO" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aKP" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aKQ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKS" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aKT" = ( /obj/structure/ice/thin/corner{ @@ -12851,45 +10352,33 @@ /area/ice_colony/exterior/surface/clearing/south) "aLl" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/hangar/checkpoint) "aLo" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Colony Security Checkpoint" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/hangar/checkpoint) "aLq" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aLr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aLs" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aLt" = ( /turf/closed/ice/corner{ @@ -12898,10 +10387,7 @@ /area/ice_colony/exterior/surface/valley/southeast) "aLv" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aLw" = ( /obj/structure/ice/thin/corner{ @@ -12921,30 +10407,21 @@ /turf/open/floor/wood, /area/ice_colony/surface/bar/canteen) "aLD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/surface/hangar/checkpoint) "aLE" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aLF" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aLG" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aLH" = ( /turf/closed/ice/straight{ @@ -12977,20 +10454,14 @@ dir = 8 }, /obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aLP" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aLQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -13117,18 +10588,13 @@ dir = 8 }, /obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/hangar/checkpoint) "aMk" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMl" = ( /obj/structure/bed/chair/office/light{ @@ -13137,10 +10603,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/surface/hangar/checkpoint) "aMm" = ( /obj/structure/surface/table/reinforced, @@ -13155,61 +10618,45 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/hangar/checkpoint) "aMn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/hangar/checkpoint) "aMo" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMr" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMs" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMt" = ( /obj/structure/fence, @@ -13224,27 +10671,19 @@ "aMv" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/research/field_gear) "aMw" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/field_gear) "aMx" = ( /obj/structure/surface/table, /obj/item/device/lightreplacer, /obj/item/clothing/mask/rebreather, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/disposals) "aMy" = ( /turf/closed/shuttle/elevator{ @@ -13325,10 +10764,7 @@ /turf/open/floor/plating, /area/ice_colony/surface/bar/bar) "aMT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/hangar/checkpoint) "aMU" = ( /obj/structure/surface/table/reinforced, @@ -13340,28 +10776,18 @@ }, /obj/item/paper_bin, /obj/item/tool/stamp, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/hangar/checkpoint) "aMV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/hangar/checkpoint) "aMW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMX" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aMY" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -13379,27 +10805,16 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/research/field_gear) "aNa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/field_gear) "aNb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/research/field_gear) "aNc" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/field_gear) "aNd" = ( /turf/closed/shuttle/elevator, @@ -13442,10 +10857,7 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aNp" = ( /obj/structure/machinery/door_control{ @@ -13456,19 +10868,13 @@ req_access_txt = "103"; specialfunctions = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aNq" = ( /obj/item/stack/sheet/mineral/phoron{ amount = 15 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "aNr" = ( /obj/structure/ice/thin/corner{ @@ -13482,18 +10888,14 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNt" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green, /obj/item/tool/kitchen/utensil/knife, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNu" = ( /obj/structure/surface/table/reinforced, @@ -13501,17 +10903,13 @@ dir = 1 }, /obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNv" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/fortunecookie/prefilled, /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNw" = ( /obj/structure/surface/table/reinforced, @@ -13522,16 +10920,12 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNx" = ( /obj/effect/landmark/crap_item, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNy" = ( /obj/structure/surface/table/reinforced, @@ -13539,17 +10933,13 @@ dir = 1 }, /obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNz" = ( /obj/structure/machinery/door/window/northright{ name = "Canteen" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNA" = ( /obj/structure/surface/table/woodentable, @@ -13575,57 +10965,37 @@ /area/ice_colony/surface/bar/bar) "aNK" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/surface/hangar/checkpoint) "aNL" = ( /obj/structure/surface/table, /obj/item/device/flashlight, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/garage/two) "aNM" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/command/control/office) "aNN" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aNO" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) "aNP" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/research/field_gear) "aNQ" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/research/field_gear) "aNR" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/field_gear) "aNT" = ( /obj/structure/surface/rack, @@ -13643,20 +11013,14 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aNZ" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aOa" = ( /obj/structure/machinery/smartfridge, @@ -13692,17 +11056,11 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Security Checkpoint" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/hangar/checkpoint) "aOi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/hangar/checkpoint) "aOj" = ( /turf/closed/wall/r_wall, @@ -13712,17 +11070,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/field_gear) "aOl" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/field_gear) "aOm" = ( /turf/closed/wall, @@ -13748,40 +11100,29 @@ /area/ice_colony/exterior/surface/cliff) "aOv" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/garage/repair) "aOw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aOy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aOz" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aOA" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aOB" = ( /obj/effect/decal/cleanable/blood{ @@ -13816,27 +11157,19 @@ /turf/open/floor/plating, /area/ice_colony/surface/hangar/alpha) "aOH" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/hangar/alpha) "aOI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/surface/hangar/alpha) "aOJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/hangar/alpha) "aOK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -13845,9 +11178,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/alpha) "aOL" = ( /obj/effect/spawner/random/toolbox, @@ -13857,9 +11188,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/alpha) "aOM" = ( /obj/structure/machinery/light{ @@ -13871,9 +11200,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/alpha) "aON" = ( /obj/structure/reagent_dispensers/fueltank, @@ -13883,9 +11210,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/alpha) "aOO" = ( /obj/structure/machinery/disposal, @@ -13896,10 +11221,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/west, /area/ice_colony/surface/hangar/alpha) "aOP" = ( /obj/structure/shuttle/diagonal{ @@ -13908,9 +11230,7 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f5" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aOQ" = ( /obj/structure/machinery/power/apc{ @@ -13922,22 +11242,15 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/hangar/alpha) "aOR" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aOS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aOT" = ( /obj/structure/machinery/power/apc{ @@ -13949,10 +11262,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/hangar/beta) "aOV" = ( /obj/structure/machinery/disposal, @@ -13960,9 +11270,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/hangar/beta) "aOW" = ( /obj/structure/reagent_dispensers/fueltank, @@ -13972,9 +11280,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/beta) "aOX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -13989,9 +11295,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/beta) "aOY" = ( /obj/effect/decal/warning_stripes{ @@ -14006,9 +11310,7 @@ id = "hangar_ladder1"; pixel_y = 16 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/beta) "aOZ" = ( /obj/effect/decal/warning_stripes{ @@ -14017,9 +11319,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/beta) "aPa" = ( /obj/structure/machinery/space_heater, @@ -14029,45 +11329,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/west, /area/ice_colony/surface/hangar/beta) "aPb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/surface/hangar/beta) "aPc" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/hangar/beta) "aPd" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/field_gear) "aPe" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/research) "aPf" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/research) "aPg" = ( /turf/closed/shuttle/elevator{ @@ -14094,15 +11376,10 @@ }, /area/shuttle/elevator3/ground) "aPl" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aPm" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/research) "aPn" = ( /obj/structure/machinery/door_control{ @@ -14113,10 +11390,7 @@ req_access_txt = "103"; specialfunctions = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/research) "aPr" = ( /obj/structure/machinery/firealarm{ @@ -14125,9 +11399,7 @@ }, /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aPs" = ( /obj/structure/machinery/processor, @@ -14135,9 +11407,7 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aPt" = ( /obj/structure/sink{ @@ -14150,24 +11420,18 @@ pixel_x = 6; pixel_y = -2 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aPu" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aPv" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/flour, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aPw" = ( /obj/structure/surface/table, @@ -14185,9 +11449,7 @@ pixel_y = 3 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aPx" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, @@ -14228,47 +11490,33 @@ /turf/open/floor/plating, /area/ice_colony/surface/hangar/alpha) "aPD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aPE" = ( /obj/item/shard, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aPF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aPG" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aPH" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aPI" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f6" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aPJ" = ( /obj/structure/window/shuttle, @@ -14278,62 +11526,43 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f10" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aPL" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aPM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aPP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aPR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aPS" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aPT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aPU" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f6" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aPV" = ( /obj/structure/window/shuttle, @@ -14343,40 +11572,28 @@ /obj/structure/shuttle/diagonal{ icon_state = "swall_f10" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aPX" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aPY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aPZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aQa" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aQb" = ( /obj/structure/machinery/power/apc{ @@ -14388,18 +11605,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/field_gear) "aQc" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/field_gear) "aQd" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -14409,49 +11621,30 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/field_gear) "aQe" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aQf" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/research) "aQg" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aQh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aQi" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aQj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/research) "aQk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14461,9 +11654,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aQl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14472,9 +11663,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aQt" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -14482,9 +11671,7 @@ dir = 1; name = "\improper Anti-Freeze Canteen Freezer" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aQu" = ( /obj/effect/decal/cleanable/blood{ @@ -14495,9 +11682,7 @@ dir = 1; name = "\improper Anti-Freeze Bar Freezer" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aQw" = ( /obj/structure/bed/stool, @@ -14511,19 +11696,14 @@ /area/ice_colony/surface/bar/bar) "aQz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aQA" = ( /obj/effect/spawner/random/tool, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aQE" = ( /obj/structure/disposalpipe/segment{ @@ -14536,10 +11716,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aQG" = ( /obj/structure/disposalpipe/segment{ @@ -14548,9 +11725,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aQH" = ( /obj/structure/disposalpipe/segment{ @@ -14562,40 +11737,29 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Aerodrome Hangar Alpha" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aQI" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aQJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aQN" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aQO" = ( /obj/structure/surface/table, /obj/item/device/flashlight, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aQP" = ( /obj/structure/ice/thin, @@ -14606,31 +11770,20 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/research/field_gear) "aQR" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/field_gear) "aQT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/research) "aQV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/research) "aQW" = ( /obj/structure/machinery/light{ @@ -14642,10 +11795,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/research) "aQX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14654,37 +11804,25 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aQY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aQZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aRa" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aRb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14697,10 +11835,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aRc" = ( /obj/structure/machinery/light{ @@ -14712,102 +11847,71 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/surface/research) "aRd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/research) "aRe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/surface/research) "aRf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aRm" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aRn" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/bigbiteburger, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aRo" = ( /obj/item/tool/kitchen/knife/butcher, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aRp" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aRq" = ( /obj/structure/kitchenspike, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aRr" = ( /obj/structure/machinery/gibber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aRs" = ( /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aRt" = ( /obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aRu" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aRv" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aRw" = ( /obj/structure/machinery/space_heater, @@ -14827,17 +11931,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aRD" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aRE" = ( /turf/closed/shuttle{ @@ -14847,38 +11945,27 @@ "aRI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aRJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/research) "aRK" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aRL" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/research) "aRM" = ( /obj/effect/decal/warning_stripes{ @@ -14887,10 +11974,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/research) "aRN" = ( /obj/structure/disposalpipe/segment{ @@ -14899,38 +11983,26 @@ /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aRO" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aRP" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aRQ" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aRR" = ( /obj/structure/disposalpipe/segment{ @@ -14939,10 +12011,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aRS" = ( /obj/structure/disposalpipe/segment{ @@ -14951,27 +12020,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/surface/research) "aRT" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/research) "aRU" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aRV" = ( /obj/structure/pipes/vents/pump{ @@ -14981,27 +12042,20 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aRW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/research) "aRY" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aRZ" = ( /obj/item/reagent_container/food/snacks/meat{ @@ -15019,53 +12073,38 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aSa" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aSb" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aSc" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aSd" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aSe" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aSf" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aSg" = ( /turf/closed/shuttle{ @@ -15088,22 +12127,15 @@ }, /area/ice_colony/surface/hangar/alpha) "aSm" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aSn" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aSo" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aSp" = ( /turf/closed/shuttle{ @@ -15128,10 +12160,7 @@ "aSu" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aSv" = ( /obj/structure/ice/thin/junction{ @@ -15147,19 +12176,13 @@ /obj/item/clothing/gloves/black, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/research/temporary) "aSy" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/black, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/temporary) "aSz" = ( /obj/structure/surface/table, @@ -15169,10 +12192,7 @@ dir = 1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/temporary) "aSA" = ( /obj/structure/machinery/light{ @@ -15180,10 +12200,7 @@ }, /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/surface/command/control/office) "aSB" = ( /turf/closed/wall, @@ -15194,27 +12211,20 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aSD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aSE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/research) "aSF" = ( /obj/effect/decal/warning_stripes{ @@ -15223,35 +12233,23 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/research) "aSG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aSH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aSI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aSJ" = ( /obj/effect/decal/warning_stripes{ @@ -15260,27 +12258,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/surface/research) "aSK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/research) "aSL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/research) "aSM" = ( /obj/effect/decal/warning_stripes{ @@ -15291,34 +12281,25 @@ name = "Research Garage Lock"; pixel_x = 24 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/research) "aSO" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aSP" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aSQ" = ( /obj/structure/plasticflaps, /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aSR" = ( /obj/effect/decal/cleanable/blood/gibs/body, @@ -15326,155 +12307,102 @@ dir = 1 }, /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aSS" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aST" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aTb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aTc" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/temporary) "aTd" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/temporary) "aTe" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/temporary) "aTf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aTg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/research) "aTh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aTi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aTj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aTk" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/surface/research) "aTl" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southwest, /area/ice_colony/surface/research) "aTm" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/surface/research) "aTn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southeast, /area/ice_colony/surface/research) "aTo" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/valley/southwest) "aTp" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/exterior/surface/valley/southwest) "aTr" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aTs" = ( /obj/structure/machinery/chem_master/condimaster, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aTt" = ( /obj/structure/ladder{ @@ -15483,27 +12411,19 @@ id = "canteen_ladder" }, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aTu" = ( /obj/structure/closet/bodybag, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aTv" = ( /obj/structure/closet/crate/freezer/rations, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "aTw" = ( /obj/structure/kitchenspike, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/bar) "aTx" = ( /obj/structure/surface/table, @@ -15512,10 +12432,7 @@ dir = 8 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aTH" = ( /obj/structure/machinery/power/apc{ @@ -15523,18 +12440,13 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/temporary) "aTI" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/temporary) "aTJ" = ( /obj/structure/disposalpipe/segment{ @@ -15544,9 +12456,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/temporary) "aTK" = ( /obj/structure/disposalpipe/segment{ @@ -15555,9 +12465,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/temporary) "aTL" = ( /obj/structure/disposalpipe/segment{ @@ -15569,10 +12477,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Omicron Temporary Sample Storage" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/temporary) "aTM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15581,45 +12486,31 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aTN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aTO" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aTQ" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aTR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/research) "aTS" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/valley/southwest) "aTT" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/valley/southwest) "aTY" = ( /turf/open/ice, @@ -15627,28 +12518,17 @@ "aTZ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/temporary) "aUa" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/temporary) "aUb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/temporary) "aUc" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/research) "aUd" = ( /obj/structure/pipes/vents/pump{ @@ -15658,18 +12538,13 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/research) "aUe" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/research) "aUf" = ( /obj/effect/decal/warning_stripes{ @@ -15679,16 +12554,11 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/research) "aUg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "aUh" = ( /turf/closed/shuttle{ @@ -15703,18 +12573,13 @@ /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/command/control/office) "aUm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aUn" = ( /turf/closed/shuttle{ @@ -15745,10 +12610,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/surface/research) "aUu" = ( /obj/effect/decal/warning_stripes{ @@ -15757,10 +12619,7 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/research) "aUv" = ( /obj/effect/decal/warning_stripes{ @@ -15771,29 +12630,20 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/research) "aUw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/research) "aUx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/research) "aUy" = ( /obj/effect/decal/warning_stripes{ @@ -15803,21 +12653,13 @@ id = "researchoutside"; name = "Omicron Research Dome" }, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northeast, /area/ice_colony/surface/research) "aUz" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/valley/southwest) "aUA" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/valley/southwest) "aUH" = ( /obj/structure/disposalpipe/segment{ @@ -15827,9 +12669,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aUI" = ( /obj/structure/disposalpipe/segment{ @@ -15841,9 +12681,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Aerodrome Hangar Beta" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aUL" = ( /obj/structure/disposalpipe/segment{ @@ -15853,10 +12691,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aUN" = ( /obj/structure/ice/thin/end{ @@ -15875,44 +12710,26 @@ /area/ice_colony/exterior/surface/landing_pad_external) "aUQ" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/research/temporary) "aUR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/research/temporary) "aUS" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/surface/research/temporary) "aUT" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/temporary) "aUU" = ( /obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/temporary) "aUV" = ( /obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/research/temporary) "aUW" = ( /turf/closed/wall, @@ -15928,9 +12745,7 @@ dir = 1; name = "\improper Omicron Technical Storage" }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aUZ" = ( /turf/closed/wall/r_wall, @@ -15940,26 +12755,19 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aVc" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aVd" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aVe" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -15983,116 +12791,76 @@ icon_state = "pipe-c" }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/temporary) "aVi" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/temporary) "aVj" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/research/temporary) "aVk" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/temporary) "aVl" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/temporary) "aVm" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/research/tech_storage) "aVn" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/tech_storage) "aVp" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/tech_storage) "aVq" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/tech_storage) "aVr" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/tech_storage) "aVs" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/research/tech_storage) "aVt" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "platebot" - }, +/turf/open/floor/platebot, /area/ice_colony/surface/research/tech_storage) "aVv" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/exterior/surface/container_yard) "aVw" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/container_yard) "aVx" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/exterior/surface/container_yard) "aVy" = ( /turf/closed/shuttle{ @@ -16103,36 +12871,26 @@ /obj/structure/surface/table, /obj/item/storage/belt/utility, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aVA" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aVB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aVC" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aVD" = ( /turf/closed/shuttle{ @@ -16144,10 +12902,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aVF" = ( /obj/structure/machinery/landinglight/ds1{ @@ -16156,46 +12911,31 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/exterior/surface/landing_pad) "aVG" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "aVH" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "aVI" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "aVJ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "aVK" = ( /obj/structure/machinery/landinglight/ds1{ @@ -16204,69 +12944,43 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/exterior/surface/landing_pad) "aVL" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/research/temporary) "aVM" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/research/temporary) "aVN" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/research/temporary) "aVO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/tech_storage) "aVP" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/tech_storage) "aVQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/tech_storage) "aVR" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/tech_storage) "aVT" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/container_yard) "aVU" = ( /obj/structure/machinery/colony_floodlight, @@ -16281,95 +12995,67 @@ /area/ice_colony/exterior/surface/container_yard) "aVX" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/container_yard) "aVZ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aWa" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aWb" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f5" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aWe" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aWf" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aWg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aWh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/hallway) "aWi" = ( /obj/structure/surface/table, /obj/item/storage/belt/utility, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aWj" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aWk" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f5" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aWn" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f9" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aWo" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -16378,10 +13064,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/exterior/surface/landing_pad) "aWp" = ( /turf/open/floor/plating, @@ -16393,10 +13076,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/exterior/surface/landing_pad) "aWs" = ( /obj/structure/surface/table, @@ -16411,18 +13091,13 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/research/tech_storage) "aWt" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/tech_storage) "aWu" = ( /obj/structure/disposalpipe/segment{ @@ -16432,18 +13107,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/tech_storage) "aWv" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research/tech_storage) "aWw" = ( /obj/structure/closet/wardrobe/green, @@ -16451,10 +13122,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/hydroponics/south) "aWB" = ( /obj/structure/cargo_container/watatsumi/leftmid, @@ -16486,10 +13154,7 @@ /area/ice_colony/exterior/surface/container_yard) "aWI" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "aWJ" = ( /turf/closed/shuttle{ @@ -16500,29 +13165,20 @@ /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aWL" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/beta) "aWM" = ( /obj/structure/machinery/space_heater, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aWN" = ( /turf/closed/shuttle{ @@ -16531,19 +13187,13 @@ /area/ice_colony/surface/hangar/beta) "aWO" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "aWP" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aWQ" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -16553,83 +13203,57 @@ /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad) "aWS" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/research/tech_storage) "aWT" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aWU" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aWV" = ( /obj/structure/surface/rack, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aWW" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aWX" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aWY" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aWZ" = ( /obj/structure/surface/rack, /obj/item/storage/box/lightstick/red, /obj/item/storage/box/lightstick/red, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aXa" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/research/tech_storage) "aXb" = ( /obj/structure/surface/table, /obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/tech_storage) "aXc" = ( /obj/structure/cargo_container/arious/leftmid, @@ -16659,32 +13283,21 @@ /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/container_yard) "aXj" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/alpha) "aXk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/west, /area/ice_colony/surface/hangar/alpha) "aXl" = ( /obj/structure/shuttle/diagonal{ dir = 9; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aXm" = ( /turf/closed/shuttle{ @@ -16696,34 +13309,24 @@ dir = 5; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aXo" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "aXr" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/beta) "aXt" = ( /obj/structure/shuttle/diagonal{ dir = 9; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aXu" = ( /turf/closed/shuttle{ @@ -16735,21 +13338,14 @@ dir = 5; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aXw" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/hangar/beta) "aXx" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/beta) "aXy" = ( /obj/structure/ice/thin/end{ @@ -16761,32 +13357,21 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aXA" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad) "aXB" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/research/tech_storage) "aXC" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/research/tech_storage) "aXH" = ( /obj/structure/cargo_container/grant/left, @@ -16808,46 +13393,33 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/alpha) "aXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/alpha) "aXN" = ( /obj/structure/shuttle/diagonal{ dir = 6; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aXO" = ( /obj/structure/shuttle/diagonal{ dir = 10; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "aXP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/alpha) "aXQ" = ( /obj/structure/machinery/light{ @@ -16858,72 +13430,50 @@ name = "hangar shutter control"; pixel_y = -30 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/alpha) "aXR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Aerodrome Hangar" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/hallway) "aXS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/hallway) "aXT" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/beta) "aXU" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/beta) "aXV" = ( /obj/structure/shuttle/diagonal{ dir = 6; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aXW" = ( /obj/structure/shuttle/diagonal{ dir = 10; icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "aXX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/beta) "aXY" = ( /obj/structure/machinery/light{ @@ -16934,10 +13484,7 @@ name = "hangar shutter control"; pixel_y = -30 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/beta) "aXZ" = ( /obj/structure/ice/thin/corner, @@ -16958,35 +13505,22 @@ /area/ice_colony/exterior/surface/landing_pad_external) "aYd" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/research/tech_storage) "aYe" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aYf" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/tech_storage) "aYg" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/research/tech_storage) "aYi" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/container_yard) "aYj" = ( /obj/effect/decal/warning_stripes{ @@ -16999,10 +13533,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/hangar/alpha) "aYk" = ( /obj/effect/decal/warning_stripes{ @@ -17012,10 +13543,7 @@ id = "hangar_ice_1"; name = "\improper Hangar Shutters" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/hangar/alpha) "aYl" = ( /obj/effect/decal/warning_stripes{ @@ -17028,10 +13556,7 @@ id = "hangar_ice_1"; name = "\improper Hangar Shutters" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/hangar/alpha) "aYo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17049,10 +13574,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/hangar/beta) "aYq" = ( /obj/effect/decal/warning_stripes{ @@ -17062,10 +13584,7 @@ id = "hangar_ice_2"; name = "\improper Hangar Shutters" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/hangar/beta) "aYr" = ( /obj/effect/decal/warning_stripes{ @@ -17078,10 +13597,7 @@ id = "hangar_ice_2"; name = "\improper Hangar Shutters" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/hangar/beta) "aYs" = ( /obj/structure/ice/thin/end, @@ -17091,10 +13607,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aYx" = ( /obj/vehicle/train/cargo/trolley, @@ -17109,16 +13622,10 @@ dir = 8 }, /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/exterior/surface/landing_pad) "aYB" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "aYC" = ( /turf/open/floor/plating/icefloor, @@ -17128,39 +13635,25 @@ /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) "aYE" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/exterior/surface/landing_pad) "aYG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "aYH" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/landing_pad) "aYI" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/exterior/surface/landing_pad) "aYJ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aYK" = ( /turf/closed/ice/straight{ @@ -17176,16 +13669,10 @@ /obj/structure/barricade/metal{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aYO" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad) "aYP" = ( /obj/structure/lz_sign/ice_sign, @@ -17198,10 +13685,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/ice_colony/exterior/surface/landing_pad) "aYR" = ( /obj/structure/machinery/floodlight/landing, @@ -17211,10 +13695,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/exterior/surface/landing_pad) "aYS" = ( /turf/closed/ice/straight, @@ -17226,10 +13707,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aZb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17264,25 +13742,16 @@ /obj/structure/barricade/metal{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "aZg" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/shuttle_control/dropship1, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/landing/console) "aZh" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "aZi" = ( /obj/structure/machinery/landinglight/ds1{ @@ -17295,10 +13764,7 @@ /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) "aZm" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aZn" = ( /obj/effect/decal/cleanable/blood/oil, @@ -17336,30 +13802,19 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad) "aZx" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/exterior/surface/container_yard) "aZy" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/container_yard) "aZz" = ( /obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/container_yard) "aZA" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -17371,20 +13826,14 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/exterior/surface/landing_pad) "aZC" = ( /obj/structure/barricade/metal{ dir = 8 }, /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "aZE" = ( /obj/structure/ice/thin/corner{ @@ -17420,20 +13869,14 @@ /area/ice_colony/exterior/surface/landing_pad) "aZQ" = ( /obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "aZR" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "aZS" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "aZT" = ( /obj/structure/reagent_dispensers/fueltank, @@ -17496,10 +13939,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/ice_colony/exterior/surface/landing_pad) "baf" = ( /obj/structure/machinery/floodlight/landing, @@ -17507,10 +13947,7 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/landing_pad) "bag" = ( /obj/structure/ice/thin/corner{ @@ -17538,28 +13975,16 @@ /area/ice_colony/exterior/surface/landing_pad_external) "ban" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/landing_pad) "bao" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/underground/hangar) "bap" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/underground/hangar) "baq" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/underground/hangar) "bar" = ( /obj/structure/ice/thin/end, @@ -17587,10 +14012,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "bax" = ( /obj/structure/ice/thin/junction{ @@ -17602,10 +14024,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "baz" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, @@ -17617,17 +14036,11 @@ /area/ice_colony/underground/hangar) "baB" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/underground/hangar) "baC" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "baD" = ( /obj/structure/machinery/landinglight/ds2, @@ -17635,43 +14048,28 @@ /area/ice_colony/underground/hangar) "baE" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/underground/hangar) "baF" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "baH" = ( /obj/structure/machinery/landinglight/ds1, /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/exterior/surface/landing_pad) "baI" = ( /obj/structure/machinery/landinglight/ds1, /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/landing_pad) "baJ" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "baK" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -17686,10 +14084,7 @@ /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) "baN" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/underground/hangar) "baO" = ( /obj/structure/machinery/landinglight/ds2{ @@ -17721,10 +14116,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/exterior/surface/landing_pad) "baZ" = ( /obj/structure/ice/thin/corner{ @@ -17739,9 +14131,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/underground/hangar) "bbc" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -17751,9 +14141,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/underground/hangar) "bbg" = ( /obj/structure/ice/thin/straight, @@ -17780,15 +14168,11 @@ /area/ice_colony/exterior/surface/cliff) "bbl" = ( /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "bbm" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "bbn" = ( /turf/open/gm/empty, @@ -17797,19 +14181,13 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/underground/hangar) "bbq" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/underground/hangar) "bbt" = ( /obj/structure/ice/thin/junction{ @@ -17825,57 +14203,39 @@ dir = 1; name = "\improper Colony Storeroom" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/tcomms) "bby" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/exterior/surface/landing_pad) "bbz" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "bbA" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/exterior/surface/landing_pad) "bbB" = ( /obj/structure/machinery/landinglight/ds1/delayone, /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/exterior/surface/landing_pad) "bbE" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/tcomms) "bbF" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/surface/tcomms) "bbG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/tcomms) "bbI" = ( /obj/structure/ice/thin/single, @@ -17899,9 +14259,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/ice_colony/surface/tcomms) "bbW" = ( /obj/structure/ice/thin/corner{ @@ -17951,17 +14309,11 @@ /area/ice_colony/underground/hangar) "bcg" = ( /obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/surface/excavation/storage) "bch" = ( /obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/surface/excavation/storage) "bci" = ( /turf/closed/wall, @@ -17970,22 +14322,15 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Colony Xenoarcheology Outpost" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bck" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bcl" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/tcomms) "bco" = ( /obj/structure/ice/thin/end, @@ -18049,68 +14394,42 @@ "bcF" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/surface/excavation) "bcG" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) "bcH" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) "bcI" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) "bcJ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) "bcK" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) "bcL" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bcM" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/excavation) "bcN" = ( /obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/excavation) "bcO" = ( /obj/structure/surface/rack, @@ -18118,86 +14437,57 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/excavation) "bcP" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/surface/excavation) "bcQ" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northeast, /area/ice_colony/surface/excavation) "bcR" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/excavation) "bcS" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) "bcT" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) "bcU" = ( /obj/structure/closet/radiation, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) "bcV" = ( /obj/structure/surface/rack, /obj/item/device/analyzer, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) "bcW" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/excavation) "bcY" = ( /obj/structure/ice/thin/corner, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south/excavation) "bcZ" = ( -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, +/turf/open/floor/icefloor/rockvault, /area/ice_colony/exterior/surface/valley/south/excavation) "bda" = ( /turf/closed/wall, @@ -18210,22 +14500,13 @@ /area/ice_colony/underground/requesition/storage) "bdd" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/requesition) "bde" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bdf" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/requesition) "bdg" = ( /turf/closed/wall/r_wall, @@ -18239,10 +14520,7 @@ /area/ice_colony/underground/hangar) "bdi" = ( /obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/surface/excavation/storage) "bdj" = ( /obj/structure/surface/table, @@ -18254,44 +14532,29 @@ /area/ice_colony/surface/excavation/storage) "bdl" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/excavation) "bdm" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bdn" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bdo" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/excavation) "bdp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/excavation) "bdq" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bdr" = ( /obj/structure/ladder{ @@ -18300,10 +14563,7 @@ id = "dig_site_prep_ladder1"; pixel_y = 16 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/excavation) "bdB" = ( /obj/structure/ice/thin/end, @@ -18316,9 +14576,7 @@ id = "ship_ladder1"; pixel_y = 16 }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, +/turf/open/floor/icefloor/rockvault, /area/ice_colony/exterior/surface/valley/south/excavation) "bdE" = ( /obj/structure/ladder{ @@ -18327,27 +14585,21 @@ id = "ship_ladder"; pixel_y = 16 }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, +/turf/open/floor/icefloor/rockvault, /area/ice_colony/exterior/surface/valley/south/excavation) "bdF" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bdG" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bdH" = ( /obj/structure/machinery/power/apc{ @@ -18355,67 +14607,43 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bdI" = ( /obj/structure/closet/crate/freezer/rations, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bdJ" = ( /obj/structure/surface/table/reinforced, /obj/item/wrapping_paper, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/requesition) "bdK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/underground/requesition) "bdL" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bdM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/underground/requesition) "bdN" = ( /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator4{ pixel_y = 30 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bdO" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bdP" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bdQ" = ( /obj/structure/machinery/power/apc{ @@ -18423,35 +14651,25 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bdR" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/requesition) "bdS" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/underground/hangar) "bdT" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/underground/hangar) "bdX" = ( /obj/structure/reagent_dispensers/fueltank, @@ -18468,18 +14686,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/excavation) "bdZ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bea" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18489,9 +14702,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "beb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18500,9 +14711,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bec" = ( /obj/structure/surface/table, @@ -18513,9 +14722,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bed" = ( /obj/structure/surface/table, @@ -18528,9 +14735,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bee" = ( /obj/structure/surface/table, @@ -18542,9 +14747,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bef" = ( /obj/structure/disposalpipe/segment{ @@ -18553,9 +14756,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "beg" = ( /obj/structure/disposalpipe/segment{ @@ -18563,26 +14764,20 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "beh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bei" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bej" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18591,44 +14786,32 @@ /obj/structure/machinery/door/window{ name = "Anomaly Gear" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/excavation) "bek" = ( /obj/structure/window/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/excavation) "bel" = ( /obj/structure/window/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "bem" = ( /obj/structure/window/reinforced, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "ben" = ( /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "beo" = ( /obj/structure/window/reinforced, @@ -18638,49 +14821,32 @@ id = "dig_site_prep_ladder"; pixel_y = 16 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/excavation) "beq" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, +/turf/open/floor/icefloor/rockvault, /area/ice_colony/exterior/surface/valley/south/excavation) "ber" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bet" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "beu" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/weldpack, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "bev" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "beA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition) "beB" = ( /turf/closed/wall/r_wall, @@ -18689,33 +14855,21 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/underground/hangar) "beD" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "beE" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/underground/hangar) "beF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/underground/hangar) "beG" = ( /obj/structure/ice/thin/junction{ @@ -18725,10 +14879,7 @@ /area/ice_colony/exterior/surface/valley/south) "beH" = ( /obj/structure/inflatable/door, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/surface/excavation/storage) "beI" = ( /obj/structure/reagent_dispensers/fueltank, @@ -18737,70 +14888,48 @@ "beJ" = ( /obj/structure/surface/table, /obj/item/device/flashlight, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/excavation) "beK" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "beM" = ( /obj/structure/surface/table, /obj/item/storage/firstaid, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "beO" = ( /obj/structure/machinery/door/window/eastright{ name = "Technical Storage" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/excavation) "beP" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/excavation) "beQ" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) "beR" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) "beS" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/excavation) "beU" = ( /turf/closed/ice/straight, @@ -18810,81 +14939,55 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "beW" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "beX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "beZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bfa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/hangar) "bfb" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) "bfc" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/excavation) "bfd" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bff" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/surface/excavation) "bfg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "bfh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/excavation) "bfi" = ( /turf/closed/ice/corner{ @@ -18893,47 +14996,28 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "bfj" = ( /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bfk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "bfm" = ( /obj/structure/closet/crate, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) "bfn" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) "bfo" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) "bfp" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hangar) "bfq" = ( /obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/surface/excavation/storage) "bfr" = ( /obj/structure/inflatable, @@ -18953,161 +15037,113 @@ /area/ice_colony/surface/excavation/storage) "bfu" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/surface/excavation) "bfv" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/excavation) "bfw" = ( /obj/structure/surface/table, /obj/item/storage/box/donkpockets, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/excavation) "bfx" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/excavation) "bfy" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/excavation) "bfz" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/excavation) "bfA" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/surface/excavation) "bfB" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/surface/excavation) "bfC" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/surface/excavation) "bfD" = ( /obj/structure/surface/table, /obj/item/device/reagent_scanner, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/surface/excavation) "bfE" = ( /obj/structure/closet/crate, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/surface/excavation) "bfF" = ( /obj/structure/closet/crate, /obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/surface/excavation) "bfG" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southeast, /area/ice_colony/surface/excavation) "bfH" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/excavation) "bfI" = ( /obj/structure/surface/rack, /obj/item/device/multitool, /obj/item/storage/belt/utility/full, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "bfJ" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "bfK" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "bfL" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "bfM" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/t_scanner, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/excavation) "bfN" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/excavation) "bfO" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bfP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bfR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19116,41 +15152,29 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Underground Requesitions Freezer" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bfT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bfV" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bfW" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bfX" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bfY" = ( /obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/surface/excavation/storage) "bga" = ( /obj/structure/ice/thin/end{ @@ -19166,38 +15190,25 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "bgc" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, +/turf/open/floor/icefloor/rockvault, /area/ice_colony/exterior/surface/valley/south/excavation) "bge" = ( /obj/structure/bigDelivery, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/underground/requesition/storage) "bgf" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "bgh" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/underground/requesition) "bgi" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition) "bgj" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition) "bgk" = ( /obj/structure/machinery/door_control{ @@ -19205,9 +15216,7 @@ name = "Underground Hangar Lock"; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/hangar) "bgl" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ @@ -19230,10 +15239,7 @@ /area/ice_colony/exterior/surface/valley/south/excavation) "bgs" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "bgt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -19254,17 +15260,11 @@ dir = 8; health = 250 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/requesition) "bgy" = ( /obj/structure/machinery/bot/mulebot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bgz" = ( /obj/structure/machinery/bot/mulebot, @@ -19272,19 +15272,14 @@ dir = 4; health = 80 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition) "bgA" = ( /obj/structure/machinery/conveyor_switch, /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bgB" = ( /obj/structure/machinery/conveyor, @@ -19294,16 +15289,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bgD" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition) "bgG" = ( /obj/structure/machinery/power/apc{ @@ -19329,17 +15319,13 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/underground/hangar) "bgK" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/underground/hangar) "bgL" = ( /obj/structure/ice/thin/corner, @@ -19349,9 +15335,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bgN" = ( /obj/structure/machinery/conveyor, @@ -19363,10 +15347,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition) "bgQ" = ( /obj/structure/barricade/wooden{ @@ -19378,19 +15359,13 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/underground/hangar) "bgT" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/underground/hangar) "bgU" = ( /obj/structure/ice/thin/corner{ @@ -19400,60 +15375,43 @@ /area/ice_colony/exterior/surface/valley/south) "bgW" = ( /obj/structure/closet/secure_closet/req_officer, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "bgX" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bgY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/closet/crate, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) "bgZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bha" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) "bhb" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bhc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/underground/requesition) "bhd" = ( /obj/effect/decal/warning_stripes{ @@ -19462,9 +15420,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition) "bhe" = ( /obj/structure/machinery/conveyor, @@ -19480,24 +15436,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition) "bhg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bhh" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/underground/requesition) "bhj" = ( /turf/closed/wall/r_wall, @@ -19513,10 +15462,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition) "bhn" = ( /turf/closed/wall/r_wall, @@ -19532,30 +15478,20 @@ dir = 1; name = "\improper Underground Requesitions Office" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bht" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/ice_colony/underground/hangar) "bhu" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/ice_colony/underground/hangar) "bhw" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/closet/secure_closet/req_officer, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "bhy" = ( /obj/structure/window/framed/colony/reinforced, @@ -19574,10 +15510,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition/lobby) "bhB" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19585,9 +15518,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bhC" = ( /obj/structure/machinery/disposal, @@ -19597,10 +15528,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/requesition/lobby) "bhD" = ( /obj/structure/largecrate/random, @@ -19612,10 +15540,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "bhF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -19633,19 +15558,13 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/underground/hangar) "bhI" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "bhJ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -19657,62 +15576,41 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/underground/hangar) "bhL" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "bhS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bhT" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bhV" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/ice_colony/underground/hangar) "bhY" = ( /obj/structure/machinery/constructable_frame, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition) "bhZ" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition) "bia" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bic" = ( /obj/structure/surface/rack, @@ -19737,18 +15635,13 @@ /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/underground/requesition) "bik" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "bim" = ( /obj/structure/machinery/door_control{ @@ -19759,41 +15652,30 @@ req_access_txt = "100"; specialfunctions = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition) "biq" = ( /obj/structure/machinery/conveyor_switch, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/lobby) "bir" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bis" = ( /obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/underground/requesition/lobby) "biu" = ( /obj/structure/machinery/computer3/powermonitor, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) "biv" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/ice_colony/underground/hangar) "bix" = ( /obj/structure/closet/secure_closet/engineering_welding, @@ -19807,9 +15689,7 @@ id = "req_sec_storage"; name = "\improper Requesitions Storage Shutters" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/sec_storage) "biB" = ( /obj/structure/window/framed/colony/reinforced, @@ -19820,9 +15700,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Requesitions Bay" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition) "biD" = ( /obj/structure/machinery/requests_console{ @@ -19852,9 +15730,7 @@ pixel_x = 32 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "biF" = ( /obj/structure/machinery/light/small{ @@ -19901,24 +15777,16 @@ /turf/open/floor/wood, /area/ice_colony/underground/command/pv1) "biQ" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/requesition/sec_storage) "biR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition/sec_storage) "biS" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/sec_storage) "biU" = ( /obj/structure/machinery/door_control{ @@ -19929,10 +15797,7 @@ req_access_txt = "100"; specialfunctions = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition/sec_storage) "biV" = ( /obj/structure/machinery/alarm{ @@ -19942,53 +15807,36 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/requesition/sec_storage) "biW" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/requesition/lobby) "biX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "biZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition/lobby) "bja" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/requesition/lobby) "bjb" = ( /obj/structure/machinery/alarm{ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/requesition/lobby) "bjd" = ( /obj/structure/machinery/power/terminal{ @@ -20014,37 +15862,23 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition/sec_storage) "bjl" = ( /obj/structure/closet/crate/secure, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition/sec_storage) "bjm" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/sec_storage) "bjn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition/sec_storage) "bjp" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition/sec_storage) "bjq" = ( /obj/structure/bed/chair{ @@ -20054,32 +15888,22 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition/lobby) "bjs" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjw" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition/lobby) "bjx" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -20091,23 +15915,14 @@ /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/underground/maintenance/north) "bjB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition/sec_storage) "bjC" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/underground/requesition/sec_storage) "bjD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition/sec_storage) "bjE" = ( /obj/structure/bed/chair{ @@ -20116,31 +15931,21 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition/lobby) "bjF" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjG" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjH" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition/lobby) "bjK" = ( /obj/structure/machinery/light/small{ @@ -20153,26 +15958,19 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/requesition/lobby) "bjN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -20182,34 +15980,25 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjR" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjS" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bjT" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition/lobby) "bjU" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ @@ -20232,48 +16021,35 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/lobby) "bjZ" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/lobby) "bka" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bkb" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/lobby) "bkc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/lobby) "bkd" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/underground/requesition/lobby) "bke" = ( /obj/structure/machinery/light/small{ @@ -20296,16 +16072,10 @@ name = "Underground Hangar Lock"; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hangar) "bki" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hangar) "bkj" = ( /obj/structure/flora/pottedplant, @@ -20323,9 +16093,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Requesitions Lobby" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/requesition/lobby) "bko" = ( /obj/structure/machinery/light/small, @@ -20338,24 +16106,16 @@ /turf/open/floor/plating, /area/ice_colony/underground/hallway/north_west) "bkq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/north_west) "bkr" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bks" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/north_west) "bkt" = ( /turf/closed/wall/r_wall, @@ -20368,51 +16128,33 @@ /turf/open/floor/plating, /area/ice_colony/underground/maintenance/north) "bkv" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/underground/requesition/sec_storage) "bkw" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/sec_storage) "bkx" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/requesition/sec_storage) "bky" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/underground/requesition/sec_storage) "bkz" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/hallway/north_west) "bkA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bkB" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/hallway/north_west) "bkC" = ( /turf/closed/wall/r_wall, @@ -20435,10 +16177,7 @@ /turf/open/floor/plating, /area/ice_colony/underground/crew/morgue) "bkG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/north_west) "bkH" = ( /obj/structure/barricade/wooden{ @@ -20460,22 +16199,13 @@ /turf/open/floor/plating, /area/ice_colony/underground/requesition/sec_storage) "bkM" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/underground/hallway/north_west) "bkN" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/underground/hallway/north_west) "bkO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/hallway/north_west) "bkP" = ( /obj/structure/window/framed/colony/reinforced, @@ -20483,71 +16213,51 @@ /area/ice_colony/underground/crew/chapel) "bkQ" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) "bkR" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) "bkS" = ( /obj/structure/morgue, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bkT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bkU" = ( /obj/structure/bed/roller, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bkV" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bkW" = ( /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/underground/hallway/north_west) "bkX" = ( /obj/structure/bookcase, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bkY" = ( /obj/structure/bookcase/manuals/medical, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bkZ" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bla" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blc" = ( /turf/open/floor/plating, @@ -20570,31 +16280,19 @@ /turf/open/floor/plating, /area/ice_colony/underground/maintenance/research) "blg" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/hallway/north_west) "bll" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/ice_colony/underground/crew/chapel) "blm" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/ice_colony/underground/crew/chapel) "bln" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/ice_colony/underground/crew/chapel) "blo" = ( /turf/open/gm/empty, @@ -20603,15 +16301,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blq" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20632,53 +16326,38 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Underground Maintenance" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "blu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "blv" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "blx" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) "bly" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/ice_colony/underground/crew/chapel) "blz" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/ice_colony/underground/crew/chapel) "blA" = ( -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/ice_colony/underground/crew/chapel) "blB" = ( /obj/structure/surface/table/woodentable, @@ -20693,63 +16372,47 @@ /area/ice_colony/underground/crew/chapel) "blD" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "blE" = ( /obj/structure/machinery/alarm{ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "blF" = ( /obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blG" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blH" = ( /obj/structure/surface/table/woodentable, /obj/item/book/manual/engineering_hacking, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blI" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blJ" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blK" = ( /obj/structure/machinery/alarm{ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blL" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -20760,26 +16423,19 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "blO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) "blP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/ice_colony/underground/crew/chapel) "blQ" = ( /obj/structure/bed/chair{ @@ -20788,28 +16444,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/ice_colony/underground/crew/chapel) "blR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/ice_colony/underground/crew/chapel) "blS" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/ice_colony/underground/crew/chapel) "blT" = ( /obj/structure/surface/table/woodentable, @@ -20830,48 +16477,36 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "blW" = ( /obj/item/bodybag, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "blX" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "blY" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "blZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bma" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmb" = ( /obj/structure/bed/chair/wood/normal{ @@ -20880,9 +16515,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmc" = ( /obj/structure/surface/table/woodentable, @@ -20890,18 +16523,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmd" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bme" = ( /obj/structure/bed/chair/wood/normal{ @@ -20910,17 +16539,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmf" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmg" = ( /turf/closed/wall/r_wall, @@ -20959,40 +16584,28 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/hallway/north_west) "bmo" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bmp" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bmr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Underground Chapel" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) "bmv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/ice_colony/underground/crew/chapel) "bmx" = ( /obj/structure/surface/table/woodentable, @@ -21009,9 +16622,7 @@ /area/ice_colony/underground/crew/chapel) "bmz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bmD" = ( /obj/structure/machinery/power/apc{ @@ -21019,30 +16630,21 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bmE" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/north_west) "bmF" = ( /obj/structure/bookcase/manuals/engineering, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmK" = ( /obj/structure/machinery/power/apc{ @@ -21050,9 +16652,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bmL" = ( /obj/structure/machinery/firealarm{ @@ -21063,10 +16663,7 @@ icon_state = "ladderup"; id = "engineering_ladder" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/engineering/locker) "bmM" = ( /obj/structure/machinery/alarm{ @@ -21077,34 +16674,22 @@ icon_state = "ladderup"; id = "engineering_ladder1" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering/locker) "bmN" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering/locker) "bmO" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering/locker) "bmP" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/engineering/locker) "bmQ" = ( /turf/closed/ice/straight{ @@ -21130,16 +16715,11 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) "bmX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/ice_colony/underground/crew/chapel) "bmY" = ( /turf/open/floor/carpet, @@ -21150,60 +16730,40 @@ pixel_x = -24 }, /obj/structure/curtain/black, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bna" = ( /obj/structure/curtain/black, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bnb" = ( /obj/structure/curtain/black, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bnd" = ( /obj/structure/curtain/open/black, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bnf" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bng" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/engineering/locker) "bnh" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering/locker) "bni" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering/locker) "bnj" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/engineering/locker) "bnk" = ( /turf/closed/wall/r_wall, @@ -21229,10 +16789,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/ice_colony/underground/crew/chapel) "bnq" = ( /obj/structure/bed/chair{ @@ -21241,26 +16798,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/ice_colony/underground/crew/chapel) "bnr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/ice_colony/underground/crew/chapel) "bns" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/ice_colony/underground/crew/chapel) "bnt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21269,52 +16819,36 @@ /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "Underground Morgue" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bnu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bnv" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bnw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bnx" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bny" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/north_west) "bnz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "bnA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -21327,25 +16861,18 @@ /obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bnC" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/mechanical, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/engineering/locker) "bnD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering/locker) "bnF" = ( /obj/structure/machinery/power/apc{ @@ -21353,85 +16880,55 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/engineering/locker) "bnG" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/engineering) "bnH" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnI" = ( /obj/structure/machinery/computer3/powermonitor, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnJ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnK" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnM" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnN" = ( /obj/structure/surface/table/woodentable{ icon_state = "reinf_table" }, /obj/item/frame/light_fixture, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnO" = ( /obj/structure/surface/table/woodentable{ icon_state = "reinf_table" }, /obj/item/storage/box/lightstick, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnP" = ( /obj/structure/surface/table/woodentable{ @@ -21440,10 +16937,7 @@ /obj/item/inflatable, /obj/item/inflatable/door, /obj/item/storage/box/engineer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnQ" = ( /obj/structure/surface/table/woodentable{ @@ -21452,24 +16946,15 @@ /obj/item/stack/cable_coil/blue, /obj/item/stack/rods, /obj/item/storage/donut_box, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnR" = ( /obj/structure/machinery/constructable_frame, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bnS" = ( /obj/structure/janitorialcart, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/engineering) "bnT" = ( /turf/closed/ice/straight, @@ -21491,23 +16976,16 @@ /area/ice_colony/underground/maintenance/research) "bnX" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/hallway/north_west) "bnY" = ( /obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) "bnZ" = ( /obj/structure/surface/table, /obj/item/storage/box/bodybags, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "boa" = ( /obj/structure/surface/table/woodentable, @@ -21521,9 +16999,7 @@ /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/bottle/holywater, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "boc" = ( /obj/structure/surface/table/woodentable, @@ -21537,15 +17013,11 @@ "boe" = ( /obj/structure/closet/coffin, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bof" = ( /obj/structure/closet/coffin, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bog" = ( /obj/structure/closet/coffin, @@ -21553,32 +17025,22 @@ dir = 4; health = 80 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "boh" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "boi" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "boj" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "bok" = ( /obj/structure/machinery/disposal, @@ -21586,67 +17048,45 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "bol" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/hallway/north_west) "bom" = ( /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "bon" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "boo" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "bop" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/hallway/north_west) "boq" = ( /obj/structure/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bor" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "bos" = ( /obj/structure/barricade/wooden{ @@ -21658,41 +17098,27 @@ "bot" = ( /obj/structure/closet/radiation, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/engineering/locker) "bou" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering/locker) "bow" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Underground Engineering Locker Room" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering/locker) "box" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "boz" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "boA" = ( /obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/engineering) "boB" = ( /obj/structure/ice/thin/end, @@ -21712,22 +17138,15 @@ dir = 2; name = "Underground Morgue" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "boF" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "boG" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/north_west) "boH" = ( /obj/structure/window/framed/colony/reinforced, @@ -21739,9 +17158,7 @@ dir = 1; name = "\improper Underground Library" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/library) "boJ" = ( /turf/closed/wall/r_wall, @@ -21763,28 +17180,19 @@ dir = 1; name = "\improper Underground Engineering Locker Room" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering/locker) "boO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/engineering) "boP" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/queen_spawn, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "boQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "boR" = ( /obj/effect/landmark/monkey_spawn, @@ -21807,28 +17215,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "boW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "boX" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) "bpa" = ( /obj/structure/window/framed/colony/reinforced, @@ -21836,16 +17235,10 @@ /area/ice_colony/underground/hallway/north_west) "bpb" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/south_east) "bpc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bpe" = ( /obj/structure/closet/hydrant{ @@ -21854,82 +17247,54 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bpf" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bpg" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/hallway/south_east) "bpi" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/engineering) "bpk" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/engineering) "bpl" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/underground/engineering) "bpm" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/engineering) "bpn" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bpo" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) "bpp" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/engineering) "bpq" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpr" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21937,61 +17302,42 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpt" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpu" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bpv" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bpw" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bpx" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bpy" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bpA" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bpB" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/hallway/north_west) "bpC" = ( /obj/structure/disposalpipe/segment{ @@ -22001,9 +17347,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpD" = ( /obj/structure/disposalpipe/segment{ @@ -22012,9 +17356,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpG" = ( /obj/structure/disposalpipe/segment{ @@ -22023,9 +17365,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpH" = ( /obj/structure/disposalpipe/junction{ @@ -22035,18 +17375,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpL" = ( /obj/structure/disposalpipe/segment{ @@ -22059,9 +17395,7 @@ dir = 1; name = "\improper Underground Main Hallway" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22070,9 +17404,7 @@ /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bpT" = ( /obj/structure/disposalpipe/junction{ @@ -22082,9 +17414,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bpV" = ( /obj/structure/disposalpipe/segment{ @@ -22097,27 +17427,21 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bpX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bpY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bpZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22130,9 +17454,7 @@ dir = 1; name = "\improper Underground Power Substation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqb" = ( /obj/structure/disposalpipe/segment{ @@ -22141,9 +17463,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22155,9 +17475,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22167,9 +17485,7 @@ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22181,9 +17497,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -22192,9 +17506,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22203,9 +17515,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -22215,16 +17525,11 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqj" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/engineering) "bqk" = ( /turf/closed/ice/junction{ @@ -22233,153 +17538,97 @@ /area/ice_colony/exterior/underground/caves) "bql" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/underground/hallway/north_west) "bqm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/west, /area/ice_colony/underground/hallway/north_west) "bqn" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bqo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bqp" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/underground/hallway/north_west) "bqq" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/north_west) "bqr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bqt" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/north_west) "bqu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/underground/hallway/north_west) "bqw" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/hallway/south_east) "bqx" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bqz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bqA" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bqB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/underground/hallway/south_east) "bqC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bqD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) "bqE" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/engineering) "bqF" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bqG" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/engineering) "bqI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/engineering) "bqJ" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqK" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bqL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/engineering) "bqM" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22387,27 +17636,20 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bqO" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/engineering) "bqP" = ( /turf/closed/wall/r_wall, @@ -22441,15 +17683,11 @@ name = "\improper Underground Medical Laboratory"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bqW" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bqX" = ( /turf/closed/wall/r_wall, @@ -22463,48 +17701,35 @@ /area/ice_colony/underground/medical/treatment) "bra" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/hallway/north_west) "brb" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/north_west) "brc" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/north_west) "brd" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/north_west) "bre" = ( /obj/structure/machinery/light, /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/north_west) "brf" = ( /obj/structure/machinery/light, /obj/structure/noticeboard{ pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/north_west) "brh" = ( /turf/closed/wall/r_wall, @@ -22514,9 +17739,7 @@ /turf/open/floor/plating, /area/ice_colony/underground/crew/bball) "brk" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/bball) "brl" = ( /obj/structure/window/framed/colony/reinforced, @@ -22527,15 +17750,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Sports Center" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/bball) "brn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/south_east) "bro" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22551,26 +17769,19 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/engineering) "brq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "brr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "brs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22602,68 +17813,46 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/medical/lobby) "brx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/medical/lobby) "bry" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "brz" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "brA" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/medical/lobby) "brB" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/medical/lobby) "brC" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/medical/lobby) "brD" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/medical/lobby) "brE" = ( /obj/structure/machinery/light{ @@ -22671,49 +17860,31 @@ }, /obj/structure/surface/table, /obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/underground/medical/hallway) "brF" = ( /obj/structure/surface/table, /obj/item/storage/box/donkpockets, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/hallway) "brG" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/underground/medical/hallway) "brH" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/underground/medical/treatment) "brI" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/treatment) "brJ" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/underground/medical/treatment) "brK" = ( /turf/closed/wall/r_wall, @@ -22750,18 +17921,14 @@ /obj/item/tool/pen/blue{ pixel_x = -6 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/reception/checkpoint_north) "brP" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; name = "\improper Underground Security Checkpoint" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception/checkpoint_north) "brQ" = ( /obj/structure/machinery/light{ @@ -22770,66 +17937,44 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/crew/bball) "brR" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/crew/bball) "brT" = ( /obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/crew/bball) "brU" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/crew/bball) "brV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/south_east) "brW" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "brX" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "brY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) "brZ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22848,15 +17993,10 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bsc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/engineering) "bsd" = ( /obj/structure/machinery/light/small{ @@ -22877,124 +18017,79 @@ /turf/open/ice, /area/ice_colony/exterior/underground/caves) "bsh" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/medical/lobby) "bsi" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsk" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsl" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "bsm" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "bsn" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/hallway) "bso" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) "bsp" = ( /obj/structure/pipes/standard/manifold/visible{ layer = 2.3 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bsq" = ( /obj/structure/pipes/standard/manifold/visible{ layer = 2.3 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/east, /area/ice_colony/underground/medical/treatment) "bsr" = ( /obj/structure/pipes/standard/manifold/visible{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/treatment) "bss" = ( /obj/structure/pipes/portables_connector{ dir = 8 }, /obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/underground/medical/treatment) "bst" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/underground/medical/or) "bsu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/or) "bsv" = ( /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/or) "bsw" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/or) "bsx" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/underground/medical/or) "bsy" = ( /obj/structure/machinery/light/small{ @@ -23009,26 +18104,17 @@ "bsA" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/reception/checkpoint_north) -"bsB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +"bsB" = ( +/turf/open/floor/darkred2/north, /area/ice_colony/underground/reception/checkpoint_north) "bsC" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/reception/checkpoint_north) "bsE" = ( /obj/structure/machinery/power/apc{ @@ -23036,24 +18122,16 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/bball) "bsH" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/bball) "bsI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/crew/bball) "bsJ" = ( /obj/structure/barricade/wooden{ @@ -23063,84 +18141,58 @@ /area/ice_colony/underground/maintenance/engineering) "bsK" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/engineering) "bsL" = ( /obj/structure/filingcabinet, /obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bsM" = ( /obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bsN" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bsO" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bsP" = ( /obj/structure/closet/secure_closet/miner, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bsQ" = ( /obj/structure/surface/table/woodentable{ icon_state = "reinf_table" }, /obj/item/storage/box/lights, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bsR" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bsS" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) "bsT" = ( /obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/engineering) "bsU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsV" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsW" = ( /obj/structure/disposalpipe/segment{ @@ -23150,9 +18202,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsX" = ( /obj/structure/disposalpipe/segment{ @@ -23161,18 +18211,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bsZ" = ( /obj/structure/disposalpipe/segment{ @@ -23185,9 +18231,7 @@ dir = 1; name = "\improper Underground Medical Laboratory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bta" = ( /obj/structure/disposalpipe/segment{ @@ -23196,9 +18240,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "btb" = ( /obj/structure/disposalpipe/segment{ @@ -23208,60 +18250,41 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "btc" = ( /obj/structure/surface/table, /obj/item/tool/wrench, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) "btd" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bte" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "btf" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "btg" = ( /obj/structure/pipes/unary/freezer{ dir = 8; icon_state = "freezer_1" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/treatment) "bth" = ( /obj/structure/surface/table, /obj/item/stack/nanopaste, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/or) "bti" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "btl" = ( /obj/structure/machinery/power/apc{ @@ -23269,10 +18292,7 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/or) "btm" = ( /turf/open/floor/plating, @@ -23281,26 +18301,17 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Underground Maintenance" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception/checkpoint_north) "bto" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/reception/checkpoint_north) "btp" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception/checkpoint_north) "btq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception/checkpoint_north) "btr" = ( /obj/structure/machinery/power/apc{ @@ -23308,20 +18319,14 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/reception/checkpoint_north) "bts" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/bball) "btt" = ( /obj/effect/decal/warning_stripes{ @@ -23410,45 +18415,29 @@ dir = 1; name = "\improper Underground Medical Laboratory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "btE" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/underground/medical/lobby) "btF" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/medical/lobby) "btG" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/medical/lobby) "btH" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/medical/lobby) "btI" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/hallway) "btJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "btK" = ( /obj/structure/machinery/light{ @@ -23458,77 +18447,52 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) "btL" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "btM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "btN" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/treatment) "btO" = ( /obj/structure/surface/table, /obj/item/storage/surgical_tray, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/or) "btP" = ( /obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "btQ" = ( /obj/structure/machinery/computer/operating, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "btR" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/or) "btS" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/reception/checkpoint_north) "btT" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/reception/checkpoint_north) "btU" = ( /obj/structure/machinery/firealarm{ @@ -23538,9 +18502,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/reception/checkpoint_north) "btV" = ( /obj/structure/filingcabinet/security, @@ -23548,22 +18510,14 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/reception/checkpoint_north) "btW" = ( /obj/structure/filingcabinet/security, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/reception/checkpoint_north) "btX" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/bball) "btY" = ( /obj/effect/decal/warning_stripes{ @@ -23626,9 +18580,7 @@ /turf/closed/wall/r_wall, /area/ice_colony/exterior/underground/caves) "bui" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/ice_colony/underground/engineering/substation) "buj" = ( /turf/open/floor/plating, @@ -23668,16 +18620,10 @@ /area/ice_colony/exterior/underground/caves/open) "buq" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/medical/lobby) "bur" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/medical/lobby) "bus" = ( /obj/structure/surface/table/reinforced, @@ -23688,20 +18634,14 @@ dir = 8; health = 80 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/underground/medical/lobby) "buu" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/northright, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/lobby) "buv" = ( /obj/structure/surface/table/reinforced, @@ -23709,10 +18649,7 @@ dir = 1 }, /obj/item/tool/stamp, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/lobby) "bux" = ( /obj/structure/disposalpipe/segment{ @@ -23722,9 +18659,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "buz" = ( /obj/structure/disposalpipe/segment{ @@ -23736,9 +18671,7 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Underground Medical Laboratory Treatment" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "buA" = ( /obj/structure/disposalpipe/junction{ @@ -23748,9 +18681,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "buB" = ( /obj/structure/disposalpipe/segment{ @@ -23760,65 +18691,47 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "buD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "buE" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "buF" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/beakers, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/treatment) "buG" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/surface/hangar/checkpoint) "buH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "buI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "buJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "buK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23911,9 +18824,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/bball) "buV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23922,17 +18833,13 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Underground Sports Center" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/bball) "buW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "buX" = ( /obj/structure/mineral_door/resin, @@ -23948,16 +18855,11 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/medical/lobby) "bve" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bvf" = ( /obj/structure/surface/table/reinforced, @@ -23966,62 +18868,42 @@ health = 80 }, /obj/item/tool/stamp, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/lobby) "bvg" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/lobby) "bvh" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/lobby) "bvi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/lobby) "bvj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "bvk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/hallway) "bvl" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) "bvm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bvo" = ( /obj/structure/disposalpipe/segment{ @@ -24029,27 +18911,17 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bvp" = ( /obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/treatment) "bvq" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/underground/medical/or) "bvr" = ( -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/or) "bvs" = ( /obj/structure/disposalpipe/segment{ @@ -24057,9 +18929,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "bvt" = ( /obj/structure/machinery/holosign_switch{ @@ -24069,27 +18939,20 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/or) "bvu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/underground/medical/or) "bvv" = ( /turf/closed/wall/r_wall, /area/ice_colony/underground/maintenance/central/construction) "bvw" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/maintenance/central/construction) "bvx" = ( /obj/item/frame/apc, @@ -24179,64 +19042,43 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/medical/lobby) "bvM" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/medical/lobby) "bvN" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/lobby) "bvO" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/lobby) "bvP" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/lobby) "bvQ" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) "bvR" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bvT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bvU" = ( /obj/structure/surface/table/reinforced, @@ -24245,10 +19087,7 @@ /obj/item/stack/sheet/mineral/phoron, /obj/item/stack/sheet/mineral/phoron, /obj/item/stack/sheet/mineral/phoron, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/treatment) "bvV" = ( /obj/structure/machinery/holosign/surgery{ @@ -24260,9 +19099,7 @@ dir = 1; name = "Underground Medical Laboratory Operating Theatre" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/or) "bvW" = ( /obj/effect/decal/warning_stripes{ @@ -24365,10 +19202,7 @@ /obj/structure/closet/hydrant{ pixel_x = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/north_west) "bwk" = ( /obj/structure/surface/table, @@ -24382,17 +19216,13 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/lobby) "bwm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/lobby) "bwn" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24401,34 +19231,25 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Underground Medical Laboratory Lobby" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/lobby) "bwo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "bwp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "bwq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) "bwr" = ( /obj/structure/disposalpipe/segment{ @@ -24436,27 +19257,19 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bws" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/east, /area/ice_colony/underground/medical/treatment) "bwt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/treatment) "bwu" = ( /obj/structure/disposalpipe/segment{ @@ -24464,24 +19277,16 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bwv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/treatment) "bww" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/underground/medical/treatment) "bwx" = ( /turf/closed/ice/junction{ @@ -24496,9 +19301,7 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/ice_colony/underground/engineering/substation) "bwE" = ( /obj/structure/ice/thin/end, @@ -24543,31 +19346,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bwQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "cafeteria" - }, +/turf/open/floor/cafeteria, /area/ice_colony/underground/medical/treatment) "bwR" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bwS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bwT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24589,35 +19384,26 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/bball) "bwW" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/crew/bball) "bwX" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/crew/bball) "bwY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/crew/bball) "bxa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24645,28 +19431,21 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/medical/lobby) "bxh" = ( /obj/structure/machinery/alarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/medical/lobby) "bxj" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/medical/lobby) "bxk" = ( /obj/structure/surface/table/reinforced, @@ -24675,81 +19454,53 @@ health = 80 }, /obj/item/tool/stamp, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/underground/medical/lobby) "bxl" = ( -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/lobby) "bxm" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/lobby) "bxn" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/lobby) "bxo" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/underground/medical/lobby) "bxp" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/hallway) "bxq" = ( /obj/item/roller{ icon_state = "down" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/hallway) "bxr" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) "bxs" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bxt" = ( /obj/structure/curtain/open/medical, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/treatment) "bxu" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/treatment) "bxv" = ( /obj/structure/barricade/wooden, @@ -24771,9 +19522,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bxC" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -24836,52 +19585,36 @@ dir = 1; name = "\improper Underground Medical Laboratory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) "bxM" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/underground/medical/treatment) "bxN" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/treatment) "bxO" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/treatment) "bxP" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/treatment) "bxQ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/treatment) "bxR" = ( /obj/structure/curtain/medical, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/underground/medical/treatment) "bxS" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -24925,10 +19658,7 @@ /area/ice_colony/underground/maintenance/engineering) "byd" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/underground/medical/hallway) "bye" = ( /obj/structure/machinery/light{ @@ -24937,34 +19667,23 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/hallway) "byf" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "byg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/hallway) "byi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/hallway) "byk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24973,10 +19692,7 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/hallway) "byl" = ( /obj/structure/machinery/light{ @@ -24985,27 +19701,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/hallway) "bym" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, +/turf/open/floor/whiteredcorner/north, /area/ice_colony/underground/medical/hallway) "byn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/hallway) "byo" = ( /obj/structure/machinery/light/small{ @@ -25040,33 +19748,23 @@ /area/ice_colony/underground/maintenance/research) "byw" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/underground/medical/hallway) "byx" = ( -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/hallway) "byy" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/hallway) "byA" = ( /obj/item/roller{ icon_state = "down" }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/underground/medical/hallway) "byB" = ( /turf/closed/wall/r_wall, @@ -25096,10 +19794,7 @@ /turf/closed/wall/r_wall, /area/ice_colony/underground/crew/canteen) "byJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/hallway/south_east) "byK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25130,9 +19825,7 @@ dir = 1; name = "\improper Underground Medical Laboratory Storage" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/storage) "byR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25166,43 +19859,28 @@ /area/ice_colony/underground/maintenance/central) "byW" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/crew/canteen) "byX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/crew/canteen) "byY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/crew/canteen) "byZ" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/crew/canteen) "bza" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/crew/canteen) "bzb" = ( /obj/structure/window/framed/colony/reinforced, @@ -25212,10 +19890,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/hallway/south_east) "bzd" = ( /obj/structure/barricade/wooden{ @@ -25225,31 +19900,19 @@ /area/ice_colony/underground/maintenance/engineering) "bze" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northwest, /area/ice_colony/underground/medical/storage) "bzf" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bzg" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bzh" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/surface/hangar/checkpoint) "bzi" = ( /obj/structure/surface/table, @@ -25258,25 +19921,17 @@ pixel_x = 6; pixel_y = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bzj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/storage) "bzk" = ( /obj/structure/surface/table, /obj/item/bodybag/cryobag, /obj/item/storage/box/syringes, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bzl" = ( /obj/structure/surface/table, @@ -25285,32 +19940,20 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bzm" = ( /obj/item/device/defibrillator, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bzn" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bzo" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/underground/medical/storage) "bzp" = ( /turf/closed/wall/r_wall, @@ -25325,27 +19968,17 @@ /area/ice_colony/underground/command/center) "bzr" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/canteen) "bzs" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bzt" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bzu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/crew/canteen) "bzv" = ( /obj/effect/alien/weeds/node, @@ -25356,145 +19989,97 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/storage) "bzx" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/storage) "bzy" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/storage) "bzz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/storage) "bzA" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/storage) "bzB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/medical/storage) "bzC" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/storage) "bzD" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/underground/command/center) "bzE" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/center) "bzF" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/center) "bzG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/center) "bzH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bzI" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/center) "bzJ" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/center) "bzK" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/underground/command/center) "bzL" = ( /obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/canteen) "bzM" = ( /obj/structure/surface/table, /obj/item/trash/plate, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bzN" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bzO" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/knife, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bzP" = ( /turf/closed/wall/r_wall, @@ -25543,26 +20128,19 @@ /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southwest, /area/ice_colony/underground/medical/storage) "bzY" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/storage) "bzZ" = ( /obj/structure/closet/secure_closet/medical1{ req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/storage) "bAa" = ( /obj/structure/machinery/power/apc{ @@ -25570,71 +20148,48 @@ start_charge = 0 }, /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/storage) "bAb" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/storage) "bAc" = ( /obj/item/roller{ icon_state = "down" }, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/storage) "bAd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whitered, /area/ice_colony/underground/medical/storage) "bAe" = ( /obj/item/roller{ icon_state = "down" }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, +/turf/open/floor/whitered/southeast, /area/ice_colony/underground/medical/storage) "bAf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/command/center) "bAg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bAh" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bAi" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bAj" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/center) "bAk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -25645,39 +20200,28 @@ /area/ice_colony/underground/maintenance/central) "bAl" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/canteen) "bAm" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bAn" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bAo" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bAp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Underground Staff Canteen" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bAq" = ( /turf/open/floor/wood, @@ -25753,10 +20297,7 @@ /turf/open/floor/plating, /area/ice_colony/underground/maintenance/research) "bAD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/hallway/north_west) "bAE" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -25800,9 +20341,7 @@ /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bAJ" = ( /obj/structure/window/reinforced/tinted{ @@ -25814,9 +20353,7 @@ /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bAK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25829,17 +20366,13 @@ /area/ice_colony/underground/crew/canteen) "bAL" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bAM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bAN" = ( /obj/structure/bed/chair{ @@ -25848,18 +20381,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bAO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/crew/canteen) "bAP" = ( /obj/structure/window/framed/colony/reinforced, @@ -25872,10 +20400,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/south_east) "bAR" = ( /obj/structure/machinery/light{ @@ -25918,10 +20443,7 @@ /area/ice_colony/underground/security/marshal) "bAX" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/field_gear) "bAZ" = ( /obj/structure/closet/secure_closet/personal, @@ -25932,22 +20454,13 @@ /area/ice_colony/underground/research) "bBb" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northwest, /area/ice_colony/underground/research) "bBc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research) "bBd" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northeast, /area/ice_colony/underground/research) "bBe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -25976,9 +20489,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bBj" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -26009,62 +20520,47 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/command/center) "bBn" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBo" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, /obj/structure/machinery/computer/communications, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBp" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBq" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBr" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBs" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, /obj/structure/machinery/computer/station_alert, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBt" = ( /obj/structure/bed/chair/office/light{ @@ -26073,10 +20569,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/center) "bBu" = ( /obj/structure/surface/table/reinforced, @@ -26084,10 +20577,7 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/canteen) "bBv" = ( /obj/structure/pipes/vents/pump, @@ -26131,31 +20621,20 @@ /turf/open/floor/plating, /area/ice_colony/underground/maintenance/research) "bBD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research) "bBE" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bBF" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/east, /area/ice_colony/underground/research) "bBG" = ( /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator3{ dir = 1; pixel_y = 30 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research) "bBH" = ( /obj/structure/machinery/power/apc{ @@ -26163,10 +20642,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research) "bBK" = ( /obj/structure/machinery/power/apc{ @@ -26174,10 +20650,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northwest, /area/ice_colony/underground/research/storage) "bBL" = ( /obj/structure/surface/table, @@ -26185,30 +20658,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/storage) "bBM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/storage) "bBN" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northeast, /area/ice_colony/underground/research/storage) "bBO" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/hallway/north_west) "bBP" = ( /obj/structure/machinery/light/small{ @@ -26232,15 +20694,11 @@ /obj/structure/surface/table/reinforced, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBS" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/surface/hangar/checkpoint) "bBT" = ( /obj/structure/window/reinforced/tinted{ @@ -26251,37 +20709,26 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bBU" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/canteen) "bBV" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bBW" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bBX" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bBY" = ( /obj/structure/closet/secure_closet/detective, @@ -26343,45 +20790,31 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Underground Maintenance" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bCk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bCl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bCm" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bCq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research) "bCt" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research/storage) "bCu" = ( /turf/closed/wall/r_wall, @@ -26406,25 +20839,17 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/center) "bCA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/canteen) "bCB" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bCG" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -26458,66 +20883,42 @@ "bCL" = ( /obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bCM" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bCO" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/storage) "bCQ" = ( /obj/structure/dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/underground/storage/highsec) "bCR" = ( /obj/structure/dispenser, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCS" = ( /obj/structure/safe, /obj/item/weapon/sword/katana/replica, /obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCT" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCU" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCV" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCW" = ( /obj/structure/machinery/power/apc{ @@ -26525,37 +20926,22 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCX" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCY" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bCZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) "bDa" = ( /obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/underground/storage/highsec) "bDb" = ( /obj/structure/machinery/alarm{ @@ -26564,48 +20950,35 @@ }, /obj/structure/surface/table, /obj/item/device/taperecorder, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/underground/command/center) "bDc" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/paper/research_notes, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) "bDd" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) "bDe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) "bDf" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) "bDg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) "bDh" = ( /obj/structure/machinery/firealarm{ @@ -26616,10 +20989,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/underground/command/center) "bDi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26640,94 +21010,60 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/canteen) "bDm" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Underground Security" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/hallway) "bDn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bDp" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDq" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDr" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDs" = ( /obj/structure/bed/chair, /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDt" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDu" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDv" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bDw" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/hallway) "bDx" = ( /turf/closed/wall/r_wall, @@ -26747,49 +21083,34 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bDB" = ( /obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bDC" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/hallway/north_west) "bDD" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/storage/highsec) "bDE" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) "bDG" = ( /obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/storage/highsec) "bDH" = ( /obj/structure/window/framed/colony/reinforced, @@ -26800,9 +21121,7 @@ dir = 1; name = "\improper Underground Command Center" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bDJ" = ( /obj/structure/window/framed/colony/reinforced, @@ -26830,45 +21149,31 @@ /area/ice_colony/underground/maintenance/central) "bDO" = ( /obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/crew/canteen) "bDP" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/crew/canteen) "bDQ" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/crew/canteen) "bDR" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/crew/canteen) "bDS" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/crew/canteen) "bDT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bDU" = ( /obj/structure/disposalpipe/segment{ @@ -26878,18 +21183,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bDV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/hallway/south_east) "bDW" = ( /obj/structure/window/framed/colony/reinforced, @@ -26902,32 +21202,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bDY" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bEb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bEc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/hallway) "bEd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26966,25 +21257,16 @@ /turf/open/floor/plating, /area/ice_colony/underground/maintenance/east) "bEi" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northwest, /area/ice_colony/underground/research/sample) "bEj" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/sample) "bEk" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/sample) "bEl" = ( /obj/structure/machinery/power/apc{ @@ -26992,10 +21274,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northeast, /area/ice_colony/underground/research/sample) "bEm" = ( /obj/structure/bed/chair/office/light{ @@ -27004,9 +21283,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bEo" = ( /obj/structure/bed/chair/office/light{ @@ -27015,18 +21292,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bEp" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bEq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27035,25 +21308,19 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Theta-V Research Laboratory Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/storage) "bEs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/storage) "bEt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/storage) "bEv" = ( /obj/structure/machinery/light{ @@ -27061,32 +21328,23 @@ }, /obj/structure/surface/table/reinforced, /obj/item/spacecash/c1000, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/storage/highsec) "bEw" = ( /obj/structure/showcase, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) "bEx" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) "bEy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) "bEz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27096,47 +21354,30 @@ desc = "A stand with a plastic display of some kind of weird machine."; icon_state = "coinpress0" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) "bEA" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/storage/highsec) "bEB" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/underground/command/center) "bEC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/center) "bED" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/center) "bEE" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/underground/command/center) "bEF" = ( /turf/closed/wall/r_wall, @@ -27166,9 +21407,7 @@ /area/ice_colony/underground/crew/dorm_r) "bEL" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bEM" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -27176,18 +21415,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bEN" = ( /obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" + dir = 8 }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/hallway/south_east) "bEO" = ( /obj/structure/disposalpipe/segment{ @@ -27196,36 +21430,26 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Underground Security" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/hallway) "bEP" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/hallway) "bEQ" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/hallway) "bER" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/ice_colony/underground/security/hallway) "bES" = ( /obj/structure/disposalpipe/junction{ @@ -27233,36 +21457,26 @@ icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/ice_colony/underground/security/hallway) "bET" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/hallway) "bEU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research/sample) "bEV" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/sample) "bEW" = ( /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -27271,17 +21485,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/sample) "bEX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/sample) "bEY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27290,93 +21500,64 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Theta-V Research Laboratory Sample Isolation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/sample) "bEZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bFa" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research/storage) "bFb" = ( /obj/structure/surface/table/reinforced, /obj/item/circuitboard/computer/atmos_alert, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/storage/highsec) "bFc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) "bFd" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/storage/highsec) "bFe" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/command/center) "bFf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bFh" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bFi" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bFj" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/center) "bFk" = ( /obj/structure/machinery/firealarm{ @@ -27475,9 +21656,7 @@ "bFB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bFD" = ( /turf/closed/wall/r_wall, @@ -27489,107 +21668,70 @@ "bFG" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/hallway) "bFH" = ( /turf/open/ice, /area/ice_colony/underground/maintenance/east) "bFI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southwest, /area/ice_colony/underground/research/sample) "bFJ" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research/sample) "bFK" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research/sample) "bFL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southeast, /area/ice_colony/underground/research/sample) "bFM" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research) "bFO" = ( /obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research) "bFQ" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/storage) "bFR" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research/storage) "bFS" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/surface/hangar/checkpoint) "bFT" = ( /obj/structure/surface/table/reinforced, /obj/item/circuitboard/machine/smes, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/storage/highsec) "bFU" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/trackimp, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/storage/highsec) "bFV" = ( /obj/structure/surface/table/reinforced, /obj/item/circuitboard/computer/crew, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/storage/highsec) "bFW" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/storage/highsec) "bFX" = ( /obj/structure/surface/table/reinforced, /obj/item/circuitboard/computer/powermonitor, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/storage/highsec) "bFY" = ( /obj/structure/machinery/alarm{ @@ -27597,49 +21739,32 @@ pixel_x = -24 }, /obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/ice_colony/surface/bar/canteen) "bFZ" = ( /obj/structure/surface/table/reinforced, /obj/item/toy/plush/farwa, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/storage/highsec) "bGa" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/hypospray/tricordrazine, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/underground/storage/highsec) "bGb" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/underground/command/center) "bGc" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) "bGe" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/center) "bGf" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/underground/command/center) "bGg" = ( /obj/structure/surface/table/woodentable/fancy, @@ -27663,10 +21788,7 @@ /area/ice_colony/underground/command/pv2) "bGk" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/research/field_gear) "bGm" = ( /obj/structure/bed, @@ -27680,10 +21802,7 @@ /area/ice_colony/underground/crew/dorm_r) "bGq" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/interrogation) "bGr" = ( /obj/structure/machinery/power/apc{ @@ -27691,64 +21810,41 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/interrogation) "bGs" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/evidence, /obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/interrogation) "bGt" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/interrogation) "bGu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/interrogation) "bGv" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/interrogation) "bGw" = ( /turf/closed/ice_rock/corners, /area/ice_colony/exterior/underground/caves) "bGx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/surface/research) "bGy" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bGz" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research) "bGB" = ( /turf/closed/wall/r_wall, @@ -27758,9 +21854,7 @@ dir = 1; name = "\improper Underground Security Checkpoint" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bGD" = ( /obj/structure/window/framed/colony/reinforced, @@ -27771,14 +21865,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Colony Administration" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bGF" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bGG" = ( /obj/structure/window/framed/colony/reinforced, @@ -27832,46 +21922,29 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/interrogation) "bGR" = ( /obj/structure/surface/table/reinforced, /obj/item/evidencebag, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/interrogation) "bGS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/interrogation) "bGT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bGU" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/research/temporary) "bGV" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/interrogation) "bGW" = ( /obj/structure/disposalpipe/segment, @@ -27879,10 +21952,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/hallway) "bGX" = ( /turf/closed/wall/r_wall, @@ -27894,10 +21964,7 @@ /obj/item/stack/sheet/mineral/phoron, /obj/item/stack/sheet/mineral/phoron, /obj/item/stack/sheet/mineral/phoron, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northwest, /area/ice_colony/underground/research/work) "bGZ" = ( /obj/structure/machinery/power/apc{ @@ -27907,65 +21974,41 @@ }, /obj/structure/filingcabinet, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/work) "bHa" = ( /obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/work) "bHb" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northeast, /area/ice_colony/underground/research/work) "bHc" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bHd" = ( /obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research) "bHe" = ( /obj/structure/machinery/r_n_d/server, -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southwest, /area/ice_colony/underground/research/storage) "bHf" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research/storage) "bHg" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research/storage) "bHh" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southeast, /area/ice_colony/underground/research/storage) "bHi" = ( /turf/closed/wall/r_wall, @@ -27983,19 +22026,13 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/storage) "bHk" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/storage) "bHl" = ( /obj/structure/surface/table, @@ -28003,23 +22040,15 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/storage) "bHm" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/storage) "bHn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bHo" = ( /obj/structure/machinery/power/apc{ @@ -28027,27 +22056,18 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/storage) "bHp" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/storage) "bHq" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/storage) "bHr" = ( /obj/structure/ladder{ @@ -28055,25 +22075,16 @@ icon_state = "ladderup"; id = "garage_ladder" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/storage) "bHs" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/storage) "bHt" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/command/checkpoint) "bHu" = ( /obj/structure/machinery/power/apc{ @@ -28082,55 +22093,35 @@ start_charge = 0 }, /obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/command/checkpoint) "bHv" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/underground/command/checkpoint) "bHw" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/checkpoint) "bHx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bHy" = ( /obj/structure/bed/chair, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/checkpoint) "bHz" = ( /obj/structure/bed/chair, /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/checkpoint) "bHA" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/underground/command/checkpoint) "bHB" = ( /obj/structure/closet/secure_closet/personal, @@ -28188,90 +22179,61 @@ /area/ice_colony/underground/crew/dorm_r) "bHM" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/interrogation) "bHP" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Evidence Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bHQ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bHR" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bHS" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bHT" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Underground Security Interrogation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bHU" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bHV" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research/work) "bHX" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/work) "bHY" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research/work) "bHZ" = ( /obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research) "bIa" = ( /obj/structure/mineral_door/resin, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/northwest, /area/ice_colony/underground/research) "bIb" = ( /obj/item/stack/sheet/wood, @@ -28293,42 +22255,30 @@ "bIf" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/storage) "bIg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bIi" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bIj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bIk" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/storage) "bIl" = ( /obj/structure/machinery/alarm{ @@ -28338,28 +22288,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/command/checkpoint) "bIm" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/command/checkpoint) "bIn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/command/checkpoint) "bIo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bIp" = ( /obj/structure/bed/chair{ @@ -28368,10 +22307,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/checkpoint) "bIq" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -28402,16 +22338,10 @@ "bIu" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/interrogation) "bIv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/interrogation) "bIx" = ( /obj/structure/tunnel{ @@ -28424,10 +22354,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/alpha) "bIC" = ( /obj/structure/window/framed/colony/reinforced, @@ -28435,62 +22362,42 @@ /area/ice_colony/underground/research) "bID" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research) "bIE" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research) "bIF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/underground/hallway/north_west) "bIG" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/storage) "bIH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bII" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bIJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bIK" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bIL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -28503,10 +22410,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/command/checkpoint) "bIN" = ( /obj/structure/surface/table/reinforced, @@ -28524,156 +22428,103 @@ /area/ice_colony/underground/command/checkpoint) "bIO" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bIP" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/checkpoint) "bIQ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northwest, /area/ice_colony/underground/command/checkpoint) "bIR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/checkpoint) "bIS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bIT" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/checkpoint) "bIU" = ( /obj/structure/noticeboard{ pixel_y = 32 }, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/checkpoint) "bIV" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/command/checkpoint) "bIW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bIX" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/underground/command/checkpoint) "bIY" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/interrogation) "bIZ" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/interrogation) "bJa" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/interrogation) "bJb" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/interrogation) "bJc" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("interrogation") }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/interrogation) "bJd" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/interrogation) "bJe" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Security Checkpoint" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/hallway) "bJf" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/tech_storage) "bJg" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/work) "bJh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/work) "bJi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28683,38 +22534,26 @@ dir = 1; name = "\improper Theta-V Research Laboratory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research/work) "bJk" = ( /obj/effect/landmark/corpsespawner/russian, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bJo" = ( /obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/storage) "bJp" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/command/checkpoint) "bJq" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJr" = ( /obj/structure/bed/chair/office/light{ @@ -28723,10 +22562,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/command/checkpoint) "bJs" = ( /obj/structure/surface/table/reinforced, @@ -28740,24 +22576,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/command/checkpoint) "bJt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJu" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJv" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -28765,9 +22594,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28777,9 +22604,7 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28789,9 +22614,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28801,9 +22624,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28812,9 +22633,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJA" = ( /obj/structure/disposalpipe/segment{ @@ -28823,9 +22642,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJB" = ( /obj/structure/disposalpipe/junction{ @@ -28835,9 +22652,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJC" = ( /obj/structure/disposalpipe/segment{ @@ -28845,25 +22660,18 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bJF" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/checkpoint) "bJG" = ( /obj/structure/window/framed/colony/reinforced/tinted, @@ -28881,10 +22689,7 @@ name = "Checkpoint Lockdown"; pixel_y = 36 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/hallway) "bJI" = ( /obj/structure/surface/table/reinforced, @@ -28893,10 +22698,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/hallway) "bJJ" = ( /obj/structure/surface/table/reinforced, @@ -28913,10 +22715,7 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/hallway) "bJK" = ( /obj/structure/mineral_door/resin, @@ -28925,37 +22724,25 @@ "bJL" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/syringes, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research/work) "bJM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research/work) "bJN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bJO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; name = "\improper Theta-V Research Laboratory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bJP" = ( /obj/item/weapon/baton, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bJQ" = ( /obj/structure/surface/table, @@ -28965,123 +22752,85 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/storage) "bJT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/storage) "bJU" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/storage) "bJV" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/storage) "bJW" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/command/checkpoint) "bJX" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/command/checkpoint) "bJY" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/command/checkpoint) "bJZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/underground/command/checkpoint) "bKa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/checkpoint) "bKc" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bKd" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/checkpoint) "bKe" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/checkpoint) "bKf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; name = "\improper Colony Offices" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/checkpoint) "bKg" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/checkpoint) "bKh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/command/checkpoint) "bKi" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/underground/command/checkpoint) "bKj" = ( /obj/structure/bed, @@ -29148,10 +22897,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/backroom) "bKv" = ( /obj/structure/machinery/computer/cameras/telescreen{ @@ -29162,10 +22908,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/backroom) "bKw" = ( /obj/structure/bed/chair{ @@ -29176,17 +22919,11 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/backroom) "bKx" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/hallway) "bKy" = ( /obj/structure/machinery/flasher{ @@ -29195,17 +22932,12 @@ pixel_x = -32; pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/north, /area/ice_colony/underground/security/hallway) "bKz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bKA" = ( /obj/structure/surface/table/reinforced, @@ -29227,17 +22959,13 @@ name = "Checkpoint Lockdown"; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bKB" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bKD" = ( /obj/structure/machinery/power/apc{ @@ -29245,39 +22973,25 @@ pixel_x = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/hallway) "bKE" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/beakers, -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southwest, /area/ice_colony/underground/research/work) "bKF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/research/tech_storage) "bKG" = ( /obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southeast, /area/ice_colony/underground/research/work) "bKH" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "bKI" = ( /obj/structure/window/framed/colony/reinforced, @@ -29291,53 +23005,40 @@ dir = 4 }, /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bKL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bKM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkpurplecorners2/west, /area/ice_colony/underground/hallway/north_west) "bKN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bKO" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Underground Technical Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bKP" = ( /obj/structure/window/framed/colony/reinforced, @@ -29350,9 +23051,7 @@ dir = 1; name = "\improper Underground Technical Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) "bKR" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29360,9 +23059,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Colony Administration" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) "bKS" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29405,22 +23102,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/backroom) "bKZ" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/backroom) "bLa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/backroom) "bLb" = ( /obj/structure/closet/firecloset/full, @@ -29431,77 +23120,52 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/hallway) "bLc" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/ice_colony/underground/security/hallway) "bLd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/hallway) "bLe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/underground/security/hallway) "bLf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/hallway) "bLg" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) "bLh" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/filingcabinet/security, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/hallway) "bLi" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southwest, /area/ice_colony/underground/research) "bLj" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bLk" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bLl" = ( /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bLm" = ( /obj/structure/machinery/shower{ @@ -29510,17 +23174,13 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bLn" = ( /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bLo" = ( /obj/structure/machinery/shower{ @@ -29529,15 +23189,10 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research) "bLp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southeast, /area/ice_colony/underground/research) "bLq" = ( /obj/structure/barricade/wooden, @@ -29545,92 +23200,59 @@ /turf/open/ice, /area/ice_colony/underground/research) "bLr" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/underground/hallway/north_west) "bLt" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/hallway/south_east) "bLu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/hallway/south_east) "bLw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/hallway/south_east) "bLy" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/hallway/south_east) "bLB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/hallway/south_east) "bLC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/hallway/south_east) "bLE" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/hallway/south_east) "bLH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bLJ" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bLK" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bLL" = ( /obj/structure/machinery/power/apc{ @@ -29638,10 +23260,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bLO" = ( /turf/closed/wall/r_wall, @@ -29656,37 +23275,23 @@ "bLR" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/backroom) "bLS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/backroom) "bLT" = ( /obj/structure/surface/table, /obj/item/device/taperecorder, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/backroom) "bLU" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/hallway) "bLV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/ice_colony/underground/security/hallway) "bLW" = ( /obj/structure/disposalpipe/segment, @@ -29695,17 +23300,11 @@ pixel_x = 24 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/hallway) "bLX" = ( /obj/structure/filingcabinet/security, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/hallway) "bLY" = ( /obj/structure/machinery/light/small, @@ -29715,10 +23314,7 @@ /obj/structure/closet/hydrant{ pixel_x = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/hallway/north_west) "bMa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29728,9 +23324,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bMb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29739,9 +23333,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bMc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29750,27 +23342,21 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -29780,18 +23366,14 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMg" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29801,9 +23383,7 @@ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMi" = ( /obj/structure/disposalpipe/segment{ @@ -29811,9 +23391,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29823,9 +23401,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMk" = ( /obj/structure/disposalpipe/segment{ @@ -29834,18 +23410,14 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMn" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -29854,9 +23426,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMo" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -29866,18 +23436,13 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMp" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/ice_colony/underground/hallway/south_east) "bMq" = ( /obj/item/reagent_container/glass/bucket/mopbucket, @@ -29890,9 +23455,7 @@ dir = 1; name = "\improper Underground Security Interrogation Observation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/backroom) "bMs" = ( /turf/closed/wall/r_wall, @@ -29901,18 +23464,12 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Security Checkpoint" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security) "bMu" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security) "bMv" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29920,9 +23477,7 @@ dir = 1; name = "\improper Underground Security Lobby" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bMw" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29934,35 +23489,26 @@ /area/ice_colony/underground/security) "bMx" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/hallway/north_west) "bMy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Underground Main Hallway" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) "bMz" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMC" = ( /obj/structure/disposalpipe/junction{ @@ -29970,31 +23516,23 @@ icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMD" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bME" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMG" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30002,50 +23540,34 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bMI" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2, /area/ice_colony/underground/hallway/south_east) "bMJ" = ( /obj/structure/closet/crate/secure/weapon, /obj/structure/curtain/black, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/backroom) "bMK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security) "bML" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/north, /area/ice_colony/underground/security) "bMN" = ( /obj/structure/disposalpipe/segment{ @@ -30053,43 +23575,29 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/ice_colony/underground/security) "bMO" = ( /obj/structure/sign/goldenplaque{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMP" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bMR" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMS" = ( /obj/structure/machinery/power/apc{ @@ -30097,81 +23605,51 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMU" = ( /obj/item/storage/donut_box, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMV" = ( /obj/item/device/taperecorder, /obj/item/clothing/glasses/sunglasses, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMW" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMX" = ( /obj/item/book/manual/marine_law, /obj/structure/surface/table/reinforced, /obj/item/restraint/handcuffs, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security) "bMY" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security) "bMZ" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/southwest, /area/ice_colony/underground/hallway/north_west) "bNa" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/hallway/north_west) "bNb" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/hallway/south_east) "bNc" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/hallway/south_east) "bNf" = ( /obj/structure/largecrate/random, @@ -30182,43 +23660,29 @@ dir = 8 }, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/backroom) "bNh" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security) "bNi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNk" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNo" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNr" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNs" = ( /obj/item/storage/box/donkpockets, @@ -30227,10 +23691,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security) "bNt" = ( /turf/closed/wall/r_wall, @@ -30242,9 +23703,7 @@ dir = 1; name = "\improper Underground Disposals" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bNv" = ( /turf/closed/wall/r_wall, @@ -30256,9 +23715,7 @@ dir = 1; name = "\improper Underground Lavatory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/lavatory) "bNx" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30270,26 +23727,18 @@ /area/ice_colony/underground/hallway/south_east) "bNy" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/hallway/south_east) "bNz" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/hallway/south_east) "bNA" = ( /turf/closed/wall/r_wall, /area/ice_colony/underground/crew/leisure) "bNB" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/leisure) "bND" = ( /turf/open/floor/wood, @@ -30326,9 +23775,7 @@ /area/ice_colony/underground/security/backroom) "bNJ" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/backroom) "bNL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30337,62 +23784,43 @@ /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Custodial Closet" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/backroom) "bNO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNR" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security) "bNS" = ( /obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security) "bNT" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/crew/disposals) "bNU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/disposals) "bNV" = ( /obj/structure/ladder{ @@ -30400,26 +23828,18 @@ icon_state = "ladderup"; id = "janitor_ladder" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/disposals) "bNW" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/disposals) "bNX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bNY" = ( /obj/structure/machinery/power/apc{ @@ -30427,45 +23847,27 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/disposals) "bNZ" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/disposals) "bOa" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/crew/disposals) "bOb" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/underground/crew/lavatory) "bOc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/lavatory) "bOd" = ( /obj/structure/closet/jcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/lavatory) "bOe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30473,9 +23875,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/lavatory) "bOf" = ( /obj/structure/disposalpipe/trunk{ @@ -30485,25 +23885,16 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/lavatory) "bOg" = ( /obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/obj/structure/bedsheetbin, +/turf/open/floor/darkbrown2/north, /area/ice_colony/underground/crew/lavatory) "bOh" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/crew/lavatory) "bOi" = ( /obj/structure/reagent_dispensers/fueltank, @@ -30551,17 +23942,11 @@ "bOs" = ( /obj/structure/surface/table, /obj/item/storage/box/trackimp, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/backroom) "bOt" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security) "bOu" = ( /obj/structure/bed/chair/office/dark{ @@ -30571,27 +23956,21 @@ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security) "bOv" = ( /obj/structure/machinery/computer/cameras, /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security) "bOw" = ( /obj/structure/machinery/computer/cameras, /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security) "bOx" = ( /obj/structure/bed/chair/office/dark{ @@ -30600,15 +23979,11 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security) "bOy" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security) "bOz" = ( /obj/structure/machinery/light, @@ -30618,49 +23993,35 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security) "bOB" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security) "bOC" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security) "bOD" = ( /obj/structure/closet/crate/trashcart, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/crew/disposals) "bOE" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bOF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bOG" = ( /obj/structure/disposalpipe/segment{ @@ -30670,59 +24031,40 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bOH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bOI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bOJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/crew/disposals) "bOK" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/crew/lavatory) "bOL" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/lavatory) "bOM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/lavatory) "bON" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/crew/lavatory) "bOO" = ( /obj/structure/reagent_dispensers/watertank, @@ -30772,9 +24114,7 @@ dir = 1; name = "\improper Underground Security Armory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bOX" = ( /turf/closed/wall/r_wall, @@ -30783,9 +24123,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Security Brig" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/brig) "bPa" = ( /turf/closed/shuttle{ @@ -30794,33 +24132,21 @@ /area/space) "bPb" = ( /obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/underground/crew/disposals) "bPc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bPd" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bPe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) "bPf" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/crew/disposals) "bPg" = ( /turf/open/floor/plating, @@ -30878,9 +24204,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bPp" = ( /obj/structure/disposalpipe/junction{ @@ -30890,9 +24214,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bPq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30911,16 +24233,11 @@ /area/ice_colony/underground/maintenance/security) "bPs" = ( /obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/armory) "bPt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bPu" = ( /obj/structure/machinery/power/apc{ @@ -30928,51 +24245,31 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/armory) "bPv" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/armory) "bPw" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/armory) "bPx" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/security/brig) "bPy" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/security/brig) "bPz" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/brig) "bPA" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/brig) "bPC" = ( /obj/structure/machinery/power/apc{ @@ -30980,10 +24277,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/brig) "bPD" = ( /obj/structure/machinery/alarm{ @@ -30993,29 +24287,20 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/brig) "bPE" = ( /obj/structure/toilet, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bPF" = ( /obj/structure/urinal{ pixel_y = 32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bPG" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bPH" = ( /obj/structure/machinery/shower{ @@ -31023,9 +24308,7 @@ }, /obj/structure/window/reinforced, /obj/structure/machinery/door/window/westleft, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bPI" = ( /turf/open/space/transit/north/shuttlespace_ns4, @@ -31038,40 +24321,29 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/underground/crew/disposals) "bPL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/disposals) "bPM" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/disposals) "bPN" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/disposals) "bPO" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/lavatory) "bPR" = ( /obj/structure/bed/chair/wood/normal{ @@ -31091,26 +24363,19 @@ /area/ice_colony/underground/maintenance/security) "bPU" = ( /obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/armory) "bPV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bPW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bPX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31118,17 +24383,13 @@ }, /obj/effect/landmark/corpsespawner/russian, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bPY" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bPZ" = ( /obj/structure/closet/secure_closet/security, @@ -31139,28 +24400,19 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/armory) "bQa" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/security/brig) "bQb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/security/brig) "bQc" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -31171,32 +24423,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/security/brig) "bQd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/brig) "bQe" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/brig) "bQf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/brig) "bQg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31205,31 +24448,23 @@ /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Showers" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/brig) "bQh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bQi" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bQj" = ( /obj/item/tool/soap, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bQk" = ( /obj/structure/tunnel{ @@ -31247,20 +24482,14 @@ /obj/structure/disposaloutlet{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/underground/crew/disposals) "bQm" = ( /obj/effect/landmark/crap_item, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/underground/crew/disposals) "bQn" = ( /obj/item/evidencebag, @@ -31269,38 +24498,26 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/underground/crew/disposals) "bQo" = ( /obj/item/trash/semki, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/underground/crew/disposals) "bQp" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/underground/crew/disposals) "bQr" = ( /obj/structure/machinery/door/window/northright{ name = "Disposals Chute" }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/ice_colony/underground/crew/disposals) "bQs" = ( /obj/structure/window/reinforced{ @@ -31309,10 +24526,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/ice_colony/underground/crew/disposals) "bQu" = ( /turf/open/ice, @@ -31365,10 +24579,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/armory) "bQE" = ( /obj/structure/machinery/door_control{ @@ -31376,75 +24587,48 @@ name = "Colony Secure Armory"; pixel_y = -26 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/armory) "bQF" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bQG" = ( /obj/item/tool/crowbar, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/armory) "bQH" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/armory) "bQI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/security/brig) "bQJ" = ( /obj/structure/bed, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/security/brig) "bQK" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/brig) "bQL" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/brig) "bQM" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/personal, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/brig) "bQN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/brig) "bQO" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/brig) "bQP" = ( /obj/structure/mirror{ @@ -31454,24 +24638,18 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bQQ" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bQR" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/structure/machinery/door/window/westleft, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) "bQS" = ( /turf/open/floor/plating, @@ -31498,77 +24676,53 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/ice_colony/underground/crew/disposals) "bQY" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/underground/crew/disposals) "bQZ" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/underground/crew/lavatory) "bRa" = ( /obj/structure/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/lavatory) "bRb" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/lavatory) "bRc" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/lavatory) "bRd" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/lavatory) "bRe" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/lavatory) "bRf" = ( /obj/structure/machinery/alarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/ice_colony/underground/crew/lavatory) "bRg" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/underground/crew/lavatory) "bRh" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31581,18 +24735,13 @@ "bRi" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bRj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) "bRk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31612,9 +24761,7 @@ id = "colony_sec_armory"; name = "Secure Armory" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bRn" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -31623,9 +24770,7 @@ id = "brg" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/security/brig) "bRo" = ( /obj/structure/ice/thin/end{ @@ -31689,10 +24834,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/armory) "bRy" = ( /obj/structure/machinery/door_control{ @@ -31700,16 +24842,10 @@ name = "Colony Secure Armory"; pixel_y = 26 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/armory) "bRz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/armory) "bRA" = ( /obj/structure/surface/rack, @@ -31718,71 +24854,44 @@ pixel_y = -2 }, /obj/item/storage/box/flashbangs, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/armory) "bRB" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/security/brig) "bRC" = ( /obj/structure/bedsheetbin, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) "bRD" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) "bRE" = ( /obj/item/storage/box/donkpockets, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) "bRF" = ( /obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) "bRG" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) "bRH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) "bRI" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/security/brig) "bRJ" = ( /obj/structure/ladder{ @@ -31839,14 +24948,10 @@ /area/ice_colony/underground/maintenance/south) "bRS" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bRT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bRU" = ( /obj/structure/surface/table, @@ -31855,9 +24960,7 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bRW" = ( /obj/structure/surface/table, @@ -31876,9 +24979,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bRX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31900,10 +25001,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/armory) "bRZ" = ( /obj/structure/surface/rack, @@ -31912,9 +25010,7 @@ pixel_x = -4; pixel_y = -2 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bSb" = ( /obj/structure/surface/rack, @@ -31926,52 +25022,35 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/armory) "bSc" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/security/brig) "bSd" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/underground/security/brig) "bSe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/security/brig) "bSf" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/security/brig) "bSg" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSh" = ( /obj/structure/surface/table, @@ -31980,9 +25059,7 @@ pixel_y = -4 }, /obj/item/folder/black_random, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSi" = ( /obj/structure/surface/rack, @@ -31991,10 +25068,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security/armory) "bSj" = ( /obj/structure/surface/rack, @@ -32003,28 +25077,16 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/armory) "bSk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/ice_colony/underground/security/brig) "bSl" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/security/brig) "bSm" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/underground/security/brig) "bSn" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -32037,18 +25099,13 @@ /obj/structure/surface/table/reinforced, /obj/item/packageWrap, /obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition/lobby) "bSq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSr" = ( /obj/structure/surface/table/reinforced, @@ -32058,10 +25115,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/underground/requesition/lobby) "bSs" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -32073,9 +25127,7 @@ /area/ice_colony/underground/maintenance/security) "bSt" = ( /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/armory) "bSu" = ( /obj/structure/surface/rack, @@ -32084,9 +25136,7 @@ pixel_y = -4 }, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/armory) "bSv" = ( /obj/structure/surface/rack, @@ -32095,16 +25145,12 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/armory) "bSw" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/armory) "bSx" = ( /obj/structure/surface/rack, @@ -32115,9 +25161,7 @@ }, /obj/item/ammo_magazine/pistol/holdout, /obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/security/armory) "bSy" = ( /obj/structure/surface/rack, @@ -32128,25 +25172,17 @@ pixel_y = -4 }, /obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/security/armory) "bSz" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/underground/security/brig) "bSB" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/security/brig) "bSC" = ( /obj/structure/window/reinforced/tinted{ @@ -32154,17 +25190,12 @@ }, /obj/structure/surface/table, /obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/security/brig) "bSD" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/underground/security/brig) "bSE" = ( /obj/structure/surface/rack, @@ -32174,15 +25205,11 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSH" = ( /obj/structure/surface/table, @@ -32193,9 +25220,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -32203,10 +25228,7 @@ /turf/open/floor/plating, /area/ice_colony/underground/maintenance/security) "bSJ" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplatecorner" - }, +/turf/open/floor/plating/warnplatecorner/north, /area/ice_colony/underground/maintenance/east) "bSK" = ( /obj/structure/disposalpipe/segment{ @@ -32214,18 +25236,14 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bSM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32265,10 +25283,7 @@ icon_state = "ladderup"; id = "hangar_ladder" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/ice_colony/underground/maintenance/east) "bSR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32279,18 +25294,13 @@ icon_state = "ladderup"; id = "hangar_ladder1" }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/ice_colony/underground/maintenance/east) "bSS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/ice_colony/underground/maintenance/east) "bST" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32305,16 +25315,10 @@ /turf/open/space/transit/north/shuttlespace_ns4, /area/shuttle/elevator2/transit) "bSW" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/hallway/south_east) "bSX" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/hallway/south_east) "bSY" = ( /obj/structure/disposalpipe/segment, @@ -32344,9 +25348,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Main Hallway" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bTe" = ( /obj/structure/filingcabinet/chestdrawer, @@ -32397,23 +25399,14 @@ /area/ice_colony/underground/hallway/south_east) "bTm" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/south_east) "bTn" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bTo" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/hallway/south_east) "bTp" = ( /turf/open/floor/wood, @@ -32473,10 +25466,7 @@ dir = 4; icon_state = "chair" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/south_east) "bTD" = ( /obj/item/paper_bin, @@ -32516,25 +25506,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/south_east) "bTJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/underground/hallway/south_east) "bTK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bTL" = ( /obj/structure/disposalpipe/segment{ @@ -32544,17 +25526,11 @@ /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bTM" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/hallway/south_east) "bTN" = ( /turf/closed/wall/r_wall, @@ -32565,9 +25541,7 @@ icon_state = "pipe-c" }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bTS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32577,26 +25551,20 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bTT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bTV" = ( /obj/structure/toilet, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bTW" = ( /obj/structure/toilet, @@ -32605,9 +25573,7 @@ }, /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bTX" = ( /obj/structure/sink{ @@ -32616,68 +25582,49 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bTY" = ( /turf/open/floor, /area/ice_colony/surface/tcomms) "bUc" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/south_east) "bUd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUe" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUf" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/ice_colony/underground/hallway/south_east) "bUg" = ( /obj/structure/bed/chair/office/dark{ dir = 1; icon_state = "chair" }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bUh" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bUj" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/south_east) "bUk" = ( /obj/structure/machinery/disposal, @@ -32685,33 +25632,22 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bUl" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/hallway/south_east) "bUm" = ( /obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bUn" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUo" = ( /obj/structure/machinery/power/apc{ @@ -32719,25 +25655,19 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Visitor Entrance" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bUr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bUs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32746,35 +25676,27 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Underground Men's Restroom" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32783,17 +25705,13 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32821,10 +25739,7 @@ /area/ice_colony/underground/maintenance/south) "bUI" = ( /obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/south_east) "bUJ" = ( /obj/structure/disposalpipe/segment{ @@ -32834,9 +25749,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bUK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32845,10 +25758,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bUL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32860,10 +25770,7 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) "bUM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32872,33 +25779,23 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/hallway/south_east) "bUN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bUP" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) "bUQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUR" = ( /obj/structure/sink{ @@ -32908,17 +25805,13 @@ /obj/structure/mirror{ pixel_y = -28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUS" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUT" = ( /obj/structure/machinery/light{ @@ -32931,9 +25824,7 @@ /obj/structure/mirror{ pixel_y = -28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) "bUU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32951,10 +25842,7 @@ dir = 4 }, /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) "bVa" = ( /turf/closed/wall/r_wall, @@ -32994,16 +25882,11 @@ /obj/item/tool/pen/blue{ pixel_x = -6 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/reception/checkpoint_south) "bVi" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) "bVj" = ( /obj/structure/machinery/light{ @@ -33015,14 +25898,10 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVk" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVl" = ( /obj/structure/sink{ @@ -33031,65 +25910,44 @@ /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVm" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVn" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/reception/checkpoint_south) "bVo" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/underground/requesition/lobby) "bVp" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/reception/checkpoint_south) "bVq" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/reception/checkpoint_south) "bVr" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Underground Security Checkpoint" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/reception/checkpoint_south) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) "bVt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33098,17 +25956,13 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Underground Women's Restroom" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33118,15 +25972,11 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVy" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33139,16 +25989,11 @@ /area/ice_colony/underground/reception/toilet_women) "bVA" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/reception/checkpoint_south) "bVB" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/reception/checkpoint_south) "bVC" = ( /obj/structure/machinery/firealarm{ @@ -33158,9 +26003,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkred2" - }, +/turf/open/floor/darkred2, /area/ice_colony/underground/reception/checkpoint_south) "bVD" = ( /obj/structure/filingcabinet/security, @@ -33168,27 +26011,20 @@ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/ice_colony/underground/reception/checkpoint_south) "bVE" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bVF" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bVG" = ( /obj/structure/bed/chair{ @@ -33198,52 +26034,39 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "bVI" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/hallway/south_east) "bVJ" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVK" = ( /obj/structure/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVL" = ( /obj/structure/machinery/power/apc{ pixel_y = -24; start_charge = 0 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVM" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVN" = ( /obj/structure/mineral_door/resin, @@ -33287,9 +26110,7 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVV" = ( /obj/structure/sink{ @@ -33299,9 +26120,7 @@ /obj/structure/mirror{ pixel_y = -28 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_women) "bVW" = ( /turf/closed/shuttle{ @@ -33375,25 +26194,16 @@ /obj/structure/shuttle/engine/heater{ dir = 8 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bWl" = ( /obj/structure/shuttle/engine/heater{ dir = 4 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bWm" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bWn" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33413,10 +26223,7 @@ /obj/structure/shuttle/engine/router{ dir = 4 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bWs" = ( /obj/structure/surface/table, @@ -33459,10 +26266,7 @@ icon_state = "door_open"; name = "strange airlock" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bWz" = ( /obj/structure/ice/thin/straight, @@ -33470,23 +26274,14 @@ /area/ice_colony/exterior/underground/caves/open) "bWA" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWB" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWC" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWD" = ( /obj/item/tool/pickaxe/silver, @@ -33523,10 +26318,7 @@ /turf/closed/ice/intersection, /area/ice_colony/exterior/underground/caves) "bWJ" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bWK" = ( /obj/structure/shuttle/window{ @@ -33534,10 +26326,7 @@ icon_state = "13" }, /obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWL" = ( /obj/structure/shuttle/window{ @@ -33545,10 +26334,7 @@ icon_state = "9" }, /obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWM" = ( /obj/structure/shuttle/window{ @@ -33556,16 +26342,11 @@ icon_state = "12" }, /obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWN" = ( /obj/structure/inflatable/door, -/turf/open/floor/icefloor{ - icon_state = "ramptop" - }, +/turf/open/floor/icefloor/ramptop, /area/ice_colony/exterior/underground/caves/dig) "bWO" = ( /obj/structure/inflatable/door, @@ -33576,33 +26357,21 @@ icon_state = "door_open"; name = "strange airlock" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bWP" = ( /obj/structure/cryofeed, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bWQ" = ( /obj/structure/cryofeed/right, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bWR" = ( /obj/structure/computerframe{ anchored = 1 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bWS" = ( /obj/structure/shuttle/engine/propulsion/burst{ @@ -33612,33 +26381,21 @@ /area/ice_colony/exterior/underground/caves/dig) "bWT" = ( /obj/effect/landmark/good_item, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWU" = ( /obj/structure/xenoautopsy/tank/broken, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bWV" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bWW" = ( /obj/item/tool/screwdriver, /obj/item/device/multitool, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bWX" = ( /obj{ @@ -33648,10 +26405,7 @@ icon_state = "door_open"; name = "strange airlock" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bWZ" = ( /obj/structure/inflatable/door, @@ -33662,66 +26416,42 @@ icon_state = "door_open"; name = "strange airlock" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bXa" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXb" = ( /obj/item/stack/cable_coil/random, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXc" = ( /obj/effect/decal/cleanable/spiderling_remains{ name = "greenish remains" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXd" = ( /obj/structure/inflatable/door, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXe" = ( /obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXf" = ( /obj/item/device/flashlight, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXg" = ( /obj/structure/computerframe{ anchored = 1 }, /obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXh" = ( /obj/structure/shuttle/window{ @@ -33745,24 +26475,15 @@ name = "strange airlock"; opacity = 1 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXk" = ( /obj/item/device/flashlight/flare, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXl" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXm" = ( /obj/structure/shuttle/window{ @@ -33782,10 +26503,7 @@ name = "strange airlock"; opacity = 1 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bXo" = ( /obj/structure/machinery/door/poddoor{ @@ -33793,10 +26511,7 @@ icon_state = "door_closed"; name = "Strange Airlock" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXp" = ( /obj{ @@ -33808,31 +26523,19 @@ name = "strange airlock"; opacity = 1 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) "bXq" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXr" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "bXs" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bXt" = ( /turf/closed/ice/junction{ @@ -33840,9 +26543,7 @@ }, /area/ice_colony/exterior/underground/caves/open) "bXu" = ( -/turf/open/floor/icefloor{ - icon_state = "ramptop" - }, +/turf/open/floor/icefloor/ramptop, /area/ice_colony/exterior/underground/caves/dig) "bXv" = ( /turf/closed/ice/end{ @@ -33862,17 +26563,11 @@ /area/ice_colony/exterior/underground/caves/open) "bXy" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bXz" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) "bXA" = ( /obj/structure/tunnel{ @@ -33882,50 +26577,35 @@ /area/ice_colony/exterior/underground/caves/open) "bXB" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/armory) "bXD" = ( /obj/structure/surface/table, /obj/item/tool/surgery/scalpel, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bXE" = ( /obj/structure/surface/table, /obj/item/device/camera, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) "bXF" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) "bXL" = ( /obj/structure/surface/table/reinforced, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/lobby) "bXM" = ( /obj/structure/surface/table/reinforced, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, +/turf/open/floor/whitered/northeast, /area/ice_colony/underground/medical/lobby) "bXN" = ( /obj/structure/surface/table, @@ -33936,10 +26616,7 @@ /obj/item/tool/soap{ pixel_x = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/or) "bXO" = ( /obj/structure/surface/table/reinforced, @@ -33947,10 +26624,7 @@ dir = 8; health = 80 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/lobby) "bXQ" = ( /obj/structure/surface/table, @@ -33959,10 +26633,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/storage) "bXR" = ( /obj/structure/surface/table/woodentable, @@ -33978,9 +26649,7 @@ /obj/structure/surface/table/reinforced, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) "bXU" = ( /obj/structure/machinery/firealarm{ @@ -33988,10 +26657,7 @@ pixel_x = -24 }, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/underground/storage/highsec) "bXV" = ( /obj/structure/surface/table/reinforced, @@ -33999,42 +26665,30 @@ /obj/item/spacecash/c100, /obj/item/spacecash/c10, /obj/item/spacecash/c1, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/underground/storage/highsec) "bXW" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research) "bXY" = ( /obj/structure/surface/table, /obj/item/evidencebag, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bYa" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/security/interrogation) "bYb" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research/work) "bYc" = ( /obj/structure/surface/table/reinforced, @@ -34042,55 +26696,39 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research/work) "bYd" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/ice_colony/underground/research/work) "bYg" = ( /obj/item/storage/box/bodybags, /obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/backroom) "bYh" = ( /obj/structure/surface/table, /obj/item/paper, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bYi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bYj" = ( /obj/structure/surface/table, /obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/reception) "bYk" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/security/brig) "bYm" = ( /obj/structure/surface/table/reinforced, @@ -34098,23 +26736,15 @@ /area/ice_colony/underground/reception) "bYn" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/hallway/south_east) "bYo" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/reception/checkpoint_south) "bYp" = ( /obj/structure/surface/table, /obj/item/trash/chips, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) "cbk" = ( /turf/open/floor/plating/icefloor, @@ -34141,9 +26771,7 @@ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "cBQ" = ( /obj/structure/machinery/door/unpowered/shuttle, @@ -34173,16 +26801,11 @@ /turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) "dgG" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/tcomms) "doO" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor{ - icon_state = "platebot" - }, +/turf/open/floor/platebot, /area/ice_colony/surface/engineering/generator) "drG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -34195,18 +26818,13 @@ "dxl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "dzn" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/tcomms) "dFm" = ( /obj/structure/machinery/light, @@ -34223,10 +26841,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "elU" = ( /obj/structure/bed/chair/wood/normal{ @@ -34246,24 +26861,16 @@ "ezT" = ( /obj/vehicle/train/cargo/trolley, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "eSd" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/ice_colony/surface/tcomms) "eSN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/surface/research/tech_storage) "faO" = ( /obj/structure/machinery/light{ @@ -34302,21 +26909,15 @@ pixel_y = 2 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/tcomms) "fUW" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "giH" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/tcomms) "gxg" = ( /obj/structure/machinery/power/apc{ @@ -34324,17 +26925,11 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "gDb" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/reception/checkpoint_north) "gHI" = ( /obj/structure/machinery/light{ @@ -34347,10 +26942,7 @@ /area/ice_colony/surface/hangar/alpha) "gXP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/research) "hfj" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -34386,9 +26978,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "hAX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -34404,10 +26994,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/ice_colony/underground/hangar) "ilp" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -34415,17 +27002,12 @@ id = "st_19"; name = "Research Storage Unit" }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/research) "iBu" = ( /obj/structure/surface/table/reinforced, /obj/item/paper/research_notes, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) "iNy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34443,10 +27025,7 @@ id = "st_17"; name = "Power Storage Unit" }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/power) "iZc" = ( /obj/structure/lz_sign/ice_sign{ @@ -34462,9 +27041,7 @@ dir = 2; name = "Underground Secure Technical Storage" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) "jtr" = ( /turf/closed/wall, @@ -34479,10 +27056,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "jFV" = ( /obj/structure/bed/chair{ @@ -34508,10 +27082,7 @@ /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) "kfW" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/ice_colony/surface/tcomms) "krs" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -34520,16 +27091,12 @@ id = "engine_electrical_maintenance"; name = "Underground Power Substation" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering/substation) "kKZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/dorms) "kRw" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -34563,10 +27130,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "lJQ" = ( /turf/open/auto_turf/snow/layer4, @@ -34593,19 +27157,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) "mwS" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/ice_colony/underground/maintenance/south) "mHc" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/surface/hangar/beta) "mLJ" = ( /obj/structure/shuttle/diagonal{ @@ -34617,17 +27176,11 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Colony Dormitories" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/surface/dorms) "nup" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research/storage) "osF" = ( /turf/open/auto_turf/snow/layer4, @@ -34665,10 +27218,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/ice_colony/surface/hangar/alpha) "paK" = ( /obj/structure/window/framed/colony/reinforced, @@ -34704,9 +27254,7 @@ /area/ice_colony/exterior/underground/caves/open) "qwB" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/tcomms) "qEB" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -34745,10 +27293,7 @@ /area/ice_colony/underground/hangar) "rbS" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/ice_colony/surface/tcomms) "rmR" = ( /obj/structure/machinery/recharge_station, @@ -34769,9 +27314,7 @@ "rAm" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/research) "rKn" = ( /obj/structure/filingcabinet, @@ -34786,20 +27329,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "rNB" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "sto" = ( /obj/docking_port/stationary/marine_dropship/lz1{ @@ -34811,10 +27348,7 @@ /obj/structure/surface/table, /obj/item/device/analyzer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/tcomms) "sTg" = ( /turf/open/auto_turf/snow/layer4, @@ -34827,35 +27361,24 @@ /area/ice_colony/surface/hangar/beta) "sTY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/ice_colony/surface/hangar/beta) "tbZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "tly" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "tue" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2, /area/ice_colony/surface/dorms) "tBe" = ( /obj/structure/bed/chair, @@ -34871,10 +27394,7 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Colony Dormitories" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +/turf/open/floor/darkblue2/southeast, /area/ice_colony/surface/dorms) "tZS" = ( /turf/open/auto_turf/snow/layer4, @@ -34888,25 +27408,17 @@ /area/ice_colony/surface/hangar/beta) "ueV" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hydroponics/south) "umI" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Colony Dormitories" }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/surface/dorms) "urm" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/exterior/surface/landing_pad) "uuK" = ( /obj/structure/surface/table, @@ -34915,9 +27427,7 @@ /area/ice_colony/underground/hangar) "uAe" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/tcomms) "uBE" = ( /turf/open/auto_turf/snow/layer4, @@ -34926,10 +27436,7 @@ /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/cliff) "uPr" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/ice_colony/surface/hangar/beta) "uUv" = ( /obj/effect/alien/weeds/node, @@ -34953,28 +27460,19 @@ icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) "waD" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/excavation) "waN" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/tcomms) "wcI" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/alpha) "wue" = ( /obj/structure/filingcabinet, @@ -34986,10 +27484,7 @@ /turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) "wDj" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/ice_colony/surface/tcomms) "wTN" = ( /obj/structure/surface/table/woodentable, @@ -35002,33 +27497,22 @@ id = "st_18"; name = "Disposals Storage Unit" }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/ice_colony/surface/storage_unit/telecomms) "xkk" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/icefloor/shuttle_floor7, /area/ice_colony/exterior/underground/caves/dig) "xrT" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/ice_colony/surface/tcomms) "xyz" = ( /obj/structure/machinery/power/reactor/colony, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "platebot" - }, +/turf/open/floor/platebot, /area/ice_colony/surface/engineering/generator) "xAI" = ( /obj/structure/shuttle/diagonal{ @@ -35055,9 +27539,7 @@ /obj/structure/surface/table, /obj/item/device/encryptionkey, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/surface/tcomms) "yhm" = ( /obj/structure/machinery/light{ diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index 7cd4120ce4a4..c359e4ae0a0e 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -21,9 +21,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "aah" = ( /obj/item/stack/sheet/metal, @@ -97,9 +95,7 @@ /area/shiva/exterior/cp_lz2) "aar" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aas" = ( /obj/structure/platform/strata, @@ -620,9 +616,7 @@ /obj/structure/platform/shiva/catwalk{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aco" = ( /obj/structure/stairs/perspective/ice{ @@ -642,10 +636,7 @@ dir = 1; pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/north, /area/shiva/interior/lz2_habs) "acr" = ( /obj/structure/fence{ @@ -681,9 +672,7 @@ dir = 1; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/medseceng) "acA" = ( /obj/structure/ice/thin/indestructible{ @@ -694,10 +683,7 @@ /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) "acC" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/east, /area/shiva/exterior/junkyard/fortbiceps) "acD" = ( /turf/closed/shuttle/elevator/button/arrivals, @@ -734,23 +720,17 @@ /area/shiva/interior/colony/medseceng) "acU" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "acW" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate, /area/shiva/exterior/junkyard/fortbiceps) "acY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "ada" = ( /obj/structure/reagent_dispensers, @@ -758,21 +738,13 @@ /area/shiva/interior/colony/research_hab) "ade" = ( /obj/structure/fence, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/exterior/cp_colony_grounds) "adf" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/shiva/interior/colony/central) "adi" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/east, /area/shiva/interior/colony/research_hab) "adj" = ( /obj/item/reagent_container/glass/bucket/mopbucket, @@ -782,15 +754,11 @@ /area/shiva/interior/colony/research_hab) "ado" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "adp" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "adq" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ @@ -829,68 +797,46 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "adR" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "adS" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/black, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/research_hab) "adT" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/black, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "adV" = ( /obj/structure/surface/table, /obj/item/device/reagent_scanner, /obj/effect/landmark/good_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "adW" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/research_hab) "adX" = ( /obj/structure/machinery/cryo_cell, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "adY" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "adZ" = ( /obj/vehicle/train/cargo/trolley, @@ -901,20 +847,14 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) "aeb" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) "aec" = ( /obj/structure/largecrate/random/mini/med{ @@ -939,9 +879,7 @@ }, /obj/structure/window/reinforced, /obj/structure/machinery/door/window/westleft, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aeg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -953,10 +891,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "aek" = ( /obj/structure/window/framed/shiva, @@ -964,24 +899,17 @@ /area/shiva/interior/colony/medseceng) "ael" = ( /obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "aeo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aeq" = ( /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "aes" = ( /obj/structure/surface/table/reinforced/prison, @@ -990,9 +918,7 @@ }, /obj/item/stack/cable_coil, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "aet" = ( /obj/structure/closet/secure_closet/medical2, @@ -1001,54 +927,34 @@ pixel_y = 9 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "aev" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "aew" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) "aex" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/research_hab) "aez" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "aeA" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/shiva/interior/colony/central) "aeC" = ( /obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "aeD" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -1088,9 +994,7 @@ amount = 15 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "aeN" = ( /obj/structure/closet/secure_closet/guncabinet, @@ -1099,33 +1003,22 @@ /obj/item/ammo_magazine/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "aeP" = ( /obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/research_hab) "aeQ" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/research_hab) "aeR" = ( /obj/structure/machinery/light/double, /obj/structure/surface/rack, /obj/item/clothing/mask/gas, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "aeU" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -1152,36 +1045,23 @@ /area/shiva/interior/colony/medseceng) "afd" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "aff" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "afh" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "afi" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "afm" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "afp" = ( /obj/structure/surface/table, @@ -1190,43 +1070,30 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "afv" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/mechanical, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "afw" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "afx" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "afz" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/research_hab) "afA" = ( /obj/structure/flora/tree/dead/tree_1, @@ -1244,60 +1111,38 @@ /obj/structure/surface/table, /obj/item/stack/nanopaste, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "afF" = ( -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "afL" = ( /obj/structure/surface/table, /obj/item/tool/wrench, /obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "afM" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "afN" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "afP" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "afQ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "afR" = ( /obj/structure/surface/table, /obj/item/bodybag/cryobag, /obj/item/storage/box/syringes, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "afT" = ( /obj/structure/surface/table, @@ -1306,28 +1151,19 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "afV" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "afX" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "afY" = ( /obj/item/weapon/ice_axe/green, @@ -1340,10 +1176,7 @@ "aga" = ( /obj/item/device/defibrillator, /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "agb" = ( /obj/structure/bed/chair/wheelchair, @@ -1351,10 +1184,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "agc" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -1373,37 +1203,25 @@ "age" = ( /obj/structure/closet/radiation, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "agg" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "agh" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "agl" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "agm" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "agp" = ( /obj/structure/noticeboard{ @@ -1439,9 +1257,7 @@ "agx" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "agy" = ( /obj/item/lightstick/planted, @@ -1449,9 +1265,7 @@ /area/shiva/exterior/junkyard) "agz" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "platebot" - }, +/turf/open/floor/platebot, /area/shiva/interior/colony/research_hab) "agA" = ( /obj/structure/machinery/firealarm{ @@ -1467,18 +1281,14 @@ /area/shiva/interior/colony/medseceng) "agC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "agF" = ( /obj/structure/machinery/landinglight/ds2, /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "agJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -1487,19 +1297,13 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "agK" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "102" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "agM" = ( /obj/item/ammo_box/magazine/nailgun, @@ -1514,10 +1318,7 @@ "agY" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) "agZ" = ( /obj/structure/surface/table, @@ -1528,25 +1329,16 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) "aha" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) "ahe" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "ahh" = ( /obj/structure/platform/shiva/catwalk{ @@ -1557,10 +1349,7 @@ "ahl" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "ahq" = ( /obj/structure/filingcabinet/security, @@ -1575,9 +1364,7 @@ /area/shiva/interior/colony/medseceng) "ahu" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "ahv" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -1589,9 +1376,7 @@ "ahy" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ahC" = ( /obj/structure/flora/bush/snow{ @@ -1604,18 +1389,12 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/shiva/interior/colony/medseceng) "ahE" = ( /obj/structure/surface/rack, /obj/item/cell/high/empty, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "ahO" = ( /obj/structure/surface/rack, @@ -1624,10 +1403,7 @@ pixel_y = -2 }, /obj/item/storage/box/flashbangs, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "ahP" = ( /obj/structure/surface/rack, @@ -1640,42 +1416,29 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "ahQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/cell/high, /obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "ahR" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "ahS" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "ahT" = ( /obj/structure/surface/rack, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "ahU" = ( /obj/structure/bed/chair/office/dark{ @@ -1685,9 +1448,7 @@ dir = 8 }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "ahW" = ( /obj/structure/surface/rack, @@ -1696,10 +1457,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "ahX" = ( /turf/closed/shuttle/elevator/gears, @@ -1709,27 +1467,19 @@ dir = 4; flipped = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "aia" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "aii" = ( /obj/structure/machinery/power/smes/buildable{ name = "colony distribution SMES" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "aij" = ( /obj/item/tool/shovel, @@ -1749,10 +1499,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "ain" = ( /obj/structure/flora/bush/snow{ @@ -1783,25 +1530,17 @@ /obj/structure/surface/rack, /obj/item/cell/high/empty, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "aix" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) "aiy" = ( /obj/structure/surface/table, /obj/item/storage/surgical_tray, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "aiz" = ( /obj/structure/machinery/colony_floodlight, @@ -1809,9 +1548,7 @@ /area/shiva/exterior/valley) "aiD" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "aiE" = ( /obj/item/ammo_magazine/flamer_tank, @@ -1819,9 +1556,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "aiF" = ( /obj/structure/flora/bush/snow, @@ -1829,31 +1564,23 @@ /area/shiva/exterior/cp_lz2) "aiG" = ( /obj/structure/machinery/optable, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aiH" = ( /obj/structure/machinery/computer/operating, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aiJ" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 9; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "aiK" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aiL" = ( /obj/structure/surface/table/reinforced/prison, @@ -1869,10 +1596,7 @@ pixel_x = -5; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "aiO" = ( /obj/structure/machinery/light/double{ @@ -1880,10 +1604,7 @@ pixel_y = -5 }, /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "aiQ" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -1903,17 +1624,11 @@ /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/cell_charger, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) "aiV" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/research_hab) "aiW" = ( /obj/item/lightstick/red/planted, @@ -1923,17 +1638,11 @@ /obj/structure/surface/rack, /obj/item/cell, /obj/item/cell, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) "ajb" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "ajd" = ( /obj/item/stack/snow{ @@ -1942,32 +1651,24 @@ }, /obj/item/stack/snow, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "aje" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, /obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "ajg" = ( /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/research_hab) "aji" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) "ajq" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -1975,10 +1676,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/shiva/interior/colony/n_admin) "ajr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -1989,10 +1687,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/central) "aju" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/colony/central) "ajw" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ @@ -2005,9 +1700,7 @@ /area/shiva/interior/caves/cp_camp) "ajD" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "ajE" = ( /obj/item/stack/snow{ @@ -2015,7 +1708,7 @@ }, /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "ajF" = ( /obj/item/tool/shovel/etool, /turf/open/auto_turf/snow/layer3, @@ -2026,25 +1719,18 @@ /obj/item/circuitboard/airlock, /obj/item/circuitboard/airlock, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "ajK" = ( /obj/structure/surface/rack, /obj/item/circuitboard/airalarm, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ajL" = ( /obj/structure/surface/rack, /obj/item/circuitboard/apc, /obj/item/circuitboard/apc, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ajM" = ( /obj/structure/ore_box, @@ -2052,9 +1738,7 @@ /area/shiva/interior/colony/medseceng) "ajN" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "ajO" = ( /turf/open/floor/plating, @@ -2067,10 +1751,7 @@ /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "ajV" = ( /obj/structure/curtain, @@ -2080,37 +1761,25 @@ /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/powercell, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "ajX" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) "ajY" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/medseceng) "aka" = ( /obj/structure/surface/table/woodentable/poor, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "akf" = ( /obj/item/lightstick/red/planted, @@ -2118,29 +1787,20 @@ /area/shiva/exterior/junkyard) "akh" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aki" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/shiva/interior/colony/botany) "akj" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "akl" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) "ako" = ( /obj/structure/barricade/snow{ @@ -2171,26 +1831,18 @@ /area/shiva/exterior/cp_colony_grounds) "akA" = ( /obj/item/tool/shovel/snow, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/shiva/interior/colony/n_admin) "akE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Sports Center"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/shiva/interior/colony/central) "akF" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/warehouse) "akG" = ( /obj/structure/machinery/colony_floodlight, @@ -2204,17 +1856,13 @@ pixel_y = 2 }, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "akI" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "akL" = ( /obj/structure/machinery/light/double{ @@ -2255,9 +1903,7 @@ /area/shiva/interior/colony/medseceng) "akX" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "ala" = ( /obj/structure/closet/secure_closet/personal, @@ -2270,10 +1916,7 @@ pixel_x = -4; pixel_y = -2 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "ale" = ( /obj/structure/surface/rack, @@ -2291,18 +1934,12 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "all" = ( /obj/effect/landmark/corpsespawner/security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "alr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -2314,9 +1951,7 @@ "alt" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "alx" = ( /obj/structure/surface/table, @@ -2324,9 +1959,7 @@ amount = 15 }, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aly" = ( /obj/structure/closet/secure_closet/security, @@ -2334,10 +1967,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "alz" = ( /obj/structure/surface/table, @@ -2348,10 +1978,7 @@ /obj/item/tool/soap{ pixel_x = 5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "alA" = ( /turf/open/auto_turf/ice/layer2, @@ -2401,9 +2028,7 @@ /area/shiva/interior/warehouse) "alV" = ( /obj/item/clothing/gloves/latex, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "alW" = ( /obj/structure/barricade/deployable{ @@ -2415,9 +2040,7 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "ama" = ( /obj/structure/surface/table/reinforced/prison, @@ -2426,17 +2049,11 @@ pixel_x = 7; pixel_y = 14 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "amh" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "ami" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -2455,24 +2072,18 @@ /area/shiva/interior/colony/medseceng) "amk" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "amn" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "amr" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "amu" = ( /turf/closed/wall/shiva/prefabricated/red, @@ -2490,17 +2101,13 @@ "amA" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "amE" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "amG" = ( /obj/structure/machinery/light/double{ @@ -2510,9 +2117,7 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "amH" = ( /obj/structure/bed/chair{ @@ -2545,10 +2150,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "amM" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -2559,23 +2161,16 @@ /area/shiva/exterior/cp_lz2) "amN" = ( /obj/item/tool/crowbar, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "amO" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "amP" = ( -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "amQ" = ( /obj/item/lightstick/red/planted, @@ -2585,14 +2180,10 @@ /obj/structure/prop/ice_colony/ground_wire{ layer = 2.98 }, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +/turf/open/floor/shiva/purple, /area/shiva/interior/lz2_habs) "amU" = ( -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "amX" = ( /obj/item/paper_bin{ @@ -2612,9 +2203,7 @@ id = "otice"; pixel_y = -24 }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "anc" = ( /turf/closed/wall/shiva/prefabricated/white, @@ -2623,9 +2212,7 @@ /obj/structure/bed/chair/comfy/blue{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "anq" = ( /obj/structure/toilet, @@ -2637,18 +2224,13 @@ /area/shiva/interior/warehouse) "ant" = ( /obj/item/roller, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) "any" = ( /obj/structure/closet/secure_closet/medical3{ req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "anz" = ( /obj/structure/surface/table/reinforced/prison, @@ -2659,26 +2241,19 @@ pixel_x = -1; pixel_y = 14 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "anA" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "anE" = ( /obj/structure/barricade/metal/wired{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "anF" = ( /obj/item/reagent_container/food/drinks/bottle/limejuice{ @@ -2709,10 +2284,7 @@ "anI" = ( /obj/structure/surface/table, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "anJ" = ( /obj/effect/decal/cleanable/dirt, @@ -2732,10 +2304,7 @@ pixel_y = -4 }, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "anU" = ( /obj/structure/surface/rack, @@ -2744,10 +2313,7 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "anV" = ( /obj/effect/decal/cleanable/blood{ @@ -2756,10 +2322,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/shiva/interior/colony/botany) "anX" = ( /obj/item/clothing/shoes/snow, @@ -2771,18 +2334,12 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/n_admin) "anY" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "anZ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -2803,28 +2360,19 @@ /area/shiva/interior/colony/medseceng) "aoi" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aop" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aor" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "aos" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aot" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, @@ -2832,33 +2380,22 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "aov" = ( /obj/structure/barricade/handrail/wire, /obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "aow" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "aoy" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "aoz" = ( /obj/structure/reagent_dispensers/water_cooler{ @@ -2866,41 +2403,28 @@ pixel_x = -10; pixel_y = 19 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "aoA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "aoB" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/shiva/interior/colony/botany) "aoK" = ( /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) "aoL" = ( /obj/item/storage/pouch/flare/full, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "aoP" = ( /obj/structure/closet/secure_closet/medical1{ req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "aoX" = ( /obj/effect/decal/warning_stripes{ @@ -2998,9 +2522,7 @@ "apk" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "apm" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -3012,25 +2534,17 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) "apv" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "apz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "apB" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "apD" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -3040,10 +2554,7 @@ /area/shiva/interior/caves/research_caves) "apE" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "apF" = ( /obj/effect/decal/cleanable/blood{ @@ -3062,26 +2573,17 @@ /area/shiva/exterior/cp_lz2) "apL" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/shiva/interior/colony/botany) "apO" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "apT" = ( /obj/item/ammo_casing{ icon_state = "casing_5" }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/shiva/interior/colony/botany) "apW" = ( /obj/structure/surface/table, @@ -3090,10 +2592,7 @@ pixel_x = 6; pixel_y = 10 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "apY" = ( /obj/structure/closet/crate/ammo, @@ -3105,9 +2604,7 @@ /obj/item/ammo_magazine/rifle/boltaction, /obj/item/ammo_magazine/rifle/boltaction, /obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "apZ" = ( /obj/structure/sink{ @@ -3115,9 +2612,7 @@ pixel_x = -11; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "aqb" = ( /obj/item/lightstick/red/spoke/planted{ @@ -3125,9 +2620,7 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aqc" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -3198,9 +2691,7 @@ /obj/structure/surface/rack, /obj/item/storage/box/lightstick/red, /obj/item/storage/box/lightstick/red, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "arh" = ( /obj/effect/decal/warning_stripes{ @@ -3252,25 +2743,18 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "arK" = ( /obj/structure/surface/table, /obj/item/circuitboard/apc, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) "arL" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "arN" = ( /obj/structure/prop/ice_colony/surveying_device{ @@ -3297,10 +2781,7 @@ "arU" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/research_hab) "arW" = ( /obj/effect/decal/cleanable/dirt, @@ -3328,20 +2809,14 @@ pixel_y = 24 }, /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "ase" = ( /obj/structure/bed/chair, /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "ash" = ( /obj/structure/prop/invuln/ice_prefab, @@ -3431,10 +2906,7 @@ pixel_y = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "asK" = ( /obj/structure/disposaloutlet{ @@ -3470,9 +2942,7 @@ "asU" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz1_console/two) "asW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -3529,43 +2999,31 @@ /area/shiva/exterior/cp_lz2) "aty" = ( /obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/shiva/interior/valley_huts/disposals) "atB" = ( /obj/item/ammo_magazine/shotgun/slugs{ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/shiva/interior/valley_huts/disposals) "atC" = ( /obj/item/trash/raisins, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/shiva/interior/valley_huts/disposals) "atD" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/shiva/interior/valley_huts/disposals) "atF" = ( /obj/item/evidencebag, /obj/item/trash/pistachios, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/shiva/interior/valley_huts/disposals) "atG" = ( /obj/item/trash/liquidfood, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/shiva/interior/valley_huts/disposals) "atH" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -3585,10 +3043,7 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "atT" = ( /obj/structure/surface/table, @@ -3600,38 +3055,24 @@ pixel_y = -13 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "aub" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "aud" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "aue" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/research_hab) "auf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/shiva/interior/valley_huts/disposals) "aug" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -3674,16 +3115,12 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "auM" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "auS" = ( /obj/structure/surface/table, @@ -3693,48 +3130,33 @@ }, /obj/item/reagent_container/food/snacks/hotchili, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "auT" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "auU" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northwest, /area/shiva/interior/valley_huts/disposals) "auV" = ( /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/shiva/interior/valley_huts/disposals) "auZ" = ( /obj/structure/machinery/door/window/northright, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/northeast, /area/shiva/interior/valley_huts/disposals) "ava" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "ave" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -3758,16 +3180,14 @@ pixel_x = 5; pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "avx" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 }, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "avz" = ( /obj/structure/surface/rack, /obj/item/bodybag/tarp/snow{ @@ -3785,24 +3205,17 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "awc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/shiva/interior/valley_huts/disposals) "awj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "awq" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Disposals" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/shiva/interior/valley_huts/disposals) "awr" = ( /obj/structure/largecrate/random/case/small, @@ -3817,9 +3230,7 @@ /obj/item/storage/belt/utility, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "awK" = ( /obj/structure/flora/bush/snow{ @@ -3853,9 +3264,7 @@ "axd" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "axe" = ( /obj/structure/flora/bush/snow{ @@ -3865,18 +3274,14 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "axf" = ( -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/n_admin) "axq" = ( /obj/item/ammo_magazine/rifle/boltaction{ pixel_x = -5; pixel_y = -9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "axt" = ( /obj/structure/surface/table, @@ -3884,22 +3289,14 @@ /obj/item/device/radio, /obj/item/storage/toolbox/emergency, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, /area/shiva/interior/valley_huts/disposals) "axv" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/darkbrowncorners2, /area/shiva/interior/valley_huts/disposals) "axw" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/shiva/interior/valley_huts/disposals) "axx" = ( /obj/structure/ice/ice_rock/cornerOverlay{ @@ -3922,48 +3319,33 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) "axG" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "axH" = ( /obj/structure/surface/table, /obj/item/storage/belt/utility, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/garage) "axI" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "axJ" = ( /turf/open/asphalt/cement, /area/shiva/interior/warehouse) "axK" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "axM" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "axN" = ( /obj/structure/machinery/door_control{ @@ -3980,25 +3362,16 @@ /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "axP" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/garage) "axQ" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/garage) "axR" = ( /obj/structure/machinery/light/double{ @@ -4007,58 +3380,41 @@ }, /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "axS" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick/red, /obj/effect/landmark/good_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southwest, /area/shiva/interior/valley_huts/disposals) "axT" = ( /obj/structure/surface/table, /obj/item/device/lightreplacer, /obj/item/clothing/mask/rebreather, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/shiva/interior/valley_huts/disposals) "axU" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/shiva/interior/valley_huts/disposals) "axV" = ( /obj/structure/machinery/light/double, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/shiva/interior/valley_huts/disposals) "axZ" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2, /area/shiva/interior/valley_huts/disposals) "ayb" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/device/flashlight/flare, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/southeast, /area/shiva/interior/valley_huts/disposals) "ayc" = ( /obj/item/lightstick/red/spoke/planted{ @@ -4080,27 +3436,19 @@ /obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "ayx" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/garage) "ayy" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/north, /area/shiva/interior/garage) "ayz" = ( /obj/structure/fence, @@ -4109,10 +3457,7 @@ "ayB" = ( /obj/structure/surface/table, /obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) "ayG" = ( /obj/structure/machinery/alarm{ @@ -4121,9 +3466,7 @@ /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "ayH" = ( /obj/item/clothing/shoes/snow, @@ -4181,17 +3524,12 @@ /obj/item/storage/toolbox/emergency, /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "aze" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "azf" = ( /obj/structure/machinery/light/double{ @@ -4201,25 +3539,18 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "azg" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick/red, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "azk" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) "azm" = ( /obj/vehicle/train/cargo/trolley, @@ -4228,26 +3559,19 @@ "azo" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "azp" = ( /obj/vehicle/train/cargo/engine, /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "azq" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) "azx" = ( /obj/structure/flora/tree/dead/tree_6, @@ -4270,35 +3594,24 @@ /area/shiva/exterior/cp_lz2) "azF" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "azH" = ( /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) "azI" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "azK" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "azM" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -4314,9 +3627,7 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "azS" = ( /obj/structure/surface/table, @@ -4329,47 +3640,33 @@ /area/shiva/interior/warehouse) "azY" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "azZ" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) "aAc" = ( /obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "aAg" = ( /obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "aAh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aAi" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "aAj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "aAl" = ( /obj/structure/machinery/alarm{ @@ -4386,35 +3683,24 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "aAp" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aAM" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "aBe" = ( /obj/item/bodybag, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "aBf" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aBi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -4434,24 +3720,18 @@ /area/shiva/interior/garage) "aBk" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aBl" = ( /obj/item/bodybag, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "aBm" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aBs" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -4459,18 +3739,14 @@ name = "\improper Colony Dormitories"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "aBt" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "aBA" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -4479,9 +3755,7 @@ /area/shiva/exterior/cp_lz2) "aBB" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "aBE" = ( /obj/effect/decal/warning_stripes{ @@ -4493,30 +3767,21 @@ /area/shiva/interior/colony/central) "aBK" = ( /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aBU" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aBV" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) "aBZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "aCb" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -4558,16 +3823,11 @@ /obj/structure/surface/table, /obj/item/clothing/mask/rebreather, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/garage) "aCw" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners, /area/shiva/interior/garage) "aCx" = ( /obj/structure/machinery/light/double, @@ -4575,9 +3835,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/garage) "aCy" = ( /obj/structure/surface/table, @@ -4590,21 +3848,13 @@ /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/garage) "aCA" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/garage) "aCB" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "aCC" = ( /obj/structure/largecrate/random/mini/med, @@ -4663,16 +3913,12 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 15 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aDq" = ( /obj/structure/largecrate/random, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aDu" = ( /turf/open/floor/interior/plastic, @@ -4695,9 +3941,7 @@ /obj/structure/closet/crate, /obj/item/tool/shovel/snow, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aDF" = ( /obj/structure/largecrate/random, @@ -4705,9 +3949,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aDG" = ( /obj/structure/machinery/door_control{ @@ -4717,9 +3959,7 @@ pixel_x = 24; specialfunctions = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aDH" = ( /obj/structure/machinery/door_control{ @@ -4748,9 +3988,7 @@ /area/shiva/exterior/cp_colony_grounds) "aDR" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aDS" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -4761,9 +3999,7 @@ /area/shiva/interior/valley_huts/no2) "aDW" = ( /obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aEd" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -4884,9 +4120,7 @@ pixel_x = 8 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aFs" = ( /obj/structure/machinery/door_control{ @@ -4901,16 +4135,11 @@ dir = 4; start_charge = 50 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) "aFu" = ( /obj/item/storage/pouch/firstaid/full/pills, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) "aFz" = ( /obj/structure/flora/tree/dead/tree_4, @@ -4953,15 +4182,11 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "aGb" = ( /obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/shiva/interior/aerodrome) "aGc" = ( /obj/structure/prop/structure_lattice{ @@ -4970,14 +4195,10 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/shiva/interior/aerodrome) "aGd" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/shiva/interior/aerodrome) "aGe" = ( /obj/structure/prop/structure_lattice{ @@ -4986,9 +4207,7 @@ icon = 'icons/turf/elevator.dmi'; icon_state = "wall_broke" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/shiva/interior/aerodrome) "aGf" = ( /obj/effect/decal/cleanable/dirt, @@ -5045,9 +4264,7 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aHB" = ( /obj/structure/flora/bush/snow{ @@ -5065,9 +4282,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aIh" = ( /obj/effect/decal/cleanable/dirt, @@ -5077,9 +4292,7 @@ "aIv" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "aIG" = ( /obj/item/weapon/wirerod, @@ -5087,16 +4300,12 @@ /area/shiva/interior/aerodrome) "aJc" = ( /obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aJe" = ( /obj/effect/spawner/random/toolbox, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) "aJj" = ( /obj/item/weapon/throwing_knife, @@ -5104,39 +4313,28 @@ /area/shiva/interior/aerodrome) "aJk" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/shiva/interior/aerodrome) "aJn" = ( /obj/item/frame/table, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "aJy" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "aJB" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/shiva/interior/colony/central) "aJE" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "aJF" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aJG" = ( /obj/structure/flora/tree/dead/tree_4, @@ -5151,9 +4349,7 @@ pixel_x = 6; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aJU" = ( /obj/structure/bed/chair/office/light{ @@ -5186,18 +4382,14 @@ /area/shiva/interior/colony/medseceng) "aKv" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "aKJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Anti-Freeze Lounge" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aKK" = ( /obj/effect/decal/cleanable/blood, @@ -5212,9 +4404,7 @@ "aKQ" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aKR" = ( /obj/structure/bed/chair{ @@ -5227,15 +4417,11 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aLk" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aLs" = ( /obj/structure/surface/table/reinforced/prison, @@ -5265,19 +4451,14 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "aLB" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/s_admin) "aLD" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) "aLG" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "aLJ" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -5316,9 +4497,7 @@ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aMu" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ @@ -5334,16 +4513,11 @@ /obj/structure/sign/goldenplaque{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "aMx" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "aMz" = ( /obj/structure/machinery/smartfridge{ @@ -5352,9 +4526,7 @@ }, /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aMA" = ( /obj/structure/bed/chair{ @@ -5424,9 +4596,7 @@ /obj/structure/surface/table/woodentable, /obj/item/trash/chunk, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aMW" = ( /obj/vehicle/train/cargo/trolley, @@ -5442,16 +4612,11 @@ /obj/item/spacecash/c1000, /obj/item/spacecash/c500, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "aNd" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "aNe" = ( /obj/effect/spawner/random/toolbox, @@ -5459,9 +4624,7 @@ /area/shiva/exterior/junkyard/cp_bar) "aNf" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "aNg" = ( /obj/structure/bed/chair/office/light{ @@ -5495,16 +4658,11 @@ "aNp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "aNq" = ( /obj/item/stool, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aNy" = ( /obj/structure/platform/strata{ @@ -5523,17 +4681,11 @@ "aNL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "aNN" = ( /obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "aNP" = ( /turf/closed/shuttle/elevator/button/research, @@ -5555,9 +4707,7 @@ pixel_x = 8 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aOg" = ( /obj/structure/machinery/colony_floodlight, @@ -5578,9 +4728,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "aOW" = ( /turf/closed/wall/shiva/prefabricated, @@ -5617,27 +4765,18 @@ /obj/item/ammo_magazine/shotgun/buckshot{ pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "aPh" = ( /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "aPi" = ( /obj/item/paper/research_notes/bad{ pixel_x = 11; pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "aPj" = ( /obj/structure/surface/table/woodentable, @@ -5649,9 +4788,7 @@ pixel_x = 6; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aPk" = ( /obj/item/lightstick/red/spoke/planted{ @@ -5681,23 +4818,15 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) "aQb" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/s_admin) "aQg" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "aQi" = ( /obj/structure/largecrate/random/barrel/red, @@ -5767,9 +4896,7 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "aRz" = ( /obj/structure/ice/thin/indestructible{ @@ -5815,10 +4942,7 @@ /obj/item/ammo_magazine/rifle/boltaction, /obj/item/ammo_magazine/rifle/boltaction, /obj/item/storage/belt/marine, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "aSi" = ( /turf/open/auto_turf/snow/layer0, @@ -5848,9 +4972,7 @@ /area/shiva/interior/aerodrome) "aSI" = ( /obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "aSJ" = ( /obj/structure/prop/invuln{ @@ -5961,9 +5083,7 @@ "aTT" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "aTY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -5982,9 +5102,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aUd" = ( /turf/closed/wall/shiva/ice, @@ -5993,9 +5111,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "aUt" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -6033,17 +5149,11 @@ /turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) "aUM" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) "aUS" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/research_hab) "aUT" = ( /obj/structure/surface/table, @@ -6052,9 +5162,7 @@ pixel_y = 2 }, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "aUU" = ( /obj/structure/machinery/light/double{ @@ -6064,18 +5172,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "aUX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "aUY" = ( /obj/structure/machinery/light/double{ @@ -6085,26 +5188,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "aVc" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "aVm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "aVn" = ( /obj/structure/reagent_dispensers/beerkeg, @@ -6161,10 +5257,7 @@ /obj/structure/surface/table, /obj/item/tool/crowbar/red, /obj/item/device/flash, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "aVL" = ( /turf/open/shuttle/can_surgery/black, @@ -6211,10 +5304,7 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "aVU" = ( /obj/item/stack/sheet/metal, @@ -6223,42 +5313,32 @@ "aWb" = ( /obj/structure/foamed_metal, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aWs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "aWv" = ( /obj/structure/machinery/landinglight/ds2, /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aWB" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "aWC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "aWD" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -6331,9 +5411,7 @@ /area/shiva/interior/aerodrome) "aXa" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "aXb" = ( /obj/structure/prop/ice_colony/soil_net, @@ -6351,10 +5429,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "aXi" = ( /obj/structure/ice/thin/indestructible{ @@ -6387,19 +5462,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "aXH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "aXI" = ( /obj/structure/ice/thin/indestructible{ @@ -6424,9 +5493,7 @@ /area/shiva/exterior/cp_lz2) "aXZ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "aYd" = ( /turf/closed/shuttle/ert{ @@ -6445,10 +5512,7 @@ /area/shiva/interior/aerodrome) "aYU" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) "aZg" = ( /obj/structure/largecrate/random/case/double, @@ -6466,16 +5530,11 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "aZw" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/shiva/interior/colony/n_admin) "aZA" = ( /obj/structure/surface/rack, @@ -6499,10 +5558,7 @@ name = "\improper Colony Dormitories"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/shiva/interior/colony/botany) "bag" = ( /obj/structure/ice/thin/indestructible{ @@ -6529,10 +5585,7 @@ /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) "bai" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/north, /area/shiva/exterior/junkyard/fortbiceps) "bar" = ( /obj/item/trash/tray, @@ -6562,15 +5615,11 @@ /area/shiva/interior/colony/n_admin) "baV" = ( /obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "baW" = ( /obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "baX" = ( /turf/closed/shuttle/ert{ @@ -6612,10 +5661,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/deck) "bbG" = ( /obj/structure/ice/thin/indestructible{ @@ -6661,10 +5707,6 @@ opacity = 0 }, /area/shiva/interior/aerodrome) -"bcM" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) "bcV" = ( /obj/structure/platform/strata{ dir = 1 @@ -6675,9 +5717,7 @@ /turf/open/gm/river, /area/shiva/interior/warehouse/caves) "bdT" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/colony/medseceng) "ben" = ( /turf/open/auto_turf/snow/layer1, @@ -6699,10 +5739,7 @@ /area/shiva/interior/aerodrome) "beP" = ( /obj/item/clothing/under/rank/janitor, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "beQ" = ( /turf/closed/shuttle/elevator, @@ -6733,9 +5770,7 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "bfL" = ( /obj/structure/largecrate/random/mini/wooden, @@ -6751,10 +5786,7 @@ "bfR" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "bga" = ( /obj/structure/prop/dam/truck{ @@ -6774,29 +5806,21 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) "bhI" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) "bhN" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "bhS" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "bhY" = ( /obj/structure/machinery/door_control/brbutton{ id = "nlz_shutters"; pixel_y = 28 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "biM" = ( /turf/open/floor/carpet, @@ -6818,9 +5842,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "bks" = ( /obj/structure/morgue{ @@ -6839,16 +5861,11 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) "blI" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/telecomm/lz1_biceps) "blP" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/shiva/interior/colony/botany) "bme" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -6871,9 +5888,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "bnm" = ( /obj/structure/surface/rack, @@ -6881,9 +5896,7 @@ amount = 50 }, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "bnD" = ( /obj/item/lightstick/planted, @@ -6909,24 +5922,17 @@ /obj/structure/largecrate/random/mini/wooden{ pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "boW" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) "bpH" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) "bqy" = ( /obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/research_hab) "bqN" = ( /obj/structure/machinery/door/airlock/almayer/generic, @@ -6937,9 +5943,7 @@ /turf/open/asphalt/cement, /area/shiva/interior/warehouse) "bsp" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/deck) "bsw" = ( /obj/effect/landmark/corpsespawner/bridgeofficer, @@ -6952,10 +5956,7 @@ /turf/open/floor/plating, /area/shiva/interior/aerodrome) "bsM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/shiva/exterior/cp_lz2) "bsN" = ( /obj/item/stack/sheet/metal, @@ -6979,17 +5980,12 @@ pixel_x = 11; pixel_y = 20 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "btQ" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/central) "buJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -7014,15 +6010,11 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "bwb" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "bwk" = ( /obj/structure/platform/shiva/catwalk{ @@ -7041,16 +6033,10 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/garage) "bwJ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/aux_power) "bwP" = ( /obj/structure/flora/tree/dead/tree_6, @@ -7062,27 +6048,21 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "bxL" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/under/overalls, /obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "bxW" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "byr" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -7097,25 +6077,19 @@ /obj/structure/surface/table, /obj/item/storage/box/pizza, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "byK" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "bzh" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "bzK" = ( /obj/effect/landmark/hunter_secondary, @@ -7124,10 +6098,7 @@ "bzZ" = ( /obj/structure/surface/rack, /obj/item/circuitboard/airalarm, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "bAn" = ( /obj/structure/surface/table/woodentable, @@ -7138,9 +6109,7 @@ /area/shiva/interior/bar) "bAv" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "bAK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -7154,15 +6123,11 @@ /obj/structure/platform_decoration/shiva/catwalk{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "bBs" = ( /obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "bBB" = ( /obj/structure/largecrate/random/barrel, @@ -7201,9 +6166,7 @@ dir = 4; start_charge = 10 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "bFS" = ( /obj/structure/platform/shiva/catwalk{ @@ -7226,25 +6189,21 @@ /area/shiva/exterior/cp_lz2) "bHf" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "bHx" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11; pixel_y = 20 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "bHC" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "bHN" = ( /obj/item/ammo_magazine/rifle/boltaction{ pixel_x = -7; @@ -7253,9 +6212,7 @@ /obj/structure/barricade/metal{ layer = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "bHZ" = ( /obj/structure/platform/strata{ @@ -7281,15 +6238,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "bJi" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "bJj" = ( /turf/open/auto_turf/ice/layer1, @@ -7300,10 +6252,7 @@ }, /area/shiva/interior/colony/central) "bJF" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "bKF" = ( /obj/item/lightstick/red/spoke/planted{ @@ -7341,9 +6290,7 @@ pixel_x = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "bMW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -7357,18 +6304,13 @@ /obj/structure/prop/ice_colony/dense/ice_tray{ pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "bNN" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "bOh" = ( /obj/effect/landmark/survivor_spawner, @@ -7381,10 +6323,7 @@ "bPJ" = ( /obj/item/storage/box/donkpockets, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "bQv" = ( /obj/structure/flora/bush/snow{ @@ -7397,19 +6336,14 @@ icon_state = "S" }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "bQR" = ( /obj/structure/surface/table, /obj/item/tool/stamp{ icon_state = "stamp-ce" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "bQZ" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -7444,9 +6378,7 @@ /area/shiva/interior/telecomm/lz1_biceps) "bTV" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "bUe" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -7457,10 +6389,7 @@ "bUO" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "bUU" = ( /obj/structure/prop/dam/truck{ @@ -7472,28 +6401,20 @@ /area/shiva/exterior/junkyard) "bUX" = ( /obj/item/storage/belt/gun/m44, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "bVb" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "bVr" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/item/weapon/gun/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "bVz" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -7538,15 +6459,11 @@ /obj/structure/machinery/m56d_hmg{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "bYd" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/garage) "bYk" = ( /obj/structure/closet/secure_closet/medical3{ @@ -7555,9 +6472,7 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "bYO" = ( /obj/structure/prop/invuln{ @@ -7573,9 +6488,7 @@ /area/shiva/interior/aerodrome) "bYS" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/central) "bYV" = ( /obj/structure/machinery/disposal, @@ -7583,15 +6496,11 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "bZZ" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "caS" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -7613,9 +6522,7 @@ /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "cbC" = ( /obj/structure/machinery/light/double{ @@ -7623,9 +6530,7 @@ pixel_y = -5 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "cbG" = ( /obj/effect/spawner/random/tool, @@ -7636,9 +6541,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) "cce" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "ccu" = ( /obj/structure/machinery/power/apc, @@ -7667,17 +6570,13 @@ /turf/open/floor/plating, /area/shiva/interior/aerodrome) "ceM" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/cp_lz2) "ceS" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "cgd" = ( /obj/item/lightstick/red/spoke/planted{ @@ -7698,10 +6597,7 @@ /obj/item/device/taperecorder, /obj/item/clothing/glasses/sunglasses, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "cgR" = ( /obj/structure/platform_decoration/strata, @@ -7709,15 +6605,10 @@ /area/shiva/exterior/junkyard/cp_bar) "chq" = ( /obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "chU" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "cid" = ( /obj/structure/platform/strata{ @@ -7727,9 +6618,7 @@ /turf/open/gm/river, /area/shiva/exterior/cp_s_research) "cio" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/warehouse) "ciL" = ( /obj/structure/inflatable/popped, @@ -7749,10 +6638,7 @@ pixel_x = -3; pixel_y = 18 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "clp" = ( /obj/item/tool/weldingtool, @@ -7762,10 +6648,7 @@ /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access_txt = "102" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/medseceng) "cnb" = ( /turf/open/auto_turf/snow/layer1, @@ -7778,10 +6661,7 @@ /area/shiva/exterior/junkyard/cp_bar) "cnk" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "cnt" = ( /obj/structure/largecrate/random/secure, @@ -7790,9 +6670,7 @@ "coj" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "cos" = ( /obj/item/lightstick/red/spoke/planted{ @@ -7819,10 +6697,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "cps" = ( /obj/effect/decal/cleanable/blood{ @@ -7855,10 +6730,7 @@ "crk" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "crF" = ( /turf/open/floor/plating/plating_catwalk/shiva, @@ -7866,9 +6738,7 @@ "crN" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "cse" = ( /obj/effect/decal/warning_stripes{ @@ -7880,9 +6750,7 @@ /turf/open/floor/wood, /area/shiva/interior/colony/central) "cso" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/shiva/interior/colony/medseceng) "csu" = ( /obj/structure/largecrate/random, @@ -7890,26 +6758,17 @@ /area/shiva/interior/colony/central) "ctk" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "ctz" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "ctC" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "ctJ" = ( -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/garage) "cur" = ( /obj/structure/machinery/space_heater, @@ -7963,10 +6822,7 @@ /obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/botany) "czf" = ( /obj/structure/flora/bush/snow{ @@ -7976,15 +6832,11 @@ /area/shiva/exterior/cp_colony_grounds) "czH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "czI" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/shiva/interior/caves/research_caves) "cAH" = ( /obj/structure/flora/tree/dead/tree_5, @@ -8001,10 +6853,7 @@ /turf/open/floor/wood, /area/shiva/interior/bar) "cBe" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "cBB" = ( /obj/item/clothing/shoes/snow, @@ -8019,16 +6868,11 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "cBF" = ( /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "cBG" = ( /obj/structure/machinery/vending/coffee, @@ -8036,19 +6880,14 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "cBL" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/shiva, /area/shiva/interior/bar) "cCI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/shiva/interior/colony/n_admin) "cDN" = ( /obj/structure/largecrate/random/case/small{ @@ -8064,18 +6903,14 @@ /area/shiva/interior/colony/research_hab) "cEk" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "cFa" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "cFQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -8115,17 +6950,12 @@ pixel_x = 10; pixel_y = 12 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "cHB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/circuitboard, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "cIa" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -8162,16 +6992,11 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) "cJu" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/aux_power) "cJy" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "cJC" = ( /obj/structure/platform/strata{ @@ -8184,16 +7009,11 @@ /area/shiva/interior/colony/deck) "cKB" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "cKE" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) "cKL" = ( /turf/open/auto_turf/snow/layer4, @@ -8205,16 +7025,11 @@ /obj/structure/surface/table, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "cLq" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "cLx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -8247,10 +7062,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/shiva/interior/colony/n_admin) "cOq" = ( /obj/effect/decal/cleanable/blood/drip, @@ -8267,9 +7079,7 @@ /obj/structure/surface/table, /obj/item/key/cargo_train, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "cPK" = ( /obj/item/clothing/shoes/snow, @@ -8284,17 +7094,11 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/exterior/cp_colony_grounds) "cQB" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "cQW" = ( /turf/open/floor/plating, @@ -8309,10 +7113,7 @@ /area/shiva/exterior/cp_lz2) "cRs" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) "cRP" = ( /obj/structure/surface/table/woodentable, @@ -8322,10 +7123,7 @@ /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "cSn" = ( /obj/structure/closet/secure_closet/guncabinet, @@ -8335,10 +7133,7 @@ /obj/item/ammo_magazine/rifle/m41aMK1, /obj/item/storage/belt/marine, /obj/item/clothing/suit/armor/riot/marine, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "cTh" = ( /obj/item/lightstick/red/spoke/planted{ @@ -8350,15 +7145,10 @@ "cTo" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "cTu" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluecorners" - }, +/turf/open/floor/shiva/bluecorners/west, /area/shiva/interior/colony/central) "cTU" = ( /obj/effect/decal/cleanable/blood/drip, @@ -8369,14 +7159,10 @@ /area/shiva/exterior/lz1_valley) "cTY" = ( /obj/item/ammo_magazine/flamer_tank, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "cUl" = ( -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/telecomm/lz1_biceps) "cUQ" = ( /obj/effect/decal/warning_stripes{ @@ -8385,18 +7171,13 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "cUS" = ( -/turf/open/floor/shiva{ - icon_state = "greencorners" - }, +/turf/open/floor/shiva/greencorners, /area/shiva/interior/colony/botany) "cVy" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "cVM" = ( /obj/item/lightstick/red/spoke/planted{ @@ -8433,9 +7214,7 @@ "cXm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "cXM" = ( /obj/effect/decal/warning_stripes{ @@ -8464,10 +7243,7 @@ /turf/open/gm/river, /area/shiva/exterior/cp_s_research) "cYa" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "cYc" = ( /obj/structure/window/reinforced/tinted{ @@ -8477,9 +7253,7 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "cYz" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -8502,9 +7276,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "cYT" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -8517,9 +7289,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "cZk" = ( /turf/open/auto_turf/snow/layer2, @@ -8543,10 +7313,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "cZZ" = ( /obj/structure/bed/chair/wood/normal, @@ -8575,9 +7342,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "dcn" = ( /obj/item/lightstick/red/spoke/planted{ @@ -8605,9 +7370,7 @@ /obj/item/reagent_container/food/drinks/cans/thirteenloko{ pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "dex" = ( /obj/structure/machinery/photocopier, @@ -8624,10 +7387,7 @@ /area/shiva/interior/aerodrome) "dgb" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) "dgF" = ( /obj/structure/barricade/handrail/wire{ @@ -8660,9 +7420,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/botany) "djJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -8678,15 +7436,11 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "djO" = ( /obj/item/stool, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "dkv" = ( /obj/structure/largecrate/random/mini/med, @@ -8696,9 +7450,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "dkI" = ( /obj/structure/barricade/handrail/wire{ @@ -8707,9 +7459,7 @@ /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "dkP" = ( /obj/structure/barricade/metal{ @@ -8755,11 +7505,6 @@ /obj/item/storage/box/lightstick/red, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"doc" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/shiva/interior/colony/central) "doJ" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -8787,9 +7532,7 @@ pixel_x = -5; pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "dqW" = ( /obj/structure/surface/table/woodentable, @@ -8805,10 +7548,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "drM" = ( /obj/effect/spawner/random/toolbox, @@ -8822,15 +7562,11 @@ /area/shiva/interior/aerodrome) "dsD" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "dsY" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "dtq" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -8840,17 +7576,13 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "dtE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "dtZ" = ( /obj/structure/barricade/wooden{ @@ -8860,10 +7592,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/bar) "dug" = ( /obj/item/reagent_container/food/drinks/bottle/rum, @@ -8876,9 +7605,7 @@ /turf/open/floor/wood, /area/shiva/interior/colony/botany) "duv" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/n_admin) "dvg" = ( /obj/item/tool/warning_cone{ @@ -8899,10 +7626,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "dwQ" = ( /turf/open/floor/plating, @@ -8911,9 +7635,7 @@ /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "dxS" = ( /turf/open/auto_turf/ice/layer2, @@ -8936,10 +7658,7 @@ /area/shiva/exterior/junkyard) "dAi" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/exterior/cp_lz2) "dAt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -8949,9 +7668,7 @@ /obj/item/reagent_container/glass/beaker/cryopredmix{ pixel_x = -10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "dBK" = ( /obj/structure/surface/table, @@ -8959,15 +7676,11 @@ pixel_x = -4; pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "dCo" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "dCS" = ( /turf/closed/shuttle/ert{ @@ -8980,18 +7693,13 @@ /area/shiva/interior/caves/cp_camp) "dDo" = ( /obj/structure/machinery/landinglight/ds1/spoke, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "dEH" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "dGs" = ( /obj/structure/barricade/snow, @@ -9002,16 +7710,11 @@ /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/mechanical, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "dIF" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "dJl" = ( /obj/item/lightstick/planted, @@ -9056,39 +7759,27 @@ /area/shiva/interior/warehouse) "dLk" = ( /obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "dMo" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "dMy" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shiva/interior/colony/deck) "dOf" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/east, /area/shiva/interior/colony/deck) "dOo" = ( /obj/structure/machinery/door_control/brbutton{ id = "nlz_shutters"; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "dOs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -9120,18 +7811,14 @@ /obj/item/tool/mop{ pixel_x = -10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "dQq" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) "dQF" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "dQZ" = ( /obj/structure/window/reinforced/tinted{ @@ -9141,9 +7828,7 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "dRb" = ( /obj/structure/fence, @@ -9157,16 +7842,10 @@ /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "dTU" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "dVw" = ( /obj/structure/machinery/power/apc{ @@ -9176,10 +7855,7 @@ /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) "dWp" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/medseceng) "dWw" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -9203,10 +7879,7 @@ /area/shiva/interior/colony/central) "dWM" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "dWO" = ( /obj/structure/surface/rack, @@ -9217,21 +7890,14 @@ /obj/item/weapon/ice_axe/red{ pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/warehouse/caves) "dXc" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "dXp" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/bar) "dYi" = ( /obj/item/lightstick/red/spoke/planted{ @@ -9241,9 +7907,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) "dYm" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/cp_colony_grounds) "dYp" = ( /turf/closed/wall/shiva/ice, @@ -9261,16 +7925,11 @@ /obj/item/ammo_magazine/rifle/boltaction, /obj/item/ammo_magazine/rifle/boltaction, /obj/item/storage/belt/marine, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "dZN" = ( /obj/item/newspaper, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "eaa" = ( /obj/structure/closet/fireaxecabinet{ @@ -9302,9 +7961,7 @@ pixel_x = -12; pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "ebK" = ( /obj/structure/fence, @@ -9325,30 +7982,21 @@ /obj/structure/closet/crate/trashcart, /obj/item/clothing/under/marine/veteran/mercenary, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "ecx" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/cp_camp) "ecz" = ( /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) "ecZ" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "edw" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/exterior/cp_lz2) "edW" = ( /obj/structure/machinery/power/apc{ @@ -9359,9 +8007,7 @@ /area/shiva/exterior/cp_colony_grounds) "eep" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "eeD" = ( /obj/structure/platform_decoration/strata{ @@ -9396,7 +8042,7 @@ dir = 1 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "eit" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, @@ -9405,14 +8051,10 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) "ejt" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "ejF" = ( /obj/item/ammo_magazine/handful/shotgun/incendiary, @@ -9439,10 +8081,7 @@ pixel_x = -5; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "elw" = ( /obj/item/stack/rods, @@ -9457,9 +8096,7 @@ /turf/open/floor/prison, /area/shiva/interior/bar) "emd" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/botany) "emq" = ( /obj/structure/filingcabinet{ @@ -9471,15 +8108,11 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "emy" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/aux_power) "enc" = ( /obj/structure/prop/invuln/ice_prefab, @@ -9504,10 +8137,7 @@ /area/shiva/interior/caves/research_caves) "eoG" = ( /obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "eoH" = ( /obj/structure/largecrate/random/case/double, @@ -9524,36 +8154,25 @@ dir = 4 }, /obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/shiva/interior/lz2_habs) "epp" = ( /obj/item/stool{ pixel_x = 4; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/exterior/cp_lz2) "eqD" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) "eqY" = ( /obj/structure/toilet, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "erc" = ( /obj/effect/decal/warning_stripes{ @@ -9586,22 +8205,15 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 28 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "etV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/reagent_scanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "euA" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "euZ" = ( /obj/structure/filingcabinet, @@ -9613,9 +8225,7 @@ /obj/item/stack/cable_coil, /obj/item/storage/box/engineer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ewa" = ( /turf/open/auto_turf/snow/layer2, @@ -9639,15 +8249,10 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "exX" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/warehouse) "eyx" = ( /obj/structure/bed/chair{ @@ -9671,10 +8276,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "eBG" = ( /obj/structure/barricade/wooden, @@ -9682,9 +8284,7 @@ /area/shiva/interior/colony/research_hab) "eBU" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "eBZ" = ( /obj/structure/machinery/alarm{ @@ -9692,9 +8292,7 @@ pixel_x = -24 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "eCg" = ( /obj/structure/closet/crate/freezer/rations, @@ -9704,9 +8302,7 @@ /obj/item/reagent_container/food/condiment/coldsauce, /obj/item/reagent_container/food/condiment/coldsauce, /obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "eCr" = ( /obj/structure/flora/tree/dead/tree_3, @@ -9727,15 +8323,11 @@ /obj/item/paper/research_notes, /obj/item/paper_bin, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "eFG" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "eFI" = ( /obj/effect/decal/cleanable/blood/drip, @@ -9743,9 +8335,7 @@ /area/shiva/interior/caves/cp_camp) "eFQ" = ( /obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "eGq" = ( /obj/structure/platform/strata, @@ -9779,16 +8369,11 @@ /obj/item/ammo_magazine/rifle/extended, /obj/item/ammo_magazine/rifle, /obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "eHp" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) "eHL" = ( /obj/item/tool/wrench, @@ -9806,19 +8391,14 @@ /obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "eIe" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "eIH" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, @@ -9826,17 +8406,12 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "eKY" = ( /obj/structure/closet/radiation, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "eMh" = ( /obj/structure/prop/ice_colony/flamingo{ @@ -9852,16 +8427,11 @@ /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "eNv" = ( /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "eOG" = ( /obj/structure/closet/secure_closet/guncabinet, @@ -9874,10 +8444,7 @@ /obj/item/ammo_magazine/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "eOK" = ( /obj/structure/closet/cabinet, @@ -9906,9 +8473,7 @@ /obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen, /obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, /obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/cp_lz2) "eRk" = ( /obj/structure/barricade/sandbags/wired{ @@ -9916,9 +8481,7 @@ icon_state = "sandbag_0" }, /obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "eRE" = ( /obj/item/tool/wirecutters, @@ -9929,9 +8492,7 @@ dir = 4; flipped = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "eSf" = ( /obj/item/lightstick/red/spoke/planted{ @@ -9943,10 +8504,7 @@ /area/shiva/interior/caves/cp_camp) "eSt" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "eSK" = ( /obj/item/lightstick/red/spoke/planted, @@ -9955,7 +8513,7 @@ "eSN" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "eTV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" @@ -9975,9 +8533,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "eVG" = ( /obj/structure/largecrate/random, @@ -9993,10 +8549,7 @@ "eVX" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/exterior/cp_lz2) "eWl" = ( /obj/structure/inflatable/popped, @@ -10004,10 +8557,7 @@ /area/shiva/exterior/cp_s_research) "eWn" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "eWB" = ( /turf/open/floor/plating, @@ -10015,10 +8565,7 @@ "eXL" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "eXN" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -10035,16 +8582,12 @@ /area/shiva/exterior/cp_lz2) "eZX" = ( /obj/item/tool/soap, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "far" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "faA" = ( /turf/open/auto_turf/snow/layer0, @@ -10078,9 +8621,7 @@ /obj/structure/closet/crate/trashcart, /obj/item/clothing/under/marine/veteran/mercenary/support, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "fbS" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -10090,9 +8631,7 @@ "fcq" = ( /obj/structure/closet/coffin, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "fcy" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -10105,33 +8644,25 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/n_admin) "fcL" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/exterior/cp_colony_grounds) "fel" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/central) "feA" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/bottle/vodka{ pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "feR" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) "ffg" = ( /obj/effect/landmark/nightmare{ @@ -10145,24 +8676,17 @@ }, /area/shiva/interior/colony/central) "ffn" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/aux_power) "ffo" = ( /obj/structure/surface/rack, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/garage) "ffw" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "fgB" = ( /obj/item/stack/sheet/metal, @@ -10189,9 +8713,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "fhv" = ( /obj/item/tool/wrench, @@ -10199,9 +8721,7 @@ /area/shiva/interior/aerodrome) "fir" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "fiK" = ( /turf/open/floor/wood, @@ -10215,10 +8735,7 @@ dir = 10; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "fjs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -10235,10 +8752,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "fjS" = ( /obj/structure/surface/rack, @@ -10265,9 +8779,7 @@ dir = 8 }, /obj/structure/machinery/door/window/westleft, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "fkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -10275,18 +8787,14 @@ /area/shiva/exterior/cp_s_research) "fkF" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "fkP" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = -2; pixel_y = -8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "flN" = ( /turf/open/auto_turf/ice/layer1, @@ -10297,9 +8805,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "fmi" = ( /obj/structure/bed, @@ -10321,10 +8827,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) "fnx" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/exterior/cp_lz2) "fnG" = ( /obj/structure/barricade/snow{ @@ -10361,9 +8864,7 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "frj" = ( /obj/item/tool/shovel/snow, @@ -10389,9 +8890,7 @@ /area/shiva/interior/bar) "ftm" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "ftr" = ( /obj/structure/closet/secure_closet/security_empty, @@ -10410,10 +8909,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "fuz" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -10425,16 +8921,11 @@ /obj/structure/bed/chair/comfy/beige{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "fww" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "fwU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -10449,9 +8940,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "fxy" = ( /obj/item/lightstick/variant/planted, @@ -10462,9 +8951,7 @@ /obj/item/clipboard{ pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "fyC" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -10479,16 +8966,11 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "fze" = ( /obj/item/frame/apc, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "fzm" = ( /turf/open/auto_turf/ice/layer2, @@ -10496,9 +8978,7 @@ "fzA" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) "fzF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -10513,9 +8993,7 @@ "fBg" = ( /obj/structure/closet/wardrobe/green, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/n_admin) "fBA" = ( /obj/structure/machinery/space_heater, @@ -10529,10 +9007,7 @@ /area/shiva/interior/colony/s_admin) "fBQ" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "fCs" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -10542,9 +9017,7 @@ /obj/structure/surface/table, /obj/item/storage/box/donkpockets, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "fDH" = ( /obj/structure/machinery/colony_floodlight, @@ -10552,10 +9025,7 @@ /area/shiva/exterior/junkyard) "fEf" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) "fEl" = ( /obj/structure/platform/strata{ @@ -10568,10 +9038,7 @@ /turf/open/floor/shiva, /area/shiva/interior/bar) "fEO" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/west, /area/shiva/interior/garage) "fEU" = ( /turf/open/auto_turf/ice/layer1, @@ -10580,9 +9047,7 @@ /obj/structure/surface/table, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "fFf" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -10613,15 +9078,10 @@ /obj/structure/surface/table, /obj/item/bodybag/cryobag, /obj/item/storage/box/syringes, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "fGb" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/caves/cp_camp) "fGl" = ( /obj/item/shard{ @@ -10652,9 +9112,7 @@ /area/shiva/exterior/junkyard) "fHH" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "fHM" = ( /obj/item/stool, @@ -10662,10 +9120,7 @@ /area/shiva/interior/colony/research_hab) "fHQ" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "fIz" = ( /obj/structure/closet/secure_closet/engineering_electrical, @@ -10673,9 +9128,7 @@ /obj/item/circuitboard/apc, /obj/item/circuitboard/apc, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "fII" = ( /obj/item/lightstick/red/spoke/planted{ @@ -10700,9 +9153,7 @@ "fJw" = ( /obj/structure/surface/table, /obj/item/device/camera, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "fKb" = ( /obj/structure/fence, @@ -10710,9 +9161,7 @@ /area/shiva/exterior/lz1_valley) "fKx" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/n_admin) "fKy" = ( /obj/item/tool/pen/blue{ @@ -10740,9 +9189,7 @@ /obj/structure/surface/table, /obj/item/storage/box/bodybags, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "fLi" = ( /obj/item/tool/shovel/snow, @@ -10775,26 +9222,19 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "fLX" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/s_lz2) "fMe" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "fMq" = ( /obj/vehicle/train/cargo/engine, @@ -10804,9 +9244,7 @@ /area/shiva/interior/warehouse) "fMG" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "fMO" = ( /obj/structure/bed/chair/office/dark, @@ -10833,9 +9271,7 @@ /area/shiva/interior/caves/cp_camp) "fOE" = ( /obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "fPA" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -10846,18 +9282,13 @@ "fPD" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "fQX" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) "fRg" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "fSc" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -10880,9 +9311,7 @@ }, /obj/item/cell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "fSt" = ( /obj/item/clothing/shoes/snow, @@ -10891,26 +9320,18 @@ /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "fTX" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "fUP" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "fUZ" = ( /obj/item/lightstick/red/planted, @@ -10930,21 +9351,15 @@ /area/shiva/interior/caves/cp_camp) "fVI" = ( /obj/structure/bed/roller, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "fVR" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "fWb" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "fWq" = ( /obj/structure/machinery/door_control/brbutton/alt{ @@ -10956,9 +9371,7 @@ pixel_x = -12; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "fXp" = ( /obj/structure/prop/invuln{ @@ -10996,9 +9409,7 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "fYW" = ( /obj/structure/surface/table/reinforced/prison, @@ -11008,30 +9419,20 @@ /obj/item/reagent_container/food/snacks/hotchili{ pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "fZz" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "fZP" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibhead" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "fZR" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) "gaz" = ( /turf/open/auto_turf/ice/layer2, @@ -11049,16 +9450,12 @@ /area/shiva/interior/caves/right_spiders) "gbC" = ( /obj/structure/machinery/smartfridge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "gcF" = ( /obj/structure/closet/coffin, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "gcK" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -11074,15 +9471,11 @@ "gcP" = ( /obj/structure/bed/chair/wheelchair, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "gdk" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "gdU" = ( /obj/structure/barricade/wooden{ @@ -11099,20 +9492,14 @@ pixel_x = 24 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "geE" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/junkyard) "geS" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "ggh" = ( /obj/effect/decal/cleanable/dirt, @@ -11134,10 +9521,7 @@ /area/shiva/interior/caves/cp_camp) "ggL" = ( /obj/structure/inflatable/popped, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "gha" = ( /obj/effect/landmark/xeno_spawn, @@ -11149,10 +9533,7 @@ /area/shiva/interior/colony/research_hab) "ghK" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "ghS" = ( /obj/structure/surface/table, @@ -11162,10 +9543,7 @@ "ghU" = ( /obj/structure/closet/crate/trashcart, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "gik" = ( /turf/open/auto_turf/snow/layer0, @@ -11183,16 +9561,10 @@ /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) "gjg" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wredcorners" - }, +/turf/open/floor/shiva/wredcorners/north, /area/shiva/interior/colony/medseceng) "gjY" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/shiva/interior/colony/botany) "gkv" = ( /turf/open/auto_turf/ice/layer1, @@ -11205,16 +9577,11 @@ /area/shiva/exterior/cp_colony_grounds) "gkK" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "gkL" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "gkY" = ( /turf/open/floor/plating, @@ -11222,9 +9589,7 @@ "glG" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "gmS" = ( /obj/item/device/flashlight, @@ -11233,9 +9598,7 @@ "gmV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "gnZ" = ( /turf/closed/shuttle/elevator{ @@ -11250,14 +9613,10 @@ icon_state = "gib6" }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "goj" = ( -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "goS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -11278,9 +9637,7 @@ /area/shiva/interior/caves/cp_camp) "gpn" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "gpz" = ( /turf/open/auto_turf/ice/layer0, @@ -11291,10 +9648,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "gpS" = ( /obj/structure/flora/bush/snow{ @@ -11313,9 +9667,7 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "gqp" = ( /obj/item/stack/catwalk, @@ -11337,9 +9689,7 @@ dir = 4; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "grk" = ( /obj/structure/platform/strata{ @@ -11368,9 +9718,7 @@ pixel_y = 14 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "gtp" = ( /obj/effect/landmark/queen_spawn, @@ -11387,34 +9735,24 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) "gtZ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/shiva/interior/colony/central) "gul" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "guz" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/shiva/interior/colony/n_admin) "guA" = ( /obj/structure/surface/table, /obj/item/tool/wirecutters/clippers{ pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "guH" = ( /obj/structure/prop/ice_colony/surveying_device, @@ -11428,9 +9766,7 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) "gvz" = ( -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/shiva/interior/colony/central) "gvT" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -11440,9 +9776,7 @@ /area/shiva/interior/colony/medseceng) "gwq" = ( /obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "gwA" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -11454,14 +9788,10 @@ /area/shiva/interior/caves/cp_camp) "gxK" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "gxN" = ( -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/shiva/interior/valley_huts/disposals) "gxW" = ( /obj/structure/closet/cabinet, @@ -11496,10 +9826,7 @@ /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) "gAV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "gBc" = ( /obj/structure/surface/table, @@ -11513,9 +9840,7 @@ /area/shiva/exterior/junkyard) "gBr" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "gBH" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -11532,10 +9857,7 @@ "gCy" = ( /obj/structure/surface/table, /obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/garage) "gCL" = ( /obj/effect/decal/cleanable/dirt, @@ -11550,9 +9872,7 @@ /area/shiva/exterior/cp_colony_grounds) "gDz" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) "gEk" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -11573,9 +9893,7 @@ /obj/structure/window{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "gFe" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -11594,9 +9912,7 @@ pixel_x = 6; pixel_y = -7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "gGf" = ( /obj/item/ammo_magazine/rifle/m41aMK1, @@ -11607,9 +9923,7 @@ icon_state = "xgibdown1" }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "gGH" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -11622,10 +9936,7 @@ "gHh" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "gHr" = ( /obj/structure/surface/table/reinforced/prison, @@ -11634,9 +9945,7 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "gHu" = ( /obj/item/explosive/grenade/custom/large, @@ -11647,9 +9956,7 @@ dir = 8 }, /obj/item/clipboard, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "gIq" = ( /obj/structure/filingcabinet, @@ -11659,9 +9966,7 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "gIQ" = ( /obj/item/stack/sheet/metal, @@ -11694,9 +9999,7 @@ }, /obj/item/ashtray/glass, /obj/item/trash/cigbutt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "gKQ" = ( /obj/structure/machinery/light/small{ @@ -11706,9 +10009,7 @@ /area/shiva/interior/colony/botany) "gLu" = ( /obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "gLv" = ( /obj/effect/decal/cleanable/blood/drip, @@ -11721,10 +10022,7 @@ /area/shiva/interior/colony/central) "gMP" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "gNw" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -11733,10 +10031,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) "gNF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/central) "gNJ" = ( /obj/structure/platform/shiva/catwalk{ @@ -11763,10 +10058,7 @@ pixel_y = 4 }, /obj/item/weapon/ice_axe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "gPg" = ( /turf/open/auto_turf/snow/layer2, @@ -11778,9 +10070,7 @@ /area/shiva/interior/colony/central) "gPZ" = ( /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "gQx" = ( /obj/structure/surface/table/reinforced/prison, @@ -11788,9 +10078,7 @@ pixel_x = -4; pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "gQy" = ( /obj/structure/flora/bush/snow{ @@ -11844,9 +10132,7 @@ /area/shiva/interior/caves/cp_camp) "gRG" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "gRJ" = ( /obj/item/clothing/shoes/snow, @@ -11872,23 +10158,16 @@ "gSb" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "gSG" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "gSJ" = ( /obj/structure/machinery/vending/cola/research, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "gTe" = ( /obj/structure/machinery/gibber, @@ -11904,15 +10183,11 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "gTU" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "gUc" = ( /turf/closed/shuttle/elevator{ @@ -11921,16 +10196,11 @@ /area/shiva/interior/aerodrome) "gVh" = ( /obj/structure/window/framed/shiva, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "gVJ" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/shiva/interior/colony/botany) "gWk" = ( /obj/structure/window/framed/shiva, @@ -11941,10 +10211,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "gXu" = ( /obj/structure/largecrate/random/barrel/green, @@ -11968,9 +10235,7 @@ /obj/item/weapon/ice_axe/red{ pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "gYu" = ( /obj/item/lightstick/red/planted, @@ -12001,9 +10266,7 @@ "hab" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "hbo" = ( /obj/structure/platform/strata, @@ -12022,14 +10285,10 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "hbB" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/warehouse/caves) "hbD" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -12045,26 +10304,18 @@ /area/shiva/interior/telecomm/lz1_biceps) "hfm" = ( /obj/item/paper/research_notes/good, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "hfw" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "hfN" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "hgI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -12095,9 +10346,7 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "hin" = ( /obj/structure/machinery/disposal, @@ -12111,16 +10360,11 @@ /turf/open/gm/river, /area/shiva/interior/warehouse/caves) "hju" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "hjx" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "hkC" = ( /obj/item/lightstick/red/planted, @@ -12150,9 +10394,7 @@ "hlO" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "hmo" = ( /obj/effect/decal/cleanable/dirt, @@ -12160,25 +10402,18 @@ /turf/open/asphalt/cement, /area/shiva/interior/warehouse) "hms" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "hmI" = ( /obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "hmQ" = ( /obj/structure/filingcabinet/filingcabinet{ name = "mail bins" }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "hmU" = ( /obj/structure/largecrate/random/mini/wooden{ @@ -12195,10 +10430,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) "hnc" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/exterior/lz2_fortress) "hnf" = ( /obj/effect/decal/cleanable/blood, @@ -12206,10 +10438,7 @@ icon_state = "3" }, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "hng" = ( /turf/closed/wall/shiva/ice, @@ -12227,14 +10456,10 @@ /obj/structure/prop/ice_colony/ice_crystal{ dir = 10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "hpc" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/s_lz2) "hpm" = ( /obj/structure/largecrate/random/mini{ @@ -12259,9 +10484,7 @@ dir = 4 }, /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "hqd" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -12271,18 +10494,13 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "hqh" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "greencorners" - }, +/turf/open/floor/shiva/greencorners/east, /area/shiva/interior/colony/botany) "hqC" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "hrb" = ( /obj/structure/surface/table, @@ -12299,18 +10517,13 @@ /obj/structure/urinal{ pixel_y = 32 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "hsw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/circuitboard, /obj/item/tool/screwdriver, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "hsZ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -12324,14 +10537,10 @@ /area/shiva/exterior/cp_lz2) "htb" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "htC" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/exterior/cp_colony_grounds) "hul" = ( /obj/structure/barricade/metal{ @@ -12339,16 +10548,11 @@ health = 130 }, /obj/item/stack/barbed_wire, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "hum" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "huv" = ( /obj/structure/barricade/handrail/wire{ @@ -12375,29 +10579,20 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "hwA" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/medseceng) "hwJ" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "Underground Morgue" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "hxf" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/cp_lz2) "hxk" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -12418,11 +10613,9 @@ dir = 8 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "hyu" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "hyw" = ( /obj/structure/flora/bush/snow{ @@ -12442,18 +10635,14 @@ pixel_x = 4; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "hzJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/lz1_valley) "hzZ" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "hAS" = ( /turf/open/floor/interior/plastic/alt, @@ -12474,9 +10663,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "hBN" = ( /obj/structure/machinery/light/double{ @@ -12485,9 +10672,7 @@ }, /obj/item/clothing/under/colonist, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "hCa" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -12506,9 +10691,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "hCX" = ( /obj/item/storage/box/donkpockets, @@ -12517,10 +10700,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/shiva/interior/colony/medseceng) "hCY" = ( /obj/structure/bed/chair/comfy/orange{ @@ -12530,15 +10710,11 @@ /area/shiva/interior/colony/research_hab) "hDd" = ( /obj/item/lightstick/red/spoke, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "hDo" = ( /obj/structure/girder/reinforced, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "hDs" = ( /obj/vehicle/train/cargo/engine, @@ -12620,9 +10796,7 @@ "hFJ" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "hGj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -12632,10 +10806,7 @@ /turf/open/floor/plating, /area/shiva/interior/aerodrome) "hGH" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/shiva/interior/colony/medseceng) "hHf" = ( /obj/structure/largecrate, @@ -12666,10 +10837,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/medseceng) "hHY" = ( /obj/structure/barricade/metal{ @@ -12693,9 +10861,7 @@ /area/shiva/exterior/cp_colony_grounds) "hIC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "hIM" = ( /obj/structure/flora/tree/dead/tree_4, @@ -12706,16 +10872,11 @@ /turf/open/floor/plating, /area/shiva/interior/colony/central) "hKR" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/shiva/interior/colony/botany) "hKS" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/aux_power) "hLf" = ( /turf/closed/wall/shiva/prefabricated, @@ -12726,9 +10887,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "hLE" = ( /obj/item/lightstick/red/variant, @@ -12743,16 +10902,11 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "hMY" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "hPp" = ( /turf/closed/wall/shiva/prefabricated/orange, @@ -12773,10 +10927,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wredcorners" - }, +/turf/open/floor/shiva/wredcorners/north, /area/shiva/interior/colony/medseceng) "hQW" = ( /obj/structure/machinery/light/double{ @@ -12801,10 +10952,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "hRQ" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -12830,9 +10978,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "hSW" = ( /obj/item/lightstick/red/spoke/planted{ @@ -12859,9 +11005,7 @@ /obj/item/device/implanter/subdermal_armor{ pixel_x = 12 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "hTk" = ( /obj/structure/bookcase/manuals/medical, @@ -12900,10 +11044,7 @@ "hUG" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "hUM" = ( /obj/structure/bed/chair/office/dark{ @@ -12919,9 +11060,7 @@ /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) "hWh" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "hWK" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -12965,18 +11104,14 @@ /area/shiva/interior/colony/central) "hYf" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "hYT" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ pixel_y = 15 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "hZu" = ( /obj/structure/machinery/landinglight/ds2{ @@ -12985,9 +11120,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "hZI" = ( /obj/structure/largecrate/random/mini/small_case/b{ @@ -13004,9 +11137,7 @@ /area/shiva/interior/colony/n_admin) "iaj" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "iaK" = ( /obj/structure/bed/chair/comfy/beige, @@ -13014,9 +11145,7 @@ /area/shiva/interior/colony/research_hab) "ibN" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "ibP" = ( /obj/structure/closet/toolcloset, @@ -13024,23 +11153,15 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "icC" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) -"idG" = ( -/obj/structure/flora/tree/dead/tree_4, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) "idR" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -13051,18 +11172,13 @@ /obj/structure/prop/souto_land/streamer{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "ieo" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/shiva/interior/colony/n_admin) "iey" = ( /obj/structure/flora/bush/snow{ @@ -13079,10 +11195,7 @@ /area/shiva/interior/warehouse) "ift" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "ifN" = ( /obj/structure/surface/rack, @@ -13097,42 +11210,30 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "igl" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "igr" = ( /obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "igJ" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) "igN" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/deck) "ihh" = ( /obj/structure/surface/table, /obj/item/clipboard, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ihp" = ( /obj/structure/surface/table/woodentable, @@ -13151,9 +11252,7 @@ pixel_x = 4; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "iji" = ( /obj/effect/decal/cleanable/blood/gibs/core, @@ -13166,9 +11265,7 @@ /area/shiva/interior/warehouse/caves) "ijq" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "ijA" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -13202,34 +11299,24 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/n_admin) "ilh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "ilo" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "ilt" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "ilW" = ( /obj/item/lightstick/planted, @@ -13244,9 +11331,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "inJ" = ( /turf/open/floor/wood, @@ -13255,10 +11340,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"ipc" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) "ipP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, @@ -13269,9 +11350,7 @@ /obj/item/weapon/gun/smg/pps43, /obj/item/ammo_magazine/smg/pps43, /obj/item/ammo_magazine/smg/pps43, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "iqh" = ( /obj/item/device/flashlight, @@ -13286,10 +11365,7 @@ dir = 5; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "iqA" = ( /obj/effect/decal/cleanable/blood{ @@ -13310,17 +11386,12 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "irk" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "irt" = ( /obj/structure/barricade/metal{ @@ -13329,16 +11400,12 @@ /obj/structure/barricade/metal{ layer = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "irx" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "irT" = ( /obj/structure/platform/strata{ @@ -13351,23 +11418,16 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) "isU" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "itG" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/medseceng) "itH" = ( /obj/structure/largecrate/random/secure, @@ -13391,25 +11451,18 @@ /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) "itW" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/central) "iuz" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "iuI" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "iuK" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "iuM" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -13417,24 +11470,18 @@ layer = 3 }, /obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "iuR" = ( /obj/structure/dispenser, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) "iuX" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 }, /obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "ivl" = ( /obj/structure/machinery/alarm{ @@ -13448,18 +11495,13 @@ dir = 1; name = "\improper Underground Chapel" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/shiva/interior/colony/central) "ivy" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "ivE" = ( /obj/structure/platform/strata{ @@ -13473,9 +11515,7 @@ "ivS" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) "ivU" = ( /obj/structure/stairs/perspective{ @@ -13493,9 +11533,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "ixo" = ( /obj/structure/closet/secure_closet/personal, @@ -13519,10 +11557,7 @@ /area/shiva/interior/warehouse) "ixX" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/deck) "iyk" = ( /obj/structure/surface/table/reinforced/prison, @@ -13532,9 +11567,7 @@ /obj/item/reagent_container/food/snacks/cheesecakeslice{ pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "iyP" = ( /obj/structure/surface/table/reinforced/prison, @@ -13549,9 +11582,7 @@ pixel_x = 7; pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "izt" = ( /obj/effect/decal/cleanable/blood/oil, @@ -13559,10 +11590,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) "iAg" = ( /obj/structure/barricade/snow{ @@ -13575,10 +11603,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) "iAG" = ( /obj/structure/cargo_container/horizontal/blue/middle, @@ -13593,16 +11618,11 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "iCs" = ( /obj/item/storage/firstaid/adv, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/shiva/interior/colony/botany) "iCF" = ( /obj/item/lightstick/red/planted, @@ -13614,10 +11634,7 @@ dir = 8; pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "iCK" = ( /obj/item/storage/belt/medical{ @@ -13646,10 +11663,7 @@ /area/shiva/exterior/lz1_valley) "iDN" = ( /obj/item/weapon/ice_axe/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "iDW" = ( /obj/structure/stairs/perspective{ @@ -13665,15 +11679,11 @@ /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "iEp" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/medseceng) "iEF" = ( /obj/structure/bed/chair/comfy/orange, @@ -13684,23 +11694,17 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/botany) "iHu" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "iHN" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) "iHV" = ( /obj/structure/largecrate/random{ @@ -13723,10 +11727,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "iIg" = ( /obj/structure/stairs/perspective/ice{ @@ -13754,37 +11755,27 @@ /area/shiva/interior/colony/botany) "iJA" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "iJY" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "iKW" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 4 }, /turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "iLf" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "iLS" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) "iMb" = ( /turf/open/auto_turf/snow/layer2, @@ -13806,9 +11797,7 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "iNX" = ( /obj/effect/decal/cleanable/blood, @@ -13839,12 +11828,9 @@ pixel_y = 28 }, /turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "iPg" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/n_admin) "iPG" = ( /obj/structure/surface/table, @@ -13852,9 +11838,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "iPU" = ( /obj/structure/surface/table, @@ -13862,9 +11846,7 @@ pixel_x = -4; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "iQe" = ( /obj/structure/barricade/handrail/wire{ @@ -13878,24 +11860,17 @@ /area/shiva/exterior/lz1_valley) "iQP" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "iRa" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "iRh" = ( /obj/structure/surface/table, /obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "iTQ" = ( /obj/structure/girder, @@ -13905,31 +11880,21 @@ /obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "iVj" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/shiva/exterior/cp_lz2) "iVT" = ( /obj/structure/surface/table, /obj/structure/largecrate/random/mini/chest/c{ pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "iWa" = ( /obj/item/clipboard, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "iWg" = ( /obj/structure/barricade/handrail/strata{ @@ -13943,9 +11908,7 @@ layer = 2.9; pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) "iWu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ @@ -13960,15 +11923,11 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "iWO" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "iWS" = ( /obj/structure/prop/invuln/dense{ @@ -13997,9 +11956,7 @@ /area/shiva/interior/colony/research_hab) "iXc" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "iXk" = ( /obj/item/lightstick/variant/planted, @@ -14027,16 +11984,12 @@ pixel_y = 10 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "iXE" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "iXG" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro, @@ -14058,9 +12011,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "iYc" = ( /obj/structure/surface/table, @@ -14068,9 +12019,7 @@ pixel_x = -2; pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "iYC" = ( /obj/structure/reagent_dispensers/watertank, @@ -14078,10 +12027,7 @@ /area/shiva/interior/warehouse) "iYF" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) "iZj" = ( /obj/structure/largecrate/random/barrel/green, @@ -14089,9 +12035,7 @@ /area/shiva/interior/warehouse/caves) "iZF" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "iZX" = ( /obj/structure/machinery/power/apc{ @@ -14105,12 +12049,9 @@ dir = 4 }, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "jay" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/north, /area/shiva/interior/colony/medseceng) "jaF" = ( /obj/item/lightstick/red/planted, @@ -14122,14 +12063,10 @@ "jaU" = ( /obj/structure/surface/table, /obj/item/device/whistle, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "jbE" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/medseceng) "jbK" = ( /turf/open/floor/plating, @@ -14144,10 +12081,7 @@ /obj/structure/surface/table, /obj/item/clothing/suit/armor/hos, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "jeg" = ( /obj/structure/barricade/wooden{ @@ -14181,21 +12115,16 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "jhm" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "jhq" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/n_admin) "jhR" = ( /obj/structure/surface/table/woodentable, @@ -14219,9 +12148,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Colony Administration" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "jjX" = ( /obj/structure/platform/shiva/catwalk{ @@ -14263,9 +12190,7 @@ /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) "jmq" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/central) "jmt" = ( /obj/structure/largecrate/random/case/double, @@ -14277,43 +12202,29 @@ "jny" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "jnW" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "joh" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/shiva/interior/colony/botany) "jop" = ( /obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) "joF" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "joP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/deck) "jph" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -14346,22 +12257,16 @@ /obj/structure/closet/firecloset, /obj/item/explosive/grenade/high_explosive/pmc, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/research_hab) "jqY" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "jrg" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/research_caves) "jru" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/n_admin) "jrR" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -14376,10 +12281,7 @@ /area/shiva/interior/colony/central) "jsA" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/central) "jtp" = ( /obj/structure/prop/invuln/ice_prefab, @@ -14413,17 +12315,13 @@ pixel_y = 28 }, /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "jwk" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "jwm" = ( /obj/structure/flora/bush/snow{ @@ -14437,10 +12335,7 @@ /area/shiva/exterior/valley) "jxJ" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/shiva/interior/colony/medseceng) "jzs" = ( /obj/structure/largecrate/random/mini/wooden{ @@ -14450,9 +12345,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) "jAg" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/exterior/cp_lz2) "jAu" = ( /obj/structure/largecrate/random/barrel/green, @@ -14461,9 +12354,7 @@ "jAv" = ( /obj/structure/bed, /obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "jAL" = ( /turf/open/auto_turf/snow/layer1, @@ -14472,33 +12363,23 @@ /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/valley_huts/disposals) "jBp" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/n_admin) "jBu" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "jBN" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "jCe" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "jCk" = ( /obj/item/lightstick/variant/planted, @@ -14524,9 +12405,7 @@ pixel_y = 6 }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "jDv" = ( /obj/structure/ice/thin/single{ @@ -14538,17 +12417,13 @@ /area/shiva/exterior/valley) "jDB" = ( /obj/item/shard, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "jEa" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "jEc" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -14584,9 +12459,7 @@ /area/shiva/exterior/junkyard) "jGZ" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "jHg" = ( /obj/structure/platform/strata{ @@ -14596,15 +12469,10 @@ /area/shiva/interior/caves/cp_camp) "jIF" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "jIK" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/n_admin) "jIP" = ( /obj/structure/platform/strata{ @@ -14614,10 +12482,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) "jIR" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "jJf" = ( /obj/item/lightstick/red/spoke/planted{ @@ -14659,16 +12524,12 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "jLn" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/telecomm/lz1_biceps) "jLx" = ( /obj/item/tool/pickaxe, @@ -14685,24 +12546,17 @@ /area/shiva/exterior/junkyard) "jMD" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "jMZ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/shiva/interior/colony/central) "jNr" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) "jOi" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/cp_camp) "jOv" = ( /obj/structure/surface/rack, @@ -14715,9 +12569,7 @@ /obj/item/weapon/gun/smg/pps43, /obj/item/ammo_magazine/smg/pps43, /obj/item/ammo_magazine/smg/pps43, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "jOP" = ( /obj/effect/decal/warning_stripes{ @@ -14730,10 +12582,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) "jPj" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "jPo" = ( /obj/structure/platform/strata{ @@ -14812,9 +12661,7 @@ /obj/structure/barricade/metal{ layer = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "jTT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -14832,19 +12679,14 @@ "jUj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "jVi" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) "jVp" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/deck) "jVx" = ( /obj/structure/girder/reinforced, @@ -14872,10 +12714,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/aux_power) "jXD" = ( /obj/structure/flora/tree/dead/tree_4, @@ -14886,9 +12725,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "jYO" = ( /obj/item/lightstick/red/spoke/planted{ @@ -14900,17 +12737,13 @@ /area/shiva/exterior/cp_colony_grounds) "jZF" = ( /obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "kap" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "kaC" = ( /turf/closed/wall/shiva/ice, @@ -14919,10 +12752,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "kaT" = ( /obj/structure/surface/table/woodentable{ @@ -14930,17 +12760,12 @@ flipped = 1 }, /obj/structure/machinery/computer/objective, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "kbf" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "kbl" = ( /obj/structure/reagent_dispensers/fueltank, @@ -14948,18 +12773,14 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "kbJ" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "kbK" = ( /obj/item/reagent_container/glass/bucket{ @@ -14986,17 +12807,13 @@ pixel_x = -8; pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "kce" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) "kch" = ( /obj/structure/surface/rack, @@ -15008,32 +12825,23 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "kdd" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-east-gate" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "kdy" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "kdK" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "kdR" = ( /obj/structure/surface/rack, @@ -15045,16 +12853,11 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/n_admin) "kdW" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) "kec" = ( /obj/structure/window/reinforced/tinted{ @@ -15065,9 +12868,7 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "kee" = ( /obj/structure/cargo_container/horizontal/blue/bottom, @@ -15125,7 +12926,7 @@ dir = 4 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "khz" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, @@ -15138,9 +12939,7 @@ /area/shiva/interior/colony/botany) "kiv" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "kiB" = ( /obj/structure/machinery/alarm{ @@ -15163,15 +12962,11 @@ dir = 8 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) "kjt" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "kjM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -15201,9 +12996,7 @@ /area/shiva/interior/caves/right_spiders) "klP" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) "kmM" = ( /obj/structure/flora/bush/snow{ @@ -15256,9 +13049,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) "kqs" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/colony/central) "kqH" = ( /obj/structure/machinery/firealarm{ @@ -15267,9 +13058,7 @@ }, /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "kri" = ( /obj/item/lightstick/red/planted, @@ -15281,10 +13070,7 @@ /area/shiva/interior/aerodrome) "krM" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "krU" = ( /obj/effect/decal/cleanable/dirt, @@ -15300,17 +13086,12 @@ pixel_x = -32 }, /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "ksY" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "ktd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -15335,10 +13116,7 @@ /turf/open/floor/wood, /area/shiva/interior/bar) "kuM" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/deck) "kuS" = ( /obj/structure/flora/tree/dead/tree_1, @@ -15368,9 +13146,7 @@ /obj/item/reagent_container/food/drinks/drinkingglass{ pixel_x = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "kvB" = ( /obj/structure/surface/table/woodentable/fancy, @@ -15396,9 +13172,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "kwf" = ( /obj/structure/largecrate/random/secure, @@ -15406,22 +13180,14 @@ /area/shiva/exterior/junkyard) "kxb" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/central) "kxv" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "kxx" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "kxG" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -15450,10 +13216,7 @@ /obj/structure/machinery/door/window/eastright{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "kyD" = ( /turf/open/auto_turf/snow/layer0, @@ -15467,18 +13230,14 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "kzr" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "kzE" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -15514,18 +13273,13 @@ "kAp" = ( /obj/item/stack/sheet/metal/small_stack, /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "kAw" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) "kAT" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) "kBo" = ( /obj/structure/prop/ice_colony/poly_kevlon_roll{ @@ -15558,16 +13312,11 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "kEh" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "kEs" = ( /obj/effect/decal/cleanable/dirt, @@ -15578,50 +13327,35 @@ /area/shiva/interior/bar) "kEy" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "kEB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "kEK" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "kFd" = ( /obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "kFJ" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "kGn" = ( /obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/shiva/interior/colony/botany) "kGz" = ( /obj/effect/landmark/static_comms/net_one, @@ -15637,46 +13371,32 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "kHG" = ( /obj/structure/largecrate/random/mini/med, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/cp_camp) "kIq" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/n_admin) "kIs" = ( /obj/item/storage/donut_box, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "kIH" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "kJi" = ( /obj/structure/closet/crate/hydroponics, /obj/item/reagent_container/glass/watertank, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/n_admin) "kJw" = ( /obj/item/clipboard, @@ -15691,16 +13411,11 @@ "kJL" = ( /obj/structure/surface/table, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "kJN" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "kJQ" = ( /obj/item/lightstick/red/variant, @@ -15710,9 +13425,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "kLi" = ( /obj/structure/surface/rack, @@ -15729,22 +13442,16 @@ /area/shiva/interior/warehouse) "kLv" = ( /obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "kLz" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "kLB" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/aux_power) "kLG" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -15755,9 +13462,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) "kMg" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "kMF" = ( /obj/item/lightstick/red/spoke/planted{ @@ -15772,23 +13477,17 @@ /obj/structure/machinery/computer/cameras{ pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "kMO" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "kNf" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "kOi" = ( /obj/structure/closet/secure_closet/medical3{ @@ -15796,9 +13495,7 @@ }, /obj/effect/spawner/random/attachment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "kOV" = ( /turf/open/auto_turf/snow/layer3, @@ -15820,9 +13517,7 @@ "kPX" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "kPZ" = ( /obj/structure/closet/bodybag, @@ -15831,9 +13526,7 @@ "kQi" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "kQF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -15847,10 +13540,7 @@ /area/shiva/interior/colony/medseceng) "kQJ" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "kQW" = ( /obj/structure/barricade/handrail/wire{ @@ -15865,9 +13555,7 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "kRj" = ( /obj/structure/surface/table, @@ -15875,9 +13563,7 @@ pixel_x = -5; pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "kRq" = ( /obj/item/lightstick/red/variant/planted, @@ -15885,24 +13571,18 @@ /area/shiva/interior/caves/cp_camp) "kRI" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "kRK" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/shiva/interior/colony/central) "kRR" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "kRV" = ( /obj/structure/surface/table, @@ -15911,9 +13591,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "kSh" = ( /obj/structure/flora/tree/dead/tree_6, @@ -15936,9 +13614,7 @@ /obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{ pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "kTP" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -15961,9 +13637,7 @@ "kVA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "kWa" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ @@ -15981,9 +13655,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "kWK" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, @@ -16000,9 +13672,7 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "kXs" = ( /obj/item/lightstick/red/spoke/planted{ @@ -16038,10 +13708,7 @@ dir = 8; layer = 2.98 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "kZK" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -16075,16 +13742,11 @@ pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "laK" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "laL" = ( /obj/effect/decal/warning_stripes{ @@ -16097,9 +13759,7 @@ /obj/structure/machinery/microwave{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "lcv" = ( /obj/structure/largecrate/random/mini/chest{ @@ -16141,9 +13801,7 @@ pixel_x = -14; pixel_y = 14 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "lfC" = ( /obj/item/tool/pickaxe, @@ -16160,9 +13818,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "lgN" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -16195,9 +13851,7 @@ dir = 8; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "ljz" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -16207,33 +13861,22 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "ljM" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/deck) "ljS" = ( /obj/structure/surface/table, /obj/item/tool/wrench, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "lkP" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "lkX" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "llZ" = ( /turf/open/auto_turf/snow/layer2, @@ -16243,16 +13886,11 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) "lmL" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/botany) "lmQ" = ( /obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "lnk" = ( /obj/structure/machinery/power/apc{ @@ -16260,10 +13898,7 @@ name = "telecomms relay power controller"; start_charge = 10 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/aux_power) "lnH" = ( /obj/structure/flora/bush/snow{ @@ -16277,15 +13912,10 @@ "lnY" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/telecomm/lz1_biceps) "lod" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/shiva/interior/colony/botany) "loe" = ( /obj/structure/flora/bush/snow{ @@ -16307,9 +13937,7 @@ /area/shiva/exterior/cp_lz2) "loH" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "loX" = ( /obj/structure/flora/bush/snow{ @@ -16321,18 +13949,14 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 6 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "lpA" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox{ pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "lpD" = ( /obj/effect/decal/cleanable/blood{ @@ -16350,9 +13974,7 @@ /area/shiva/exterior/junkyard) "lpX" = ( /obj/item/tool/crowbar/red, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "lqu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -16388,9 +14010,7 @@ name = "telecomms relay power controller"; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "lrt" = ( /obj/item/shard{ @@ -16408,9 +14028,7 @@ "lsk" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "ltA" = ( /obj/structure/surface/rack, @@ -16426,22 +14044,16 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "lvj" = ( /obj/structure/machinery/landinglight/ds2, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "lvq" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "lvW" = ( /obj/structure/machinery/computer/cameras{ @@ -16451,9 +14063,7 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "lwo" = ( /turf/open/auto_turf/snow/layer2, @@ -16471,15 +14081,10 @@ pixel_y = -3 }, /obj/item/stack/catwalk, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) "lxn" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "lyh" = ( /obj/item/lightstick/red/spoke/planted{ @@ -16491,10 +14096,7 @@ /area/shiva/exterior/valley) "lyw" = ( /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "lzQ" = ( /obj/effect/decal/warning_stripes{ @@ -16521,9 +14123,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "lCb" = ( /obj/item/tool/pickaxe, @@ -16544,10 +14144,7 @@ /area/shiva/exterior/valley) "lDv" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) "lDx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -16558,37 +14155,27 @@ /area/shiva/interior/colony/n_admin) "lDI" = ( /obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "lEJ" = ( /obj/structure/surface/table/woodentable{ flipped = 1 }, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "lFp" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox{ pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "lFP" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "lFX" = ( /obj/structure/flora/bush/snow{ @@ -16626,9 +14213,7 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "lHl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -16645,25 +14230,19 @@ pixel_y = -5 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "lHK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool{ pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "lHX" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "lIa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -16671,17 +14250,13 @@ /area/shiva/exterior/cp_s_research) "lJh" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "lJt" = ( /obj/structure/noticeboard{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "lJx" = ( /obj/structure/window/framed/shiva, @@ -16696,16 +14271,11 @@ dir = 8; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "lKQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greencorners" - }, +/turf/open/floor/shiva/greencorners/west, /area/shiva/interior/colony/botany) "lLf" = ( /obj/item/tool/screwdriver, @@ -16724,9 +14294,7 @@ "lNf" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "lNg" = ( /turf/open/auto_turf/snow/layer3, @@ -16736,10 +14304,7 @@ pixel_y = 8 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "lNE" = ( /obj/structure/flora/bush/snow{ @@ -16763,44 +14328,30 @@ "lOO" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/garage) "lOT" = ( /obj/structure/bed, /obj/item/bedsheet/orange, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/medseceng) "lPh" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/custom/metal_foam, /obj/item/explosive/grenade/custom/metal_foam, /obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "lPC" = ( /obj/structure/surface/table, /obj/item/cell/high/empty, /obj/structure/machinery/cell_charger, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "lQa" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/central) "lQm" = ( /obj/structure/reagent_dispensers/water_cooler{ @@ -16823,19 +14374,14 @@ "lRI" = ( /obj/structure/largecrate/random/mini/med, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) "lRJ" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/research_hab) "lSz" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/n_admin) "lSU" = ( /turf/closed/wall/shiva/prefabricated/blue, @@ -16851,48 +14397,33 @@ /obj/effect/landmark/nightmare{ insert_tag = "lz2-north" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "lTN" = ( /obj/structure/machinery/power/apc{ dir = 4; start_charge = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/east, /area/shiva/interior/valley_huts/disposals) "lUF" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/interior/colony/botany) "lUQ" = ( /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "lVb" = ( /obj/structure/surface/table, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "lVf" = ( /obj/structure/surface/table, /obj/item/trash/plate, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "lVF" = ( /obj/structure/platform/shiva/catwalk{ @@ -16904,9 +14435,7 @@ /obj/structure/barricade/handrail/strata, /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "lWC" = ( /obj/effect/decal/warning_stripes{ @@ -16930,38 +14459,25 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "lWW" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/shiva/interior/colony/central) "lXj" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/west, /area/shiva/interior/colony/medseceng) "lXy" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/cameras{ pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "lXE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/bronze, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "lXM" = ( /obj/structure/surface/table/woodentable, @@ -16974,9 +14490,7 @@ pixel_x = 2; pixel_y = 16 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "lXQ" = ( /obj/structure/stairs/perspective/ice{ @@ -16991,9 +14505,7 @@ id = "nlz_shutters"; name = "\improper Bio-lab Shutters" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "lYk" = ( /obj/structure/surface/table/woodentable, @@ -17033,9 +14545,7 @@ }, /obj/item/ammo_magazine/pistol/holdout, /obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "mae" = ( /obj/structure/surface/table, @@ -17044,9 +14554,7 @@ pixel_y = 9 }, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "mah" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -17061,9 +14569,7 @@ /turf/open/floor/wood, /area/shiva/interior/bar) "maW" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "mbj" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -17083,10 +14589,7 @@ /area/shiva/interior/caves/cp_camp) "mcw" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "mcH" = ( /obj/effect/decal/warning_stripes{ @@ -17095,9 +14598,7 @@ /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) "mdx" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "mdV" = ( /obj/structure/flora/bush/snow{ @@ -17110,9 +14611,7 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "meg" = ( /obj/item/tool/wet_sign, @@ -17125,9 +14624,7 @@ /area/shiva/exterior/lz1_valley) "meG" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "mfa" = ( /obj/item/weapon/ice_axe, @@ -17141,16 +14638,10 @@ /area/shiva/interior/caves/cp_camp) "mfe" = ( /obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "mfr" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/east, /area/shiva/interior/colony/medseceng) "mgt" = ( /obj/effect/decal/warning_stripes{ @@ -17161,9 +14652,7 @@ "mgA" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "mgL" = ( /obj/item/weapon/gun/energy/taser, @@ -17189,9 +14678,7 @@ /area/shiva/exterior/junkyard) "mhx" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "mhP" = ( /turf/open/floor/plating/plating_catwalk/shiva, @@ -17205,18 +14692,12 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/medseceng_caves) "miD" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) "miW" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "mjV" = ( /obj/structure/largecrate/random/case/small, @@ -17231,9 +14712,7 @@ /area/shiva/interior/caves/cp_camp) "mkK" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "mlG" = ( /obj/structure/surface/rack, @@ -17247,14 +14726,10 @@ /turf/open/floor/plating, /area/shiva/exterior/lz2_fortress) "mms" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) "mnD" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/shiva/exterior/lz2_fortress) "mnS" = ( /obj/structure/flora/bush/snow{ @@ -17267,9 +14742,7 @@ /obj/item/reagent_container/food/snacks/bigbiteburger, /obj/item/reagent_container/food/snacks/bigbiteburger, /obj/structure/machinery/light/double, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "mpt" = ( /obj/effect/decal/cleanable/dirt, @@ -17287,9 +14760,7 @@ /obj/structure/filingcabinet, /obj/item/paper/research_notes, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "mqe" = ( /obj/structure/machinery/vending/coffee, @@ -17297,17 +14768,13 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "mqt" = ( /obj/structure/bed/chair/comfy/blue{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/botany) "mqD" = ( /obj/item/stack/sheet/metal, @@ -17322,17 +14789,11 @@ /turf/open/floor/plating, /area/shiva/interior/colony/central) "mrY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "msd" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "msu" = ( /obj/structure/closet/bodybag, @@ -17344,10 +14805,7 @@ pixel_y = 9 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "mti" = ( /obj/structure/machinery/light/double{ @@ -17358,9 +14816,7 @@ /area/shiva/exterior/cp_lz2) "mtA" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "mtU" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -17404,10 +14860,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/junkyard) "mwF" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "mwJ" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -17417,9 +14870,7 @@ /area/shiva/interior/caves/research_caves) "mxn" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "mxr" = ( /obj/structure/stairs/perspective/ice{ @@ -17468,10 +14919,7 @@ /area/shiva/exterior/lz2_fortress) "mBW" = ( /obj/item/reagent_container/glass/bucket, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "mCe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -17484,9 +14932,7 @@ /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "mCj" = ( /turf/open/auto_turf/ice/layer0, @@ -17498,9 +14944,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "mCn" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/aux_power) "mCo" = ( /obj/structure/flora/bush/snow{ @@ -17513,9 +14957,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "mCG" = ( /obj/structure/platform_decoration/strata{ @@ -17545,9 +14987,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "mEw" = ( /obj/structure/cargo_container/wy/left, @@ -17570,14 +15010,10 @@ "mEV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/hand_labeler, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "mFm" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "mFo" = ( /obj/structure/cargo_container/wy/right, @@ -17588,10 +15024,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "mGk" = ( /obj/item/tool/shovel/snow, @@ -17607,10 +15040,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) "mGI" = ( /obj/structure/largecrate/random, @@ -17627,9 +15057,7 @@ /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "mHB" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -17654,10 +15082,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/shiva/green/north, /area/shiva/interior/colony/botany) "mIx" = ( /obj/effect/decal/cleanable/dirt, @@ -17690,9 +15115,7 @@ /area/shiva/interior/colony/medseceng) "mKk" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "mKr" = ( /obj/structure/window/framed/shiva, @@ -17713,9 +15136,7 @@ /area/shiva/interior/colony/s_admin) "mKB" = ( /obj/item/paper, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "mKD" = ( /obj/structure/machinery/cell_charger, @@ -17734,15 +15155,11 @@ pixel_x = -2; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "mLG" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "mLT" = ( /obj/structure/machinery/alarm{ @@ -17753,10 +15170,7 @@ /area/shiva/interior/colony/medseceng) "mMa" = ( /obj/item/packageWrap, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "mMg" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -17787,15 +15201,11 @@ /area/shiva/exterior/lz1_valley) "mNK" = ( /obj/structure/dispenser, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "mOu" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "mOv" = ( /obj/structure/platform_decoration/strata{ @@ -17815,24 +15225,17 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "mQs" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "mQL" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/shiva/interior/colony/botany) "mRa" = ( /obj/structure/platform_decoration/shiva/catwalk{ @@ -17864,10 +15267,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) "mRU" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/west, /area/shiva/interior/colony/research_hab) "mSv" = ( /obj/item/tool/shovel/spade{ @@ -17877,15 +15277,11 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "mSR" = ( -/turf/open/floor/shiva{ - icon_state = "bluecorners" - }, +/turf/open/floor/shiva/bluecorners, /area/shiva/interior/colony/central) "mTK" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "mUB" = ( /obj/item/lightstick/red/spoke/planted{ @@ -17908,9 +15304,7 @@ /area/shiva/exterior/junkyard/cp_bar) "mVl" = ( /obj/structure/prop/dam/truck, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "mVY" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -17924,17 +15318,12 @@ /area/shiva/exterior/cp_lz2) "mWw" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "mWA" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "mWE" = ( /obj/structure/surface/table, @@ -17943,24 +15332,17 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "mWK" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "mXq" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/n_admin) "mXz" = ( /obj/effect/decal/warning_stripes{ @@ -17986,9 +15368,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "mYK" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -18001,10 +15381,7 @@ icon_state = "W" }, /obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "mZb" = ( /obj/item/stack/sheet/wood, @@ -18015,10 +15392,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) "naN" = ( /obj/structure/airlock_assembly, @@ -18048,9 +15422,7 @@ /area/shiva/interior/warehouse) "ncY" = ( /obj/item/weapon/gun/flamer, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "ndb" = ( /obj/effect/decal/cleanable/dirt, @@ -18064,9 +15436,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "ndR" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "nej" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -18095,9 +15465,7 @@ pixel_x = -4; pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "neZ" = ( /obj/effect/decal/warning_stripes{ @@ -18111,9 +15479,7 @@ /area/shiva/exterior/junkyard) "nfe" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "nfg" = ( /obj/structure/surface/rack, @@ -18127,26 +15493,18 @@ pixel_x = 6; pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "ngx" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/garage) "ngz" = ( /obj/item/tool/wrench, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) "nhl" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/aux_power) "nhB" = ( /obj/structure/surface/rack, @@ -18158,10 +15516,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/n_admin) "nig" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -18206,9 +15561,7 @@ /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "nmf" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -18219,10 +15572,7 @@ /area/shiva/interior/caves/cp_camp) "nmi" = ( /obj/item/weapon/twohanded/spear, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "nmt" = ( /obj/structure/machinery/power/apc{ @@ -18245,10 +15595,7 @@ "nnG" = ( /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/central) "noa" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -18282,10 +15629,7 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) "nqu" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/interior/colony/central) "nqK" = ( /obj/structure/platform/shiva/catwalk, @@ -18296,9 +15640,7 @@ pixel_y = 12 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "nrr" = ( /obj/structure/surface/table, @@ -18313,9 +15655,7 @@ /area/shiva/interior/colony/research_hab) "nrB" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/aux_power) "nrN" = ( /obj/structure/prop/invuln/ice_prefab/standalone, @@ -18324,19 +15664,13 @@ "nrU" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/aux_power) "nsI" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) "ntc" = ( /turf/open/auto_turf/snow/layer1, @@ -18381,10 +15715,7 @@ /turf/open/gm/river, /area/shiva/interior/caves/research_caves) "nvS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/shiva/exterior/cp_colony_grounds) "nwd" = ( /obj/structure/surface/table, @@ -18395,9 +15726,7 @@ /obj/item/storage/firstaid/rad{ pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "nxi" = ( /obj/structure/machinery/space_heater, @@ -18418,9 +15747,7 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "nyc" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -18470,16 +15797,12 @@ "nAs" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "nAY" = ( -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners, /area/shiva/interior/colony/medseceng) "nBh" = ( -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners, /area/shiva/interior/colony/research_hab) "nBo" = ( /obj/structure/largecrate/random, @@ -18499,26 +15822,19 @@ pixel_x = -5; pixel_y = -2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "nBB" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib6" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "nCo" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/shiva/interior/colony/central) "nCx" = ( /obj/structure/closet/coffin, @@ -18538,18 +15854,8 @@ /area/shiva/interior/warehouse/caves) "nED" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/aux_power) -"nEH" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) "nEQ" = ( /obj/structure/inflatable, /turf/open/auto_turf/snow/layer2, @@ -18562,32 +15868,24 @@ /area/shiva/interior/caves/cp_camp) "nEZ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "nFg" = ( /obj/item/stool{ pixel_x = 4; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/exterior/cp_lz2) "nFB" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/n_admin) "nGv" = ( /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "nGT" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -18598,19 +15896,14 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "nHt" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "nHH" = ( /obj/structure/surface/table, @@ -18630,10 +15923,7 @@ /obj/structure/surface/table, /obj/item/device/taperecorder, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "nIN" = ( /obj/effect/decal/cleanable/blood{ @@ -18643,9 +15933,7 @@ /area/shiva/interior/bar) "nJu" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/garage) "nKc" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ @@ -18666,15 +15954,11 @@ /area/shiva/interior/caves/cp_camp) "nKO" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/botany) "nLn" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "nMk" = ( /obj/structure/surface/table, @@ -18685,9 +15969,7 @@ /area/shiva/interior/colony/research_hab) "nMP" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "nMR" = ( /obj/structure/platform_decoration/strata{ @@ -18714,28 +15996,20 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) "nNj" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) "nNN" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "nNX" = ( /obj/structure/machinery/power/apc{ dir = 1; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/warehouse/caves) "nOd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -18748,10 +16022,7 @@ /area/shiva/exterior/cp_colony_grounds) "nOB" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "nOK" = ( /obj/structure/platform/strata{ @@ -18774,9 +16045,7 @@ pixel_y = 6 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "nPW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -18795,9 +16064,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "nRD" = ( /obj/structure/stairs/perspective/ice{ @@ -18811,9 +16078,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "nSO" = ( /turf/open/auto_turf/ice/layer1, @@ -18826,15 +16091,10 @@ /obj/structure/surface/table, /obj/item/device/encryptionkey, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/telecomm/lz1_biceps) "nTC" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/aux_power) "nUa" = ( /obj/structure/bed/chair{ @@ -18856,10 +16116,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) "nUq" = ( /obj/item/lightstick/variant/planted, @@ -18868,10 +16125,7 @@ "nVn" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "nVL" = ( /obj/structure/surface/table/reinforced/prison, @@ -18886,17 +16140,13 @@ /obj/item/storage/box/donkpockets{ pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "nVM" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "nWI" = ( /obj/structure/flora/bush/snow{ @@ -18908,9 +16158,7 @@ /obj/structure/machinery/power/smes/buildable{ name = "backup power SMES" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "nZA" = ( /turf/open/auto_turf/ice/layer0, @@ -18925,33 +16173,23 @@ "nZM" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "oag" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "oah" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "oaH" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "oaI" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "oaO" = ( /obj/item/stack/cable_coil/random, @@ -19006,10 +16244,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/medseceng) "odg" = ( /obj/item/tool/weldingtool, @@ -19020,9 +16255,7 @@ /area/shiva/interior/lz2_habs) "oeQ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "ofl" = ( /obj/structure/platform/strata{ @@ -19036,22 +16269,15 @@ "ofK" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "ofU" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "ogd" = ( /obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "ogu" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ @@ -19070,10 +16296,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "ohb" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/garage) "ohd" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -19083,9 +16306,7 @@ /area/shiva/interior/caves/cp_camp) "ohq" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "ohE" = ( /obj/item/clipboard, @@ -19133,28 +16354,19 @@ layer = 3 }, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "okM" = ( /obj/item/frame/toolbox_tiles, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "olI" = ( /obj/item/device/pinpointer, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "omu" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "onc" = ( /obj/structure/girder/displaced, @@ -19169,9 +16381,7 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "ood" = ( /turf/open/auto_turf/ice/layer0, @@ -19186,9 +16396,7 @@ /area/shiva/interior/colony/central) "opM" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "oqf" = ( /obj/structure/flora/tree/dead/tree_3, @@ -19196,9 +16404,7 @@ /area/shiva/exterior/lz1_valley) "oqt" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "oqy" = ( /obj/effect/decal/warning_stripes{ @@ -19220,10 +16426,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "oqX" = ( /obj/item/reagent_container/glass/bucket{ @@ -19237,9 +16440,7 @@ dir = 2; name = "Underground Morgue" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "ork" = ( /obj/structure/flora/tree/dead/tree_1, @@ -19251,15 +16452,10 @@ /area/shiva/interior/colony/research_hab) "orO" = ( /obj/structure/desertdam/decals/road_stop, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "osh" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "osE" = ( /turf/open/auto_turf/ice/layer2, @@ -19273,37 +16469,27 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "otA" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ pixel_y = 7 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "otJ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) "otL" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greencorners" - }, +/turf/open/floor/shiva/greencorners/west, /area/shiva/interior/colony/botany) "otV" = ( /obj/vehicle/powerloader/jd{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "ouS" = ( /obj/item/lightstick/red/spoke/planted{ @@ -19317,10 +16503,7 @@ /area/shiva/interior/colony/medseceng) "ovh" = ( /obj/item/stack/barbed_wire, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) "ovI" = ( /obj/structure/largecrate/random/mini/med, @@ -19340,10 +16523,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "oww" = ( /obj/item/frame/rack, @@ -19353,9 +16533,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "owB" = ( /obj/structure/platform/shiva/catwalk{ @@ -19365,9 +16543,7 @@ /area/shiva/exterior/cp_colony_grounds) "owD" = ( /obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "owW" = ( /obj/structure/barricade/snow{ @@ -19388,9 +16564,7 @@ dir = 1; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "oyw" = ( /obj/structure/platform_decoration/strata, @@ -19411,9 +16585,7 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "oCG" = ( /turf/open/floor/plating/plating_catwalk/shiva, @@ -19436,16 +16608,10 @@ /area/shiva/exterior/cp_lz2) "oDJ" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/garage) "oDM" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/garage) "oDQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -19461,9 +16627,7 @@ /area/shiva/interior/colony/s_admin) "oET" = ( /obj/item/weapon/baseballbat/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "oEU" = ( /obj/item/lightstick/red/spoke/planted{ @@ -19482,22 +16646,14 @@ /area/shiva/interior/warehouse/caves) "oFG" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "oFX" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wredcorners" - }, +/turf/open/floor/shiva/wredcorners/west, /area/shiva/interior/colony/medseceng) "oGb" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "oGg" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -19509,10 +16665,7 @@ /area/shiva/exterior/cp_s_research) "oHz" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "oHE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -19524,32 +16677,22 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "oHI" = ( /obj/structure/ice/thin/single{ opacity = 1; unacidable = 0 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "oIh" = ( /obj/item/frame/air_alarm, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "oIR" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "oJe" = ( /obj/structure/surface/table, @@ -19558,9 +16701,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "oKc" = ( /obj/effect/decal/warning_stripes{ @@ -19586,9 +16727,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "oLu" = ( /obj/structure/platform/strata{ @@ -19614,9 +16753,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "oNz" = ( /obj/item/stack/rods, @@ -19656,9 +16793,7 @@ /area/shiva/exterior/valley) "oSU" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "oTd" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -19668,9 +16803,7 @@ /area/shiva/exterior/cp_lz2) "oTh" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "oUu" = ( /obj/item/lightstick/red/variant/planted, @@ -19680,10 +16813,7 @@ /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/warehouse) "oWG" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ @@ -19694,17 +16824,13 @@ "oXf" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "oXz" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "oXM" = ( /obj/structure/machinery/space_heater, @@ -19726,10 +16852,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/medseceng) "oYH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "oYX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -19748,9 +16871,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "oZE" = ( /obj/structure/coatrack, @@ -19758,9 +16879,7 @@ /area/shiva/interior/bar) "oZR" = ( /obj/item/stack/cable_coil/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "pad" = ( /obj/structure/machinery/computer/atmos_alert{ @@ -19770,18 +16889,14 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "paZ" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "pbY" = ( /obj/effect/decal/cleanable/blood{ @@ -19797,9 +16912,7 @@ icon_state = "large"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "pct" = ( /obj/effect/spider/stickyweb, @@ -19845,9 +16958,7 @@ /area/shiva/interior/caves/s_lz2) "peQ" = ( /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "pff" = ( /obj/item/stack/rods, @@ -19857,9 +16968,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) "pfp" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -19881,9 +16990,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "pgu" = ( /turf/open/auto_turf/ice/layer0, @@ -19896,9 +17003,7 @@ /area/shiva/exterior/cp_lz2) "piW" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "pji" = ( /obj/item/paper_bin{ @@ -19911,9 +17016,7 @@ /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "pkp" = ( /obj/structure/filingcabinet, @@ -19922,9 +17025,7 @@ /area/shiva/interior/colony/medseceng) "pkK" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "pkT" = ( /obj/structure/platform/strata, @@ -19934,10 +17035,7 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/central) "plM" = ( /turf/open/auto_turf/ice/layer0, @@ -19949,9 +17047,7 @@ "pmz" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "pmI" = ( /obj/structure/machinery/alarm{ @@ -19962,28 +17058,20 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) "pnd" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "pnK" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/human/burger, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "poz" = ( /obj/structure/platform/strata{ @@ -20002,9 +17090,7 @@ /area/shiva/interior/caves/cp_camp) "ppI" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "ppS" = ( /obj/structure/stairs/perspective{ @@ -20029,10 +17115,7 @@ dir = 1; start_charge = 0 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "prO" = ( /obj/structure/stairs/perspective/ice{ @@ -20049,9 +17132,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "psl" = ( /obj/structure/flora/bush/snow, @@ -20060,9 +17141,7 @@ "pth" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "pti" = ( /obj/item/tool/weldpack{ @@ -20087,10 +17166,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) "ptr" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) "pue" = ( /obj/item/trash/cigbutt/ucigbutt{ @@ -20102,9 +17178,7 @@ /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "puN" = ( /obj/structure/machinery/light/double{ @@ -20112,16 +17186,12 @@ pixel_y = -5 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "puT" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "puZ" = ( /turf/closed/wall/shiva/ice, @@ -20130,17 +17200,12 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "pvk" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/medseceng) "pvv" = ( /turf/open/floor/shiva, @@ -20163,9 +17228,7 @@ /area/shiva/interior/caves/cp_camp) "pxi" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "pxl" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -20185,18 +17248,13 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "pyI" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "pyK" = ( /obj/item/lightstick/red/spoke/planted{ @@ -20214,9 +17272,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "pzi" = ( /obj/item/newspaper, @@ -20240,45 +17296,33 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "pAO" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /obj/item/newspaper, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "pAV" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "pBl" = ( /obj/structure/machinery/landinglight/ds2/spoke, /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "pBy" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "pBL" = ( /turf/open/floor/plating/plating_catwalk/shiva, @@ -20303,26 +17347,19 @@ /area/shiva/exterior/cp_colony_grounds) "pCI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "pCJ" = ( /obj/item/book/manual/marine_law, /obj/structure/surface/table/reinforced/prison, /obj/item/restraint/handcuffs, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "pDp" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "pDr" = ( /obj/structure/fence, @@ -20362,15 +17399,10 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "pEs" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/deck) "pEv" = ( /obj/structure/surface/table, @@ -20389,9 +17421,7 @@ /area/shiva/interior/caves/s_lz2) "pFd" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "pFg" = ( /obj/structure/platform/strata{ @@ -20400,33 +17430,21 @@ /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) "pFt" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "pFI" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/botany) "pFJ" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/aux_power) "pGf" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "pGg" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "pGi" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -20453,10 +17471,7 @@ "pHz" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/medseceng) "pId" = ( /obj/structure/machinery/computer/cameras/telescreen{ @@ -20467,10 +17482,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "pIK" = ( /obj/structure/flora/bush/snow{ @@ -20489,9 +17501,7 @@ /area/shiva/exterior/cp_s_research) "pJp" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "pJA" = ( /obj/structure/surface/table, @@ -20517,9 +17527,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "pKf" = ( /obj/item/stack/cable_coil/white, @@ -20544,16 +17552,13 @@ "pKK" = ( /obj/item/lightstick/red/variant, /turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "pKP" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp/green{ pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "pKQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -20574,20 +17579,14 @@ pixel_y = 9 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "pLy" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp{ pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) "pLS" = ( /obj/structure/surface/rack, @@ -20598,22 +17597,15 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "pME" = ( /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "pMK" = ( /obj/structure/machinery/processor, -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "pMV" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -20625,9 +17617,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) "pNf" = ( -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners, /area/shiva/interior/garage) "pNo" = ( /obj/item/lightstick/red/spoke/planted{ @@ -20639,10 +17629,7 @@ /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) "pNq" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "pNs" = ( /obj/structure/flora/tree/dead/tree_2, @@ -20656,9 +17643,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "pNy" = ( /obj/structure/closet/cabinet, @@ -20667,26 +17652,19 @@ /area/shiva/interior/colony/botany) "pNM" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "pOI" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "pOM" = ( /obj/structure/machinery/power/apc{ dir = 1; start_charge = 0 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/shiva/interior/telecomm/lz1_biceps) "pPt" = ( /obj/structure/surface/table, @@ -20703,9 +17681,7 @@ /area/shiva/interior/caves/cp_camp) "pQt" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "pQE" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -20729,16 +17705,12 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) "pSD" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/garage) "pSM" = ( /obj/structure/barricade/metal, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "pTp" = ( /obj/structure/surface/rack, @@ -20753,15 +17725,11 @@ /area/shiva/interior/warehouse) "pTC" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "pTG" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "pUp" = ( /obj/structure/flora/tree/dead/tree_1, @@ -20773,18 +17741,13 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull/west, /area/shiva/interior/colony/n_admin) "pUZ" = ( /obj/structure/barricade/metal{ health = 230 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "pVm" = ( /obj/structure/mirror{ @@ -20794,18 +17757,14 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "pVo" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "pWf" = ( /turf/closed/wall/shiva/ice, @@ -20888,9 +17847,7 @@ "qdd" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) "qdh" = ( /obj/structure/platform/strata{ @@ -20912,26 +17869,18 @@ /obj/item/vehicle_clamp{ pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/central) "qeH" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "qfe" = ( /obj/structure/machinery/computer/cameras{ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "qfh" = ( /obj/effect/decal/warning_stripes{ @@ -20944,10 +17893,7 @@ /area/shiva/interior/colony/central) "qfq" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/garage) "qfR" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -20970,15 +17916,11 @@ "qgp" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "qgz" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "qgP" = ( /turf/open/auto_turf/snow/layer1, @@ -20996,9 +17938,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/aux_power) "qid" = ( /obj/structure/bed, @@ -21006,16 +17946,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "qiu" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "qiy" = ( /obj/structure/barricade/handrail/wire, @@ -21028,19 +17963,14 @@ "qjZ" = ( /obj/item/stack/sheet/metal/large_stack, /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "qkr" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/deck) "qkt" = ( /obj/item/stack/cable_coil/cut, @@ -21076,9 +18006,7 @@ }, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "qkT" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -21099,9 +18027,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "qmv" = ( /obj/item/stack/flag/red{ @@ -21111,9 +18037,7 @@ /area/shiva/interior/warehouse) "qmA" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "qng" = ( /obj/structure/machinery/light/double{ @@ -21125,9 +18049,7 @@ pixel_y = 14 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "qnu" = ( /obj/structure/machinery/light/double{ @@ -21164,10 +18086,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/central) "qow" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/shiva/interior/colony/central) "qoU" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -21181,17 +18100,12 @@ /area/shiva/interior/warehouse) "qpq" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) "qps" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "qpu" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -21207,30 +18121,21 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "qpZ" = ( /obj/item/frame/table, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "qrq" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "qrz" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "qrY" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -21254,23 +18159,18 @@ pixel_x = 7; pixel_y = 14 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "que" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "qvr" = ( /obj/structure/machinery/alarm{ dir = 8; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "qvY" = ( /turf/open/auto_turf/snow/layer0, @@ -21288,13 +18188,7 @@ /obj/item/clothing/head/fez{ pixel_y = 6 }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "qxQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -21305,33 +18199,24 @@ req_access_txt = "100" }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "qyy" = ( /obj/structure/barricade/handrail/wire{ dir = 8 }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "qyC" = ( /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "qyE" = ( /obj/item/stool, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "qza" = ( /obj/item/device/flashlight/flare, @@ -21347,10 +18232,7 @@ "qAL" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "qBM" = ( /obj/structure/platform/strata{ @@ -21363,10 +18245,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "qCn" = ( /turf/open/auto_turf/snow/layer1, @@ -21387,9 +18266,7 @@ /area/shiva/interior/colony/research_hab) "qCM" = ( /obj/structure/barricade/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "qCW" = ( /obj/structure/platform/strata{ @@ -21436,10 +18313,7 @@ "qEC" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "qEH" = ( /obj/structure/largecrate/random/case/small, @@ -21462,9 +18336,7 @@ /area/shiva/exterior/telecomm/lz1_north) "qGq" = ( /obj/item/frame/bucket_sensor, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "qGN" = ( /obj/structure/closet/crate/trashcart, @@ -21475,10 +18347,7 @@ /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) "qII" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/exterior/cp_lz2) "qJa" = ( /obj/structure/surface/rack, @@ -21486,10 +18355,7 @@ /obj/item/circuitboard/airlock, /obj/item/circuitboard/airlock, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "qLA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -21527,19 +18393,14 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) "qNn" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "qNt" = ( /obj/structure/barricade/metal{ dir = 1; health = 210 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "qNB" = ( /obj/structure/platform/strata, @@ -21569,10 +18430,7 @@ /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) "qOD" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/deck) "qOE" = ( /obj/structure/surface/rack, @@ -21598,9 +18456,7 @@ /area/shiva/interior/warehouse) "qRb" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "qRl" = ( /obj/structure/platform/strata, @@ -21613,9 +18469,7 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "qRJ" = ( /obj/structure/flora/pottedplant{ @@ -21644,9 +18498,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "qSW" = ( /obj/structure/surface/rack, @@ -21668,16 +18520,12 @@ "qUe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cherrypie, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "qUw" = ( /obj/structure/foamed_metal, /obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "qVo" = ( /obj/structure/surface/table/reinforced/prison, @@ -21685,18 +18533,14 @@ /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) "qVq" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) "qWu" = ( /obj/structure/machinery/light/double, /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "qWL" = ( /obj/structure/surface/rack, @@ -21710,21 +18554,15 @@ pixel_x = -13; pixel_y = 25 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "qXk" = ( /obj/item/clipboard, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "qXm" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/n_admin) "qXx" = ( /obj/effect/decal/warning_stripes{ @@ -21743,18 +18581,13 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "qYP" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) "qZa" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/aux_power) "rad" = ( /obj/structure/inflatable/popped, @@ -21783,15 +18616,10 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "rbq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/caves/research_caves) "rbA" = ( /obj/effect/decal/warning_stripes{ @@ -21808,9 +18636,7 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "rcp" = ( /obj/item/storage/toolbox/mechanical/green, @@ -21848,17 +18674,12 @@ /obj/structure/machinery/door/window/eastright{ name = "Security Desk" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "reV" = ( /obj/structure/surface/table, /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "rfc" = ( /obj/structure/surface/table, @@ -21868,10 +18689,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "rfd" = ( /obj/effect/decal/cleanable/blood/oil, @@ -21892,10 +18710,7 @@ dir = 1; network = list("interrogation") }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "rgy" = ( /obj/structure/flora/bush/snow{ @@ -21914,10 +18729,7 @@ /obj/item/paper/janitor{ pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "rib" = ( /obj/structure/ice/thin/single{ @@ -21929,9 +18741,7 @@ /area/shiva/exterior/valley) "ril" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "riV" = ( /obj/item/tool/pickaxe, @@ -21939,17 +18749,11 @@ /area/shiva/exterior/lz1_valley) "rjw" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/shiva/interior/colony/medseceng) "rjQ" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) "rkc" = ( /obj/structure/surface/table/reinforced/prison, @@ -21971,10 +18775,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northwest, /area/shiva/exterior/junkyard/fortbiceps) "rld" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -21991,9 +18792,7 @@ /area/shiva/exterior/junkyard) "rnz" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/shiva/interior/colony/central) "rnB" = ( /obj/structure/platform_decoration/shiva/catwalk{ @@ -22011,9 +18810,7 @@ /area/shiva/interior/caves/cp_camp) "rpv" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "rpE" = ( /obj/structure/ice/thin/single{ @@ -22030,10 +18827,7 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "rqK" = ( /obj/structure/desertdam/decals/road_stop{ @@ -22052,9 +18846,7 @@ "rsa" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "rti" = ( /obj/structure/surface/table, @@ -22071,10 +18863,7 @@ "rtv" = ( /obj/structure/surface/table, /obj/item/storage/box/trackimp, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) "rtZ" = ( /obj/item/lightstick/red/variant/planted, @@ -22082,10 +18871,7 @@ /area/shiva/exterior/junkyard) "rwQ" = ( /obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/botany) "rxd" = ( /obj/structure/bed/chair, @@ -22103,26 +18889,19 @@ pixel_x = 6; pixel_y = 12 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "ryI" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "ryZ" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/aux_power) "rzw" = ( /obj/structure/platform_decoration/strata, @@ -22130,18 +18909,12 @@ /area/shiva/interior/caves/cp_camp) "rzz" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "rzI" = ( /obj/structure/surface/table, /obj/item/stack/medical/ointment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "rzR" = ( /obj/structure/surface/table/reinforced/prison, @@ -22152,19 +18925,14 @@ /obj/item/storage/belt/utility/full{ pixel_y = 14 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "rAm" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/northeast, /area/shiva/exterior/junkyard/fortbiceps) "rAq" = ( /obj/structure/bed/chair/office/light{ @@ -22174,10 +18942,7 @@ /area/shiva/interior/colony/s_admin) "rAF" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/deck) "rAH" = ( /turf/open/auto_turf/snow/layer2, @@ -22193,17 +18958,12 @@ /area/shiva/interior/warehouse/caves) "rBr" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "rBy" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "rBC" = ( /obj/effect/spawner/random/toolbox, @@ -22218,10 +18978,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) "rDn" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, +/turf/open/floor/shiva/yellowcorners/west, /area/shiva/interior/colony/deck) "rEd" = ( /obj/structure/flora/bush/snow{ @@ -22246,24 +19003,18 @@ /obj/structure/machinery/colony_floodlight{ pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/cp_colony_grounds) "rFA" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "rFB" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) "rGg" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "rHO" = ( /obj/structure/largecrate/random, @@ -22271,9 +19022,7 @@ /area/shiva/interior/colony/research_hab) "rIj" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "rJI" = ( /obj/structure/platform/strata{ @@ -22288,9 +19037,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper Panic Room Shutters" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "rKq" = ( /obj/structure/reagent_dispensers/fueltank, @@ -22298,9 +19045,7 @@ /area/shiva/exterior/cp_s_research) "rKW" = ( /obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "rLu" = ( /obj/structure/platform/strata{ @@ -22313,9 +19058,7 @@ /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "rMb" = ( /obj/item/lightstick/red/spoke/planted{ @@ -22330,24 +19073,16 @@ /area/shiva/exterior/valley) "rMc" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "rMe" = ( /obj/structure/surface/table, /obj/item/restraint/handcuffs, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "rMI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "rNx" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -22362,6 +19097,10 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"rNY" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) "rNZ" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -22373,10 +19112,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) "rOv" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "rOG" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ @@ -22403,27 +19139,20 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "rRp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "rRO" = ( /obj/structure/machinery/light/double, /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "rRP" = ( /obj/structure/closet/crate, @@ -22435,26 +19164,18 @@ /area/shiva/exterior/cp_s_research) "rSr" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/aux_power) "rSL" = ( /obj/item/weapon/gun/boltaction{ pixel_x = -6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "rTk" = ( /obj/item/storage/box/bodybags, /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/medseceng) "rTG" = ( /obj/item/stack/sheet/wood, @@ -22462,10 +19183,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/bar) "rUD" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ @@ -22484,10 +19202,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/aux_power) "rUW" = ( /obj/effect/decal/cleanable/blood/drip, @@ -22495,27 +19210,20 @@ /area/shiva/interior/caves/cp_camp) "rVF" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "rVK" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "rVM" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4" }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/west, /area/shiva/exterior/junkyard/fortbiceps) "rWj" = ( /obj/effect/landmark/static_comms/net_two, @@ -22535,10 +19243,7 @@ /area/shiva/exterior/cp_colony_grounds) "rWS" = ( /obj/item/ammo_magazine/rifle/ap, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "rWW" = ( /obj/item/lightstick/red/spoke/planted{ @@ -22554,9 +19259,7 @@ /area/shiva/interior/aerodrome) "rXp" = ( /obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "rXt" = ( /obj/structure/cable/heavyduty{ @@ -22577,10 +19280,7 @@ /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/aux_power) "rZq" = ( /obj/structure/surface/table/reinforced/prison{ @@ -22599,20 +19299,14 @@ /turf/open/floor/wood, /area/shiva/interior/colony/botany) "rZD" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) "rZH" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "rZP" = ( /obj/structure/machinery/optable, @@ -22625,19 +19319,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "san" = ( /obj/structure/machinery/power/apc{ dir = 8; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "sax" = ( /turf/closed/wall/shiva/ice, @@ -22651,9 +19340,7 @@ /area/shiva/interior/caves/cp_camp) "sbd" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "sbj" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -22668,15 +19355,12 @@ dir = 4 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "scN" = ( /obj/structure/surface/table, /obj/item/device/assembly/infra, /obj/item/device/assembly/voice, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "sdF" = ( /obj/structure/surface/table, @@ -22687,23 +19371,17 @@ /obj/item/reagent_container/food/snacks/grown/goldapple{ pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "sdG" = ( /obj/structure/machinery/message_server, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "sef" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "sev" = ( /obj/structure/flora/tree/dead/tree_3, @@ -22764,10 +19442,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "shP" = ( /obj/structure/barricade/metal{ @@ -22776,9 +19451,7 @@ /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "siD" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -22799,10 +19472,7 @@ /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) "sjo" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northwest, /area/shiva/interior/colony/botany) "skl" = ( /obj/effect/decal/cleanable/dirt, @@ -22823,14 +19493,10 @@ /area/shiva/exterior/junkyard/cp_bar) "skG" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "slj" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "slC" = ( /obj/structure/surface/rack, @@ -22841,9 +19507,7 @@ /obj/item/weapon/ice_axe/red{ pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/s_lz2) "slO" = ( /turf/open/auto_turf/ice/layer1, @@ -22855,17 +19519,11 @@ "smy" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/garage) "smI" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "snN" = ( /obj/structure/flora/tree/dead/tree_1, @@ -22873,9 +19531,7 @@ /area/shiva/exterior/lz1_valley) "snX" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "sod" = ( /turf/open/auto_turf/snow/layer1, @@ -22884,16 +19540,11 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "soE" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "spo" = ( /obj/structure/flora/bush/snow{ @@ -22901,16 +19552,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"sqb" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) "sqy" = ( /obj/item/wrapping_paper, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "srJ" = ( /obj/structure/stairs/perspective/ice{ @@ -22929,9 +19574,7 @@ /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) "stN" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "stT" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -22964,9 +19607,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "swV" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -22984,28 +19625,19 @@ /area/shiva/exterior/cp_colony_grounds) "sxb" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "sxm" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "sxp" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/shiva/interior/colony/medseceng) "sxD" = ( /obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "sxT" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -23014,10 +19646,7 @@ "sym" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "syA" = ( /obj/structure/largecrate/random/case, @@ -23036,34 +19665,27 @@ /obj/item/weapon/ice_axe/red{ pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/exterior/cp_colony_grounds) "syV" = ( /obj/structure/surface/table/reinforced, /obj/item/stack/medical/bruise_pack, /obj/item/cell, /obj/item/clothing/gloves/yellow, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "szU" = ( /obj/structure/prop/ice_colony/flamingo/festive{ dir = 4 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "sAe" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "sAM" = ( /obj/structure/largecrate/random/barrel/blue, @@ -23071,9 +19693,7 @@ /area/shiva/exterior/junkyard) "sBh" = ( /obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "sBH" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -23086,9 +19706,7 @@ /obj/structure/prop/ice_colony/ice_crystal{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "sBT" = ( /obj/structure/flora/bush/snow, @@ -23096,18 +19714,14 @@ /area/shiva/exterior/cp_lz2) "sBW" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "sCc" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) "sCi" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -23136,9 +19750,7 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "sDd" = ( /obj/item/lightstick/planted, @@ -23174,26 +19786,19 @@ /obj/structure/closet, /obj/item/newspaper, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "sGs" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "sGI" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/clothing/head/cakehat, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "sGR" = ( /obj/item/lightstick/red/spoke/planted{ @@ -23202,29 +19807,19 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southwest, /area/shiva/exterior/junkyard/fortbiceps) "sHc" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "sHf" = ( /obj/item/paper/research_notes/grant, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "sHL" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "sII" = ( /obj/structure/closet/coffin, @@ -23233,9 +19828,7 @@ health = 80 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "sIP" = ( /obj/item/shard{ @@ -23256,9 +19849,7 @@ "sJs" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "sJD" = ( /obj/structure/window/framed/colony/reinforced, @@ -23272,17 +19863,13 @@ /obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "sKa" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "sKf" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -23304,10 +19891,7 @@ /obj/item/lightstick/red/spoke/planted{ pixel_x = 12 }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/icefloor/warnplate/southeast, /area/shiva/exterior/junkyard/fortbiceps) "sKO" = ( /obj/item/reagent_container/food/drinks/cans/ale{ @@ -23331,9 +19915,7 @@ /area/shiva/exterior/cp_colony_grounds) "sLV" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "sNi" = ( /obj/structure/stairs/perspective{ @@ -23348,25 +19930,18 @@ "sNZ" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "sOg" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "sPn" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox{ pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "sPo" = ( /obj/structure/barricade/handrail/wire{ @@ -23383,9 +19958,7 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "sPM" = ( /obj/structure/barricade/snow{ @@ -23396,16 +19969,11 @@ "sQt" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/shiva/interior/colony/central) "sQU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "sQX" = ( /turf/open/auto_turf/ice/layer0, @@ -23436,16 +20004,11 @@ /area/shiva/interior/caves/s_lz2) "sVV" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "sWt" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "sXr" = ( /obj/structure/surface/table/reinforced/prison, @@ -23453,9 +20016,7 @@ pixel_y = 7 }, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "sXt" = ( /obj/structure/machinery/light/double, @@ -23466,17 +20027,13 @@ pixel_x = 8; pixel_y = -3 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "sXP" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "sXZ" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -23513,9 +20070,7 @@ /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "tad" = ( /obj/structure/platform/strata{ @@ -23533,9 +20088,7 @@ /obj/item/tool/kitchen/rollingpin, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "tbR" = ( /obj/structure/surface/table, @@ -23551,17 +20104,11 @@ /area/shiva/exterior/lz1_valley) "tcG" = ( /obj/item/weapon/gun/pistol/highpower, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "tcI" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) "tcR" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -23578,9 +20125,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "tdG" = ( /obj/structure/platform_decoration/strata{ @@ -23601,10 +20146,7 @@ /area/shiva/interior/colony/n_admin) "tef" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "tes" = ( /obj/structure/platform/strata, @@ -23629,10 +20171,7 @@ /area/shiva/exterior/junkyard/fortbiceps) "teD" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "teK" = ( /obj/structure/stairs/perspective/ice{ @@ -23654,10 +20193,7 @@ /obj/item/storage/fancy/cigarettes/lucky_strikes{ pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "thB" = ( /obj/structure/window/reinforced/tinted{ @@ -23669,15 +20205,11 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "tiw" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) "tiO" = ( /obj/structure/fence, @@ -23689,9 +20221,7 @@ "tkb" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "tkm" = ( /obj/structure/largecrate/random/case, @@ -23722,10 +20252,7 @@ /area/shiva/interior/caves/cp_camp) "tlX" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "tmh" = ( /obj/effect/decal/cleanable/blood/drip, @@ -23733,18 +20260,14 @@ /area/shiva/interior/bar) "tmi" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "tmI" = ( /obj/structure/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/central) "tmP" = ( /obj/structure/largecrate/random/case/double, @@ -23759,10 +20282,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) "tnh" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/interior/colony/n_admin) "tnu" = ( /turf/closed/wall/shiva/prefabricated, @@ -23770,9 +20290,7 @@ "tnz" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "tnG" = ( /obj/structure/inflatable, @@ -23789,9 +20307,7 @@ pixel_y = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "tnU" = ( /obj/structure/machinery/power/apc{ @@ -23810,10 +20326,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) "toA" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "toD" = ( /turf/open/auto_turf/ice/layer1, @@ -23826,10 +20339,7 @@ /area/shiva/exterior/cp_colony_grounds) "toN" = ( /obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "toO" = ( /obj/item/stack/rods, @@ -23837,7 +20347,7 @@ /area/shiva/interior/caves/cp_camp) "tpg" = ( /turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "tpL" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" @@ -23846,10 +20356,7 @@ icon_state = "road_edge_decal5"; pixel_x = -14 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "tqs" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ @@ -23859,16 +20366,11 @@ dir = 5; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "tqL" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "trj" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -23897,9 +20399,7 @@ pixel_x = 3; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "tsU" = ( /obj/structure/machinery/light/double, @@ -23909,9 +20409,7 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "ttN" = ( /obj/structure/machinery/sensortower{ @@ -23939,25 +20437,18 @@ /area/shiva/exterior/junkyard/cp_bar) "tvo" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "twc" = ( /obj/item/paper/research_notes/decent, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "twi" = ( /obj/structure/girder, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) "twt" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/research_hab) "twD" = ( /obj/structure/machinery/iv_drip, @@ -23965,42 +20456,26 @@ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "twG" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/shiva/interior/colony/central) "txA" = ( /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) "txS" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/aux_power) "txU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "txX" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "tyi" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -24021,9 +20496,7 @@ dir = 4; pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "tze" = ( /obj/item/device/flashlight/lamp/tripod/grey, @@ -24036,16 +20509,10 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/aux_power) "tzH" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/deck) "tAc" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -24059,9 +20526,7 @@ /area/shiva/exterior/junkyard/cp_bar) "tCi" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "tDb" = ( /obj/structure/platform/shiva/catwalk, @@ -24098,9 +20563,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "tEE" = ( /obj/structure/blocker/invisible_wall, @@ -24150,28 +20613,21 @@ /area/shiva/interior/aerodrome) "tGS" = ( /obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "tGU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Colony Dormitories Canteen"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "tHd" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) "tHD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "tHJ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ @@ -24181,9 +20637,7 @@ /area/shiva/interior/caves/cp_camp) "tIR" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "tJe" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -24200,9 +20654,7 @@ /obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/botany) "tJP" = ( /obj/structure/flora/tree/dead/tree_4, @@ -24220,16 +20672,11 @@ icon_state = "road_edge_decal8"; pixel_x = -14 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "tKd" = ( /obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "tKg" = ( /obj/structure/flora/bush/snow{ @@ -24239,9 +20686,7 @@ /area/shiva/interior/colony/central) "tKk" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "tKv" = ( /obj/structure/largecrate/random/mini/wooden{ @@ -24258,9 +20703,7 @@ /area/shiva/exterior/telecomm/lz2_southeast) "tLz" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "tLC" = ( /obj/item/lightstick/red/variant/planted, @@ -24296,33 +20739,24 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "tMY" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/cp_lz2) "tNm" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "tNN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/t_scanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "tNP" = ( /obj/structure/surface/table, @@ -24331,9 +20765,7 @@ pixel_y = 10 }, /obj/item/storage/firstaid/adv, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "tOo" = ( /obj/effect/spider/stickyweb, @@ -24354,9 +20786,7 @@ pixel_x = -1; pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "tPs" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -24366,9 +20796,7 @@ /area/shiva/interior/caves/cp_camp) "tPz" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "tPB" = ( /obj/structure/platform/strata, @@ -24387,20 +20815,14 @@ dir = 1; name = "\improper Colony Storeroom" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/shiva/interior/telecomm/lz1_biceps) "tQK" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "tQN" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/lz2_habs) "tQR" = ( /obj/structure/bed/chair{ @@ -24410,9 +20832,7 @@ dir = 8; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "tRq" = ( /obj/structure/filingcabinet{ @@ -24424,9 +20844,7 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "tRN" = ( /obj/structure/largecrate/random{ @@ -24449,26 +20867,20 @@ /obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "tSt" = ( /obj/structure/barricade/handrail/strata, /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "tSI" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "tTc" = ( /obj/effect/landmark/monkey_spawn, @@ -24491,9 +20903,7 @@ /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "tUe" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -24523,18 +20933,14 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "tWv" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/colony/medseceng) "tWz" = ( /obj/structure/machinery/space_heater, @@ -24544,16 +20950,11 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "tXd" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) "tXe" = ( /obj/effect/landmark/monkey_spawn, @@ -24565,15 +20966,11 @@ /area/shiva/interior/aerodrome) "tYa" = ( /obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "tYm" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "tYw" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -24596,10 +20993,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) "tZA" = ( /obj/structure/surface/table/reinforced/prison, @@ -24612,15 +21006,11 @@ pixel_x = 7; pixel_y = 14 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "tZM" = ( /obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "tZW" = ( /obj/structure/surface/rack, @@ -24657,9 +21047,7 @@ id = "nlz_shutters"; name = "\improper Bio-lab Shutters" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "ucn" = ( /obj/structure/largecrate/random/mini/med{ @@ -24689,10 +21077,7 @@ /area/shiva/exterior/junkyard) "udJ" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "uee" = ( /obj/item/weapon/gun/revolver/cmb, @@ -24702,19 +21087,14 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "ueG" = ( /obj/structure/prop/souto_land/streamer{ dir = 9 }, /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "ueX" = ( /obj/item/ammo_magazine/rifle/boltaction, @@ -24725,9 +21105,7 @@ dir = 1; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "ufd" = ( /obj/structure/surface/table, @@ -24743,9 +21121,7 @@ pixel_x = -3; pixel_y = -1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ufA" = ( /obj/structure/surface/table/reinforced, @@ -24782,31 +21158,22 @@ /area/shiva/interior/oob) "ugP" = ( /obj/structure/computerframe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "uhe" = ( /obj/structure/machinery/colony_floodlight{ pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/cp_lz2) "uhL" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "uhO" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "uhV" = ( /obj/structure/machinery/alarm{ @@ -24816,24 +21183,17 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/shiva/interior/colony/medseceng) "uig" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "uim" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "uir" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -24858,16 +21218,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/medseceng) "ujJ" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "ujV" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ @@ -24876,9 +21231,7 @@ /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "ukp" = ( /turf/open/auto_turf/ice/layer1, @@ -24888,9 +21241,7 @@ /obj/item/tool/wrench, /obj/item/tool/screwdriver, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ukU" = ( /obj/structure/surface/table, @@ -24899,15 +21250,11 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "ulm" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "ulD" = ( /obj/structure/cable/heavyduty{ @@ -24930,15 +21277,10 @@ "umj" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "umm" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "umB" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -24947,9 +21289,7 @@ /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "uot" = ( /obj/structure/largecrate/random/case, @@ -24957,9 +21297,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "uoI" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -24994,10 +21332,7 @@ /area/shiva/exterior/junkyard/fortbiceps) "upp" = ( /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) "upK" = ( /obj/effect/landmark/corpsespawner/engineer, @@ -25009,10 +21344,7 @@ /area/shiva/exterior/lz1_valley) "uqS" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "urX" = ( /obj/structure/flora/bush/snow{ @@ -25021,10 +21353,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) "ush" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/garage) "usZ" = ( /obj/structure/barricade/handrail/wire{ @@ -25041,9 +21370,7 @@ /area/shiva/interior/caves/cp_camp) "uuv" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "uuN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -25057,9 +21384,7 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "uvU" = ( /obj/effect/decal/cleanable/blood, @@ -25069,9 +21394,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibhead" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "uwz" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -25083,28 +21406,18 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "uxH" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "uxO" = ( /obj/structure/bed, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "uxV" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/botany) "uxZ" = ( /obj/effect/decal/warning_stripes{ @@ -25122,9 +21435,7 @@ "uyJ" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) "uzf" = ( /obj/effect/landmark/yautja_teleport, @@ -25134,9 +21445,7 @@ /obj/structure/surface/rack, /obj/item/circuitboard/airalarm, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "uzu" = ( /turf/open/auto_turf/snow/layer4, @@ -25146,15 +21455,11 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) "uzP" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) "uzU" = ( /obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "uAd" = ( /obj/structure/lz_sign/ice_sign{ @@ -25165,9 +21470,7 @@ "uAq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "uAM" = ( /obj/item/lightstick/red/spoke/planted{ @@ -25179,9 +21482,7 @@ /area/shiva/exterior/cp_colony_grounds) "uBz" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "uCp" = ( /obj/structure/machinery/light/small{ @@ -25194,23 +21495,17 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) "uCO" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/exterior/cp_lz2) "uDb" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "uDZ" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-east" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "uEo" = ( /obj/structure/platform/strata, @@ -25221,10 +21516,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "uFl" = ( /obj/structure/barricade/snow{ @@ -25243,18 +21535,13 @@ /obj/structure/surface/table, /obj/item/device/flashlight, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "uFA" = ( /obj/item/weapon/gun/boltaction{ pixel_x = -6 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "uGq" = ( /turf/open/floor/plating, @@ -25262,9 +21549,7 @@ "uGw" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "uHa" = ( /obj/structure/morgue, @@ -25272,24 +21557,18 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "uHA" = ( /obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "uHH" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "uIC" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -25310,9 +21589,7 @@ "uII" = ( /obj/structure/surface/table, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "uIO" = ( /obj/item/lightstick/red/variant/planted{ @@ -25335,10 +21612,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) "uJj" = ( /obj/structure/flora/bush/snow{ @@ -25349,10 +21623,7 @@ /area/shiva/exterior/cp_colony_grounds) "uJk" = ( /obj/item/weapon/broken_bottle, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/north, /area/shiva/interior/colony/botany) "uJL" = ( /obj/item/lightstick/red/spoke/planted{ @@ -25378,23 +21649,17 @@ pixel_y = 14 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "uKB" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "uKN" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "uKV" = ( /obj/structure/surface/table, @@ -25405,10 +21670,7 @@ pixel_x = 5; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "uKZ" = ( /turf/closed/wall/shiva/prefabricated, @@ -25436,10 +21698,7 @@ }, /obj/item/paper/research_notes, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "uLq" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -25449,17 +21708,11 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/east, /area/shiva/interior/lz2_habs) "uLu" = ( /obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "uLT" = ( /obj/structure/machinery/conveyor, @@ -25480,19 +21733,14 @@ /area/shiva/interior/colony/medseceng) "uOR" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "uPo" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/shiva/interior/colony/central) "uPv" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -25526,22 +21774,16 @@ /area/shiva/interior/colony/central) "uRi" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "uRn" = ( /obj/item/weapon/gun/boltaction, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "uRt" = ( /obj/structure/closet/radiation, /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "uRK" = ( /obj/structure/surface/table, @@ -25551,10 +21793,7 @@ pixel_x = 24 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "uSd" = ( /obj/structure/flora/bush/snow{ @@ -25563,10 +21802,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) "uSe" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "uSF" = ( /mob/living/simple_animal/hostile/giant_spider/nurse, @@ -25579,10 +21815,7 @@ "uTB" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "uTL" = ( /obj/item/tool/pickaxe/diamond{ @@ -25596,15 +21829,11 @@ /obj/effect/landmark/nightmare{ insert_tag = "lz2-southeast-gate" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "uTN" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "uVa" = ( /obj/structure/machinery/power/terminal{ @@ -25614,16 +21843,11 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "uVK" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "uWi" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -25639,20 +21863,13 @@ /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "uXQ" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) "uYa" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "greencorners" - }, +/turf/open/floor/shiva/greencorners/north, /area/shiva/interior/colony/botany) "uYg" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -25662,15 +21879,11 @@ /area/shiva/interior/colony/medseceng) "uYl" = ( /obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "uYt" = ( /obj/structure/reagent_dispensers, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "uYC" = ( /turf/closed/wall/shiva/prefabricated, @@ -25683,22 +21896,16 @@ /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) "uZf" = ( -/turf/open/floor/shiva{ - icon_state = "wredcorners" - }, +/turf/open/floor/shiva/wredcorners, /area/shiva/interior/colony/medseceng) "uZl" = ( -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/botany) "uZJ" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "uZU" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -25716,9 +21923,7 @@ /obj/item/tool/pen/blue{ pixel_x = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "vbm" = ( /obj/structure/bed/chair/comfy/orange, @@ -25726,36 +21931,23 @@ /area/shiva/interior/colony/central) "vbA" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "vcx" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/item/device/radio, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "vcU" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) "vdb" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"vdk" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) "vdw" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -25771,18 +21963,14 @@ /area/shiva/interior/caves/s_lz2) "vdC" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "vdS" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "veo" = ( /obj/structure/surface/table, @@ -25791,21 +21979,14 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) "ver" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "ves" = ( /obj/structure/machinery/light/double, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) "veu" = ( /obj/structure/platform_decoration/strata, @@ -25813,10 +21994,7 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) "vey" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northeast, /area/shiva/interior/colony/medseceng) "veS" = ( /obj/structure/largecrate/random/case/double, @@ -25826,10 +22004,7 @@ /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_lz2) "vfd" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) "vgR" = ( /obj/structure/platform_decoration/strata, @@ -25838,25 +22013,17 @@ "vhp" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "vhG" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher/mini, /obj/item/circuitboard/airlock, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "vhL" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "vhM" = ( /obj/structure/flora/tree/dead/tree_4, @@ -25864,9 +22031,7 @@ /area/shiva/exterior/junkyard) "vhQ" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "vip" = ( /obj/structure/platform_decoration/shiva/catwalk{ @@ -25876,27 +22041,20 @@ /area/shiva/exterior/valley) "viy" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "viF" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "vjs" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "vjy" = ( /obj/item/lightstick/red/planted, @@ -25911,10 +22069,7 @@ /area/shiva/interior/bar) "vkq" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "vkr" = ( /obj/item/device/flashlight, @@ -25922,9 +22077,7 @@ /area/shiva/exterior/cp_s_research) "vkZ" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) "vlh" = ( /obj/structure/platform/strata{ @@ -25937,9 +22090,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) "vmy" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "vnc" = ( /obj/structure/platform/strata, @@ -25950,10 +22101,7 @@ req_access_txt = "100" }, /obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) "vnF" = ( /obj/structure/surface/table, @@ -25967,9 +22115,7 @@ /area/shiva/interior/telecomm/lz1_biceps) "vnX" = ( /obj/item/stack/barbed_wire, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "vom" = ( /obj/structure/barricade/sandbags/wired{ @@ -25983,7 +22129,7 @@ dir = 8 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "voH" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = 1; @@ -25996,14 +22142,10 @@ /area/shiva/exterior/telecomm/lz1_north) "vpZ" = ( /obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "vqq" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/central) "vqw" = ( /obj/structure/platform/strata, @@ -26021,14 +22163,12 @@ dir = 9 }, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "vrm" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "vrG" = ( /obj/structure/largecrate/random/barrel/blue, @@ -26038,16 +22178,12 @@ /obj/effect/decal/warning_stripes{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "vsi" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/wy_mre, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "vty" = ( /obj/item/shard{ @@ -26062,17 +22198,13 @@ /area/shiva/interior/caves/cp_camp) "vuj" = ( /obj/structure/bed/roller, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "vvb" = ( /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "vwn" = ( /obj/effect/decal/cleanable/blood/drip, @@ -26081,9 +22213,7 @@ "vwv" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "vwx" = ( /obj/item/lightstick/red/spoke/planted{ @@ -26097,26 +22227,19 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "vxg" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) "vxE" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/central) "vxW" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "vym" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -26133,9 +22256,7 @@ /obj/structure/noticeboard{ pixel_y = -32 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "vzM" = ( /obj/structure/flora/bush/snow{ @@ -26164,15 +22285,10 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "vAT" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/shiva/green/northeast, /area/shiva/interior/colony/botany) "vAU" = ( /obj/structure/platform/strata{ @@ -26190,17 +22306,11 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) "vBm" = ( /obj/item/clipboard, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "vCe" = ( /obj/structure/flora/bush/snow{ @@ -26226,26 +22336,19 @@ /obj/item/device/assembly/igniter, /obj/item/device/assembly/signaller, /obj/item/circuitboard/airlock, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "vCv" = ( /obj/structure/surface/table, /obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "vDB" = ( /obj/structure/barricade/metal{ dir = 4 }, /obj/structure/barricade/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "vDD" = ( /obj/structure/flora/pottedplant, @@ -26261,10 +22364,7 @@ /area/shiva/interior/colony/botany) "vFq" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "vFR" = ( /obj/structure/machinery/space_heater, @@ -26272,9 +22372,7 @@ /area/shiva/interior/aerodrome) "vFX" = ( /obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "vGY" = ( /obj/structure/barricade/snow{ @@ -26292,9 +22390,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) "vHM" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/botany) "vHT" = ( /obj/structure/surface/table/woodentable, @@ -26311,9 +22407,7 @@ /obj/structure/machinery/power/apc{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "vIy" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -26331,39 +22425,27 @@ /area/shiva/interior/caves/cp_camp) "vIL" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "vJh" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) "vJu" = ( /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/exterior/valley) "vKu" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) "vKx" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "vMX" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) "vNJ" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "vNN" = ( /obj/structure/fence, @@ -26376,10 +22458,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) "vOd" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "vOv" = ( /obj/structure/bookcase{ @@ -26390,10 +22469,7 @@ "vOP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) "vPr" = ( /turf/open/auto_turf/snow/layer3, @@ -26411,16 +22487,11 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "vQm" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "vQZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -26448,20 +22519,14 @@ /area/shiva/exterior/cp_colony_grounds) "vTc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "vTh" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/red/east, /area/shiva/interior/colony/medseceng) "vTi" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -26474,10 +22539,7 @@ /area/shiva/interior/caves/cp_camp) "vTj" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) "vUC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, @@ -26491,10 +22553,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) "vUL" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/garage) "vUR" = ( /turf/closed/wall/shiva/ice, @@ -26505,10 +22564,7 @@ /area/shiva/interior/aerodrome) "vWf" = ( /obj/item/restraint/handcuffs, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "vWt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -26522,16 +22578,11 @@ /area/shiva/exterior/cp_lz2) "vXh" = ( /obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "vXk" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "vXl" = ( /obj/structure/flora/bush/snow{ @@ -26553,16 +22604,11 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/purple/west, /area/shiva/interior/lz2_habs) "vZj" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "vZS" = ( /obj/structure/platform/strata{ @@ -26588,9 +22634,7 @@ /area/shiva/interior/aerodrome) "wck" = ( /obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "wcF" = ( /obj/item/lightstick/red/spoke/planted{ @@ -26605,21 +22649,15 @@ pixel_x = -7; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "wfl" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "wfB" = ( /obj/item/book/manual/security_space_law, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "wfH" = ( /obj/item/lightstick/red/spoke/planted{ @@ -26638,9 +22676,7 @@ /obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "wfP" = ( /obj/item/lightstick/red/spoke/planted{ @@ -26668,10 +22704,7 @@ dir = 5; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) "wgM" = ( /obj/structure/barricade/snow, @@ -26679,18 +22712,14 @@ /area/shiva/exterior/lz1_valley) "wgW" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "wgX" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "whI" = ( /obj/item/weapon/gun/boltaction, @@ -26698,22 +22727,15 @@ /area/shiva/exterior/junkyard) "whS" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "whU" = ( /obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) "wil" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "wiy" = ( /obj/structure/barricade/snow{ @@ -26727,9 +22749,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/n_admin) "wje" = ( /turf/open/auto_turf/ice/layer2, @@ -26758,18 +22778,14 @@ pixel_x = 4; pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "wlj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/central) "wls" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "wlJ" = ( /turf/open/auto_turf/snow/layer2, @@ -26778,14 +22794,10 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) "wnK" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "woB" = ( /obj/item/clothing/shoes/snow, @@ -26797,27 +22809,20 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) "wpl" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "wpG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Colony Security Checkpoint" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "wpW" = ( /obj/item/stack/rods, @@ -26830,9 +22835,7 @@ /area/shiva/interior/colony/research_hab) "wqQ" = ( /obj/item/tool/screwdriver, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "wsz" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -26848,10 +22851,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) "wtC" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/n_admin) "wui" = ( /obj/structure/bed/chair/office/dark{ @@ -26887,9 +22887,7 @@ pixel_y = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "wwl" = ( /obj/item/lightstick/red/spoke/planted{ @@ -26914,9 +22912,7 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "wwZ" = ( /obj/structure/stairs/perspective{ @@ -26934,15 +22930,11 @@ /obj/item/tool/soap{ pixel_x = -7 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "wxu" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "wxY" = ( /obj/structure/fence, @@ -26984,9 +22976,7 @@ /obj/item/device/flashlight/lamp{ pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "wCn" = ( /obj/structure/largecrate/random/mini/med{ @@ -26994,15 +22984,10 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "wCz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/shiva/interior/colony/central) "wCP" = ( /turf/closed/wall/shiva/ice, @@ -27012,9 +22997,7 @@ dir = 9; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "wCX" = ( /obj/structure/platform_decoration/strata{ @@ -27027,9 +23010,7 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "wFm" = ( /obj/structure/surface/rack, @@ -27044,27 +23025,17 @@ /area/shiva/interior/colony/central) "wFw" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, +/turf/open/floor/shiva/greenfull, /area/shiva/interior/colony/n_admin) "wFB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "wGD" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/s_admin) "wHi" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/central) "wHr" = ( /obj/structure/machinery/computer/cameras{ @@ -27074,9 +23045,7 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) "wHx" = ( /obj/vehicle/train/cargo/trolley, @@ -27084,10 +23053,7 @@ /turf/open/asphalt/cement, /area/shiva/interior/warehouse) "wHA" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/east, /area/shiva/interior/colony/n_admin) "wHZ" = ( /obj/effect/landmark/objective_landmark/medium, @@ -27106,31 +23072,22 @@ pixel_x = -5; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "wJd" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "wJp" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/n_admin) "wKk" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "wLM" = ( /obj/structure/stairs/perspective{ @@ -27150,25 +23107,18 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "wMC" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/deck) "wMR" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "wNj" = ( /obj/structure/window/framed/shiva, @@ -27183,13 +23133,10 @@ dir = 4 }, /turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "wOq" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/medseceng) "wOO" = ( /obj/structure/closet/secure_closet/medical3{ @@ -27198,9 +23145,7 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "wPs" = ( /obj/item/lightstick/red/variant/planted, @@ -27229,15 +23174,10 @@ /turf/open/floor/plating, /area/shiva/interior/colony/central) "wRa" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) "wRi" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/aux_power) "wRm" = ( /turf/open/floor/plating, @@ -27256,9 +23196,7 @@ pixel_x = -24 }, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "wTg" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -27275,9 +23213,7 @@ pixel_x = 7; pixel_y = 14 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/shiva/interior/colony/research_hab) "wTx" = ( /obj/effect/spawner/random/toolbox, @@ -27313,9 +23249,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "wVJ" = ( /obj/structure/platform_decoration/shiva/catwalk{ @@ -27324,25 +23258,18 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) "wWu" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "wWY" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "wXh" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "wXs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -27350,9 +23277,7 @@ /area/shiva/interior/aerodrome) "wXQ" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "wYd" = ( /obj/structure/surface/table/reinforced/prison, @@ -27365,9 +23290,7 @@ pixel_y = 11 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "wZh" = ( /obj/structure/surface/table/reinforced/prison, @@ -27392,18 +23315,14 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "xar" = ( /obj/structure/surface/table, /obj/item/storage/box/syringes{ pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "xaw" = ( /obj/structure/window/reinforced/tinted{ @@ -27412,9 +23331,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "xbz" = ( /obj/structure/window/framed/shiva, @@ -27423,23 +23340,17 @@ /area/shiva/interior/colony/medseceng) "xbP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "xbZ" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) "xcE" = ( /obj/structure/inflatable/popped, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "xde" = ( /obj/structure/closet/cabinet, @@ -27449,17 +23360,12 @@ /area/shiva/interior/colony/botany) "xdk" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "xdT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/aux_power) "xeq" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ @@ -27491,9 +23397,7 @@ layer = 2.9; name = "souto graffiti" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "xhJ" = ( /obj/item/tool/wet_sign, @@ -27506,28 +23410,21 @@ /area/shiva/interior/caves/cp_camp) "xiu" = ( /obj/structure/machinery/vending/cola/research, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "xiY" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) "xjg" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/deck) "xkf" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "xkV" = ( /obj/structure/surface/table, @@ -27539,9 +23436,7 @@ pixel_x = -5; pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) "xlg" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -27551,25 +23446,18 @@ /area/shiva/exterior/cp_lz2) "xmS" = ( /obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "xnM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "xoi" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "xqe" = ( /obj/structure/bed/chair/comfy/orange{ @@ -27577,18 +23465,13 @@ }, /obj/item/paper_bin, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "xqf" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/bar) "xru" = ( /obj/structure/foamed_metal, @@ -27604,9 +23487,7 @@ /area/shiva/interior/caves/cp_camp) "xsD" = ( /obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "xtc" = ( /obj/structure/platform/strata{ @@ -27644,9 +23525,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) "xvp" = ( /obj/item/lightstick/red/variant/planted, @@ -27667,30 +23546,27 @@ /area/shiva/interior/warehouse) "xvS" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "xwi" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) +"xwk" = ( +/obj/item/lightstick/red/variant, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "xwo" = ( /obj/structure/platform/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/junkyard) "xwL" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/n_admin) "xxY" = ( /obj/item/lightstick/red/spoke/planted{ @@ -27732,9 +23608,7 @@ pixel_y = -24 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/central) "xzO" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -27767,9 +23641,7 @@ "xBo" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "xCj" = ( /obj/structure/machinery/power/terminal{ @@ -27779,9 +23651,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "xCz" = ( /obj/effect/decal/warning_stripes{ @@ -27795,9 +23665,7 @@ /area/shiva/exterior/junkyard) "xCA" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "xCD" = ( /obj/effect/decal/cleanable/blood{ @@ -27814,9 +23682,7 @@ dir = 8; pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "xCW" = ( /obj/structure/prop/ice_colony/flamingo{ @@ -27831,30 +23697,21 @@ "xDq" = ( /obj/structure/closet/radiation, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "xEd" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "xEu" = ( /obj/structure/morgue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "xEw" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) "xEB" = ( /obj/item/tool/warning_cone, @@ -27864,9 +23721,7 @@ /obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "xFM" = ( /obj/structure/platform_decoration/strata{ @@ -27881,32 +23736,22 @@ /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) "xFR" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/west, /area/shiva/interior/colony/n_admin) "xGR" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) "xHu" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "xHv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/aerodrome) "xIL" = ( /obj/item/powerloader_clamp, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "xIO" = ( /obj/item/lightstick/red/spoke/planted{ @@ -27922,17 +23767,13 @@ pixel_y = 24 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "xJA" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "xLy" = ( /obj/structure/platform/strata, @@ -27955,24 +23796,18 @@ /area/shiva/exterior/lz1_valley) "xMC" = ( /obj/item/bananapeel, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "xMH" = ( /obj/structure/machinery/power/apc{ dir = 1; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) "xMQ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "xMS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -27986,31 +23821,21 @@ "xMX" = ( /obj/effect/spawner/random/toolbox, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/cp_camp) "xNe" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "xOb" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) "xPd" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/bar) "xQa" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "xQj" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -28019,32 +23844,23 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) "xQJ" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "xQQ" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Colony Dormitories" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "xRg" = ( /obj/structure/surface/rack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/telecomm/lz1_biceps) "xRi" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ req_access_txt = "102" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "xRy" = ( /obj/effect/decal/cleanable/ash, @@ -28065,10 +23881,7 @@ "xSk" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) "xTK" = ( /obj/structure/inflatable/popped, @@ -28081,18 +23894,12 @@ /obj/item/weapon/ice_axe/red{ pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) "xUm" = ( /obj/item/stack/sheet/metal, /obj/item/shard, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "xUt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -28102,10 +23909,7 @@ /area/shiva/exterior/cp_lz2) "xVo" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/shiva/blue/west, /area/shiva/interior/colony/n_admin) "xVZ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ @@ -28127,9 +23931,7 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "xXM" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ @@ -28144,9 +23946,7 @@ "xXV" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "xYx" = ( /turf/open/auto_turf/ice/layer1, @@ -28159,31 +23959,21 @@ /area/shiva/exterior/cp_lz2) "xZW" = ( /obj/item/trash/hotdog, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) "ycc" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) "ydz" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "ydP" = ( /obj/structure/girder/displaced, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "yer" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -28196,10 +23986,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "yez" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -28210,9 +23997,7 @@ /area/shiva/interior/colony/medseceng) "yfE" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "yfY" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -28224,19 +24009,14 @@ /obj/structure/surface/rack, /obj/item/circuitboard/apc, /obj/item/circuitboard/apc, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "ygp" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/ice_crystal{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "yhA" = ( /obj/structure/fence, @@ -28248,22 +24028,14 @@ pixel_x = -5; pixel_y = -2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "yiw" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wredcorners" - }, +/turf/open/floor/shiva/wredcorners/east, /area/shiva/interior/colony/medseceng) "yiS" = ( /obj/structure/powerloader_wreckage, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) "yjh" = ( /obj/structure/surface/table/reinforced/prison, @@ -28271,18 +24043,14 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "yjn" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) "yjM" = ( /obj/structure/barricade/handrail/wire, @@ -28296,9 +24064,7 @@ /obj/structure/surface/table, /obj/item/storage/bag/plants, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) "ykq" = ( /obj/structure/surface/table/reinforced/prison, @@ -28307,9 +24073,7 @@ pixel_x = 5; pixel_y = 10 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ylz" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -28326,15 +24090,11 @@ /obj/structure/machinery/colony_floodlight_switch{ pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "ylP" = ( /obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "ylU" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -28344,9 +24104,7 @@ /area/shiva/interior/caves/cp_camp) "ylZ" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) (1,1,1) = {" @@ -34636,7 +30394,7 @@ mcH mcH mcH mcH -nEH +mcH mcH mcH mcH @@ -34952,22 +30710,22 @@ pvv pvv fRg uji -aDM -uqb -uqb -uqb -kLM -kLM -iQq -iQq -iQq -iQq -kLM -kLM -sqb -lNg -aDM -aDM +ofw +kop +kop +kop +tHd +tHd +kyD +kyD +kyD +kyD +tHd +tHd +rtZ +jMf +ofw +ofw huz huz huz @@ -35114,22 +30872,22 @@ pvv pvv fRg hGj -kLM -iOu -uqb -kJQ -uqb -iQq -iQq -iQq -iQq -kLM -iQq -kLM -uqb -kLM +tHd +xvp +kop +xwk +kop +kyD +kyD +kyD +kyD +tHd +kyD +tHd +kop +tHd que -aDM +ofw huz kys pef @@ -35276,22 +31034,22 @@ pvv pvv fRg hGj -kLM -iQq -kLM -uqb -kLM -iQq -iQq -iQq -iQq -iQq -kLM -iQq -iQq -kLM -kLM -kLM +tHd +kyD +tHd +kop +tHd +kyD +kyD +kyD +kyD +kyD +tHd +kyD +kyD +tHd +tHd +tHd huz krU axJ @@ -35438,22 +31196,22 @@ pvv pvv gxK hGj -iQq -iQq -iQq -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -kLM -kLM -iQq -iQq -iQq +kyD +kyD +kyD +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD +tHd +tHd +kyD +kyD +kyD huz axJ axJ @@ -35600,21 +31358,21 @@ dbH fhv fRg hGj -kLM -kLM -iQq -iQq -kLM -vdk -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq +tHd +tHd +kyD +kyD +tHd +fHx +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD tpg exX qIr @@ -35762,21 +31520,21 @@ aUA gIQ fRg hGj -uqb -uqb -uqb -kLM -iQq -ipc -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq +kop +kop +kop +tHd +kyD +dyt +kyD +kyD +kyD +rNY +kyD +kyD +kyD +kyD +kyD eSN akF alS @@ -35924,21 +31682,21 @@ deV eVG fRg hGj -uqb -kLM -kLM -iQq -iQq -ipc -iQq -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq +kop +tHd +tHd +kyD +kyD +dyt +kyD +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD tpg exX qIr @@ -36086,21 +31844,21 @@ dKR pvv fRg hGj -kLM -iQq -iQq -iQq -iQq -iQq -kLM -kLM -uqb -kLM -iQq -iQq -iQq -iQq -iQq +tHd +kyD +kyD +kyD +kyD +kyD +tHd +tHd +kop +tHd +kyD +kyD +kyD +kyD +kyD tpg exX qIr @@ -36248,22 +32006,22 @@ pvv pvv fRg hGj -iQq -iQq -iQq -iQq -iQq -iQq -kLM -aDM -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq +kyD +kyD +kyD +kyD +kyD +kyD +tHd +ofw +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD huz aut rdS @@ -36410,22 +32168,22 @@ pvv pvv fRg hGj -iQq -iOu -kLM -iOu -kLM -kLM -iQq -kLM -iQq -iQq -iQq -iQq +kyD +xvp +tHd +xvp +tHd +tHd +kyD +tHd +kyD +kyD +kyD +kyD pKK -iQq -iOu -kLM +kyD +xvp +tHd huz rdS axJ @@ -36577,12 +32335,12 @@ khx jac khx iHu -idG -kLM -iQq -iQq -kLM -kLM +jXD +tHd +kyD +kyD +tHd +tHd huz huz huz @@ -36739,12 +32497,12 @@ iMA iMA uKZ ehV -aDM -kTP -iQq -iQq -kLM -uqb +ofw +aQJ +kyD +kyD +tHd +kop huz cio ieD @@ -36902,10 +32660,10 @@ cLq iMA avx voo -kLM -iQq -iQq -kLM +tHd +kyD +kyD +tHd tpg exX qIr @@ -37063,11 +32821,11 @@ fRg xQa iMA avx -uqb -kLM -iQq -iQq -kLM +kop +tHd +kyD +kyD +tHd tpg exX alW @@ -37225,12 +32983,12 @@ fRg uKZ uKZ vqV -kLM -kLM -iQq -iQq -iQq -kLM +tHd +tHd +kyD +kyD +kyD +tHd huz pJM ayZ @@ -37387,12 +33145,12 @@ fRg iMA nIA scp -kLM -iQq -iQq -kLM -iQq -iQq +tHd +kyD +kyD +tHd +kyD +kyD huz aQq axJ @@ -37548,13 +33306,13 @@ pvv oCG kjM oCG -iQq -iQq -iQq -kLM -aDM -kLM -iQq +kyD +kyD +kyD +tHd +ofw +tHd +kyD huz huz avz @@ -37710,14 +33468,14 @@ pvv oCG wRm oCG -iQq -iQq -iQq +kyD +kyD +kyD szU -kLM -iQq -iQq -uqb +tHd +kyD +kyD +kop ncS pTp pTp @@ -37873,13 +33631,13 @@ fRg iMA tLC hye -kLM -iQq -kLM -iQq -iQq -kLM -uqb +tHd +kyD +tHd +kyD +kyD +tHd +kop ncS mRc rdS @@ -38035,13 +33793,13 @@ iMA uKZ uKZ ehV -kLM -iQq -iQq -iQq -kLM -kLM -uqb +tHd +kyD +kyD +kyD +tHd +tHd +kop ncS bWB auh @@ -38197,12 +33955,12 @@ obb vHX iMA ehV -kLM -iQq -iQq -kLM -uqb -uqb +tHd +kyD +kyD +tHd +kop +kop huz huz auh @@ -38359,11 +34117,11 @@ krm iXx iMA ehV -uqb -kLM -iQq +kop +tHd +kyD nAs -uqb +kop ajE huz qSW @@ -38521,11 +34279,11 @@ iMA iMA uKZ ehV -uqb -kLM -iQq -iQq -kLM +kop +tHd +kyD +kyD +tHd ajd huz fjS @@ -38683,11 +34441,11 @@ jhm bHC bHC iKW -kLM -iQq -iQq -iQq -iQq +tHd +kyD +kyD +kyD +kyD qIr oWk qIr @@ -38840,16 +34598,16 @@ pvv pvv fRg hvZ -kLM -iOu -kLM -iOu -kLM -iQq -kLM -iQq -iQq -iQq +tHd +xvp +tHd +xvp +tHd +kyD +tHd +kyD +kyD +kyD qIr oWk qIr @@ -39002,16 +34760,16 @@ aSA pvv fRg hvZ -kLM -iQq -iQq -iQq -iQq -kLM -iQq -iQq -iQq -iQq +tHd +kyD +kyD +kyD +kyD +tHd +kyD +kyD +kyD +kyD qIr akF alS @@ -39164,16 +34922,16 @@ wTz pvv fRg hvZ -iQq -kLM -iQq -iQq -iQq -iQq -iQq -kLM -iQq -iQq +kyD +tHd +kyD +kyD +kyD +kyD +kyD +tHd +kyD +kyD qIr exX qIr @@ -39326,16 +35084,16 @@ dbH wvx fRg hvZ -kLM -iQq -kLM -iQq -iQq -iQq -kLM -snN -kTP -iQq +tHd +kyD +tHd +kyD +kyD +kyD +tHd +rli +aQJ +kyD huz huz kLi @@ -39488,16 +35246,16 @@ dCS eoH fRg hvZ -iQq -iQq -kLM -iQq -iQq -kLM -bcM -aDM -lNg -kLM +kyD +kyD +tHd +kyD +kyD +tHd +qLS +ofw +jMf +tHd huz huz dLi @@ -39650,16 +35408,16 @@ deV uyI fRg hvZ -iQq -iQq -iQq -iQq -iQq -iQq -kLM -aDM -uqb -iQq +kyD +kyD +kyD +kyD +kyD +kyD +tHd +ofw +kop +kyD huz huz huz @@ -39812,17 +35570,17 @@ pti pvv fRg hvZ -kLM -iQq -iQq -iQq -iQq -iQq -kLM -lNg -kLM -iQq -iQq +tHd +kyD +kyD +kyD +kyD +kyD +tHd +jMf +tHd +kyD +kyD huz huz huz @@ -39974,18 +35732,18 @@ pvv pvv fRg hvZ -kLM -kLM -iQq -iQq -iQq -iQq -iQq -kLM -kLM -iQq -iQq -iQq +tHd +tHd +kyD +kyD +kyD +kyD +kyD +tHd +tHd +kyD +kyD +kyD lXQ cwZ kAw @@ -40136,18 +35894,18 @@ pvv pvv fRg hvZ -kLM -iOu -kLM -iOu -kLM -kLM -iQq -kLM -iQq -iQq -kLM -iQq +tHd +xvp +tHd +xvp +tHd +tHd +kyD +tHd +kyD +kyD +tHd +kyD jWh cwZ kAw @@ -40299,17 +36057,17 @@ pvv fWq uji iOA -aDM -lNg -kLM -uqb -uqb -iQq -iQq -kLM -kLM -kLM -kLM +ofw +jMf +tHd +kop +kop +kyD +kyD +tHd +tHd +tHd +tHd fpF wSv kAw @@ -46519,7 +42277,7 @@ aaY jFy jFy axz -doc +tfd ivr axz jFy @@ -46679,12 +42437,12 @@ wlj axz axz rnz -doc +tfd uPo -doc -doc +tfd +tfd uPo -doc +tfd rnz jFy qrz @@ -46840,14 +42598,14 @@ qCn tKg axz axz -doc +tfd wCz lWW wCz lWW wCz lWW -doc +tfd jFy gNF jqY @@ -47002,14 +42760,14 @@ qCn ssf axz axz -doc +tfd nCo kRK nCo kRK nCo kRK -doc +tfd aaY ilo jqY @@ -47164,14 +42922,14 @@ rCO ssf axz axz -doc +tfd wCz lWW wCz lWW wCz lWW -doc +tfd jFy gNF gNF @@ -47326,14 +43084,14 @@ qCn jVx aaY aaY -doc +tfd nCo kRK nCo kRK nCo kRK -doc +tfd jFy jqY jqY @@ -47488,14 +43246,14 @@ qCn gPg xha axz -doc +tfd wCz lWW wCz lWW wCz lWW -doc +tfd jFy gNF jqY @@ -47650,14 +43408,14 @@ xha aaX xha axz -doc +tfd jMZ gvz jMZ gvz jMZ gvz -doc +tfd axz kFJ jqY @@ -47812,13 +43570,13 @@ aaY xha xha vWt -doc -doc +tfd +tfd cRP dqW bMn cRP -doc +tfd sQt aaY axz @@ -47974,13 +43732,13 @@ axz xha xha axz -doc -doc +tfd +tfd jUa jvT djn djn -doc +tfd aeA axz pMs diff --git a/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm b/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm index cdf4c289476b..58e057efe1fd 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm @@ -13,9 +13,7 @@ icon_state = "large"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "g" = ( /obj/item/shard{ @@ -35,9 +33,7 @@ icon_state = "large"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "o" = ( /obj/item/shard{ @@ -62,9 +58,7 @@ /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "v" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "w" = ( /obj/structure/barricade/snow, @@ -76,15 +70,11 @@ name = "ice shard" }, /obj/structure/barricade/snow, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "z" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "B" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -108,9 +98,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) "K" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "L" = ( /turf/closed/wall/shiva/ice, @@ -136,9 +124,7 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "T" = ( /obj/item/shard{ @@ -174,15 +160,11 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "Z" = ( /obj/structure/barricade/snow, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm b/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm index 67c9c8136cb0..969190345f0f 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm @@ -5,9 +5,7 @@ "b" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toy, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "c" = ( /turf/open/auto_turf/snow/layer4, @@ -17,9 +15,7 @@ /area/shiva/interior/caves/s_lz2) "e" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/lz2_habs) "f" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, @@ -29,41 +25,29 @@ /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) "k" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "l" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/lz2_habs) "m" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/lz2_habs) "n" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "o" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "p" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "q" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/lz2_habs) "r" = ( /turf/open/auto_turf/ice/layer2, @@ -73,32 +57,24 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "t" = ( /obj/structure/surface/rack, /obj/item/weapon/ice_axe/red, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "v" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/sliceable/bananabread, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "w" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/lz2_habs) "x" = ( /turf/open/auto_turf/ice/layer1, @@ -118,9 +94,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "z" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -129,9 +103,7 @@ id = "nlz_shutters"; name = "\improper Bio-lab Shutters" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "B" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -140,27 +112,21 @@ id = "nlz_shutters"; name = "\improper Bio-lab Shutters" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "C" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/lz2_habs) "D" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "F" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "G" = ( /obj/item/shard{ @@ -178,32 +144,24 @@ pixel_y = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "K" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "L" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "P" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "Q" = ( /obj/item/clothing/shoes/snow, @@ -218,10 +176,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/lz2_habs) "S" = ( /obj/effect/decal/cleanable/dirt, @@ -233,18 +188,14 @@ "U" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "V" = ( /obj/structure/surface/table, /obj/structure/largecrate/random/mini/chest/b{ pixel_x = -1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "W" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -260,14 +211,10 @@ pixel_y = -5; pixel_x = 2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "Y" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "Z" = ( /obj/structure/machinery/light/double{ @@ -275,9 +222,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm index e7cccabcd6cf..fd089a343cfb 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm @@ -11,9 +11,7 @@ /area/shiva/exterior/lz2_fortress) "c" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "f" = ( /obj/item/weapon/gun/boltaction, @@ -25,9 +23,7 @@ "h" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "j" = ( /obj/item/lightstick/red/spoke/planted{ @@ -35,9 +31,7 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "l" = ( /obj/item/lightstick/red/spoke/planted{ @@ -48,9 +42,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) "m" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "p" = ( /obj/structure/foamed_metal, @@ -59,29 +51,19 @@ /area/shiva/exterior/lz2_fortress) "r" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "u" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "w" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "z" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "A" = ( /obj/item/lightstick/red/spoke/planted{ @@ -97,15 +79,10 @@ /area/shiva/exterior/lz2_fortress) "F" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "H" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "I" = ( /obj/structure/foamed_metal, @@ -116,14 +93,10 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "N" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "O" = ( /obj/structure/machinery/landinglight/ds2/spoke{ diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm index 63cf02c171f8..190310c2c366 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm @@ -4,18 +4,14 @@ id = "eelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "c" = ( /obj/structure/machinery/door_control{ id = "eelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "d" = ( /turf/open/auto_turf/snow/layer1, @@ -34,18 +30,14 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "l" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "m" = ( /obj/structure/flora/bush/snow{ @@ -66,14 +58,10 @@ id = "eelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "u" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "v" = ( /turf/open/auto_turf/snow/layer0, @@ -83,29 +71,20 @@ id = "elz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "D" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "F" = ( /obj/structure/machinery/door_control{ id = "elz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "J" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "Q" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -121,18 +100,14 @@ id = "elz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "S" = ( /obj/structure/machinery/door_control{ id = "eelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "U" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -151,9 +126,7 @@ id = "elz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm index 4b5c38ce2535..7e3e5a909ec3 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm @@ -6,9 +6,7 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "l" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "S" = ( /obj/structure/flora/bush/snow{ diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm index b1bf24256890..9b8d533d9ef8 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm @@ -3,24 +3,18 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "c" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "d" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "q" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "t" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "O" = ( /turf/closed/wall/shiva/prefabricated/pink, @@ -36,9 +30,7 @@ /area/shiva/exterior/cp_lz2) "U" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm index 74d967c95bb1..79b0d6456798 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm @@ -15,32 +15,23 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "g" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "h" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "i" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/exterior/lz2_fortress) "m" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "t" = ( /obj/structure/largecrate/random/mini/ammo, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "P" = ( /turf/open/auto_turf/snow/layer2, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm index 42a9aee0420b..7c55fc2884ac 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm @@ -12,10 +12,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "d" = ( /obj/structure/flora/bush/snow{ @@ -24,9 +21,7 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "h" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "p" = ( /turf/open/auto_turf/snow/layer3, @@ -60,9 +55,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "X" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm index 4a3306f0b22d..ed8cae18048f 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm @@ -3,9 +3,7 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "c" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "s" = ( /turf/open/auto_turf/snow/layer4, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm index aea08fa5bf48..f73664ae2eda 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm @@ -6,9 +6,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "w" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "C" = ( /turf/open/auto_turf/snow/layer4, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm index 60525207b45b..c74e4644a044 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm @@ -34,15 +34,11 @@ /area/shiva/exterior/cp_lz2) "k" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "l" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "o" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -53,60 +49,41 @@ /area/shiva/exterior/lz2_fortress) "p" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "s" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) "u" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "w" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "x" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "z" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "A" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "B" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "C" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "F" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "I" = ( /obj/item/lightstick/red/spoke/planted{ @@ -114,9 +91,7 @@ pixel_x = -13; pixel_y = 25 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "J" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -130,15 +105,11 @@ /area/shiva/exterior/lz2_fortress) "M" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "N" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "Q" = ( /obj/structure/foamed_metal, @@ -158,10 +129,7 @@ /obj/item/weapon/gun/boltaction{ pixel_x = -6 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm index d4111051f784..5c2f90c17f72 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm @@ -16,23 +16,17 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "e" = ( /obj/structure/machinery/door_control{ id = "sslz_shutters"; pixel_x = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "f" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "g" = ( /turf/open/auto_turf/snow/layer2, @@ -45,9 +39,7 @@ id = "sslz_shutters"; pixel_x = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "r" = ( /turf/open/auto_turf/snow/layer4, @@ -74,30 +66,21 @@ id = "slz_shutters"; pixel_x = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "y" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "B" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "F" = ( /obj/structure/machinery/door_control{ id = "sslz_shutters"; pixel_x = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "L" = ( /obj/structure/machinery/door_control{ @@ -116,23 +99,17 @@ id = "slz_shutters"; pixel_x = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "U" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "W" = ( /obj/structure/machinery/door_control{ id = "sslz_shutters"; pixel_x = 25 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "X" = ( /obj/item/lightstick/red/spoke/planted{ @@ -143,9 +120,7 @@ /area/shiva/exterior/cp_lz2) "Y" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm index a002ca0bc0dd..e3fe7e69221b 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm @@ -19,10 +19,7 @@ /area/shiva/exterior/lz2_fortress) "h" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "k" = ( /obj/item/stack/sheet/metal/small_stack, @@ -36,9 +33,7 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "o" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "p" = ( /obj/effect/decal/cleanable/ash, @@ -52,24 +47,17 @@ /area/shiva/exterior/cp_lz2) "r" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "t" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "u" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "w" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -101,14 +89,10 @@ /area/shiva/exterior/cp_lz2) "F" = ( /obj/item/stack/snow, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "J" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "L" = ( /obj/item/lightstick/red/spoke/planted{ @@ -116,21 +100,14 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "O" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "Q" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "T" = ( /turf/open/auto_turf/snow/layer0, @@ -142,16 +119,12 @@ /obj/structure/machinery/power/apc{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "Z" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm index d7f25ee2a3de..c4ff89c41af2 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm @@ -3,33 +3,24 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "f" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "i" = ( /obj/structure/machinery/door_control{ id = "seelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "j" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "l" = ( /obj/structure/machinery/door_control{ id = "selz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "m" = ( /obj/structure/machinery/power/apc{ @@ -42,9 +33,7 @@ id = "selz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "q" = ( /obj/item/lightstick/red/spoke/planted{ @@ -52,49 +41,37 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "r" = ( /obj/structure/machinery/door_control{ id = "seelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "t" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "v" = ( /obj/structure/machinery/power/apc{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "w" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "z" = ( /obj/structure/machinery/door_control{ id = "selz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "B" = ( /turf/open/auto_turf/snow/layer0, @@ -112,9 +89,7 @@ id = "selz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "I" = ( /obj/item/lightstick/red/spoke/planted{ @@ -129,24 +104,18 @@ id = "seelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "K" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "L" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "N" = ( /turf/open/auto_turf/snow/layer1, @@ -165,9 +134,7 @@ id = "seelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "V" = ( /turf/open/auto_turf/snow/layer2, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm index 88715aa30e8d..a16b6fff9252 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm @@ -24,23 +24,16 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "r" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) "L" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "N" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm index 089aed45da66..256ad00f6120 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm @@ -18,10 +18,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "t" = ( /obj/structure/flora/bush/snow{ @@ -36,14 +33,10 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "C" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "Z" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm index 1434a0ba32a2..12e253378b6b 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm @@ -6,18 +6,14 @@ /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) "s" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "z" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "B" = ( /obj/item/weapon/gun/boltaction, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "E" = ( /obj/effect/spawner/random/tool, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm index bb2c2631ba76..16f594f8f798 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm @@ -9,9 +9,7 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "R" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "Y" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm index 4528507bb04f..399903bd1ed0 100644 --- a/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm +++ b/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm @@ -6,10 +6,7 @@ "cs" = ( /obj/structure/surface/rack, /obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "cO" = ( /obj/structure/surface/rack, @@ -19,10 +16,7 @@ /area/shiva/interior/colony/research_hab) "ei" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "fs" = ( /obj/structure/barricade/wooden{ @@ -36,10 +30,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) "hG" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "ip" = ( /obj/structure/closet/crate/secure/weyland, @@ -59,14 +50,11 @@ dir = 4; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "jW" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; - req_access = null; req_one_access = null }, /turf/open/floor/plating, @@ -78,15 +66,10 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "lA" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "lM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -101,9 +84,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "mj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -116,16 +97,11 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "nn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "nQ" = ( /obj/structure/surface/table, @@ -141,22 +117,15 @@ /area/shiva/interior/colony/research_hab) "pr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "pC" = ( /obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "pI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "qr" = ( /obj/effect/decal/cleanable/dirt, @@ -169,10 +138,7 @@ "qH" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "rA" = ( /obj/structure/machinery/space_heater, @@ -201,10 +167,7 @@ name = "\improper Omicron Field Gear Storage" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "sS" = ( /obj/structure/closet/crate, @@ -213,17 +176,12 @@ /area/shiva/interior/colony/research_hab) "sV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "tr" = ( /obj/structure/closet/radiation, /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "tL" = ( /obj/effect/decal/cleanable/dirt, @@ -238,10 +196,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) "uJ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "vf" = ( /obj/structure/window/framed/shiva, @@ -258,15 +213,10 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "yZ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "zg" = ( /obj/structure/filingcabinet{ @@ -277,9 +227,7 @@ pixel_x = -8; pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "AC" = ( /turf/open/floor/plating, @@ -291,15 +239,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "GL" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "Hk" = ( /obj/structure/closet/radiation, @@ -307,9 +250,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Hm" = ( /turf/open/auto_turf/snow/layer0, @@ -330,9 +271,7 @@ /area/shiva/interior/colony/research_hab) "JH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "JI" = ( /obj/structure/surface/rack, @@ -342,9 +281,7 @@ /area/shiva/interior/colony/research_hab) "JO" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "KS" = ( /turf/open/floor/shiva, @@ -352,9 +289,7 @@ "Lg" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Lk" = ( /obj/structure/surface/rack, @@ -378,10 +313,7 @@ /area/shiva/interior/colony/research_hab) "Ov" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "OW" = ( /obj/structure/surface/rack, @@ -390,9 +322,7 @@ dir = 8; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Pf" = ( /obj/structure/machinery/door_control/brbutton{ @@ -425,9 +355,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Rd" = ( /obj/structure/surface/table/reinforced/prison, @@ -442,9 +370,7 @@ }, /obj/effect/spawner/random/attachment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Vp" = ( /obj/structure/surface/table, @@ -453,9 +379,7 @@ pixel_y = 2 }, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Vv" = ( /turf/open/auto_turf/ice/layer1, @@ -467,21 +391,15 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Xo" = ( -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "XI" = ( /obj/structure/closet/radiation, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Yz" = ( /obj/effect/decal/warning_stripes{ @@ -504,9 +422,7 @@ "YZ" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm index f75a526b4f78..499218ac037e 100644 --- a/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm +++ b/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm @@ -5,9 +5,7 @@ id = "garage_ice_labs"; name = "\improper Garage Shutters" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "b" = ( /obj/structure/curtain/black, @@ -15,18 +13,13 @@ /area/shiva/interior/colony/research_hab) "c" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "e" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "f" = ( /obj/effect/decal/warning_stripes{ @@ -36,37 +29,25 @@ dir = 4; pixel_x = 6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "g" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "h" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "k" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "l" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "s" = ( /turf/open/floor/plating/plating_catwalk/shiva, @@ -75,10 +56,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "u" = ( /obj/structure/machinery/door_control{ @@ -96,19 +74,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "B" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "E" = ( /obj/effect/decal/warning_stripes{ @@ -118,16 +90,11 @@ dir = 8; pixel_x = -6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "F" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "I" = ( /turf/closed/wall/shiva/prefabricated/orange, @@ -135,18 +102,13 @@ "L" = ( /obj/structure/prop/dam/truck, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "Q" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "S" = ( /obj/effect/decal/cleanable/dirt, @@ -155,28 +117,20 @@ "T" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "U" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "W" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "X" = ( /obj/effect/decal/cleanable/dirt, @@ -185,9 +139,7 @@ /area/shiva/interior/colony/research_hab) "Z" = ( /obj/structure/prop/dam/crane, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm index 5ae1484c7915..6f9f55d9467d 100644 --- a/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm +++ b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm @@ -15,9 +15,7 @@ /area/shiva/interior/caves/left_spiders) "bP" = ( /obj/structure/prop/static_tank/fuel, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "cf" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -181,24 +179,18 @@ /obj/item/weapon/ice_axe/red{ pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/left_spiders) "xG" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "yu" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/interior/caves/left_spiders) "yS" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "Am" = ( /obj/effect/spider/cocoon, @@ -211,9 +203,7 @@ /area/shiva/interior/caves/left_spiders) "Ar" = ( /obj/structure/prop/static_tank, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "AW" = ( /obj/structure/barricade/handrail/wire{ diff --git a/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm index 15ec0c4e099d..30848fc8f513 100644 --- a/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm +++ b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm @@ -24,25 +24,19 @@ pixel_x = -24 }, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "bi" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = -5; pixel_y = 12 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "bI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "ce" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -52,30 +46,21 @@ pixel_x = 11; pixel_y = 20 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "cv" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "cL" = ( /obj/item/prop/colony/folded_bedroll, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "cO" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/s_admin) "cS" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -88,52 +73,35 @@ icon_state = "large" }, /obj/item/frame/table/reinforced, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "dg" = ( /obj/structure/barricade/metal{ dir = 1; health = 210 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "do" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "dv" = ( /obj/item/ammo_magazine/rifle/m16, /obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "dF" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "eO" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "eZ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "ff" = ( /obj/structure/barricade/wooden{ @@ -144,9 +112,7 @@ /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) "fj" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "fx" = ( /obj/structure/stairs/perspective{ @@ -156,10 +122,7 @@ layer = 3 }, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "fM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -173,16 +136,11 @@ /area/shiva/interior/colony/s_admin) "fT" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "gf" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "gh" = ( /obj/structure/noticeboard{ @@ -191,37 +149,27 @@ /obj/item/ammo_magazine/rifle/extended{ current_rounds = 0 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "gk" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/shiva/interior/colony/s_admin) "gn" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ pixel_y = 7 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "gB" = ( /obj/structure/surface/table, /obj/item/weapon/gun/rifle/m16, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "gL" = ( /obj/structure/bed/bedroll, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "gO" = ( /obj/structure/window/reinforced/tinted{ @@ -231,51 +179,34 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "gR" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "hN" = ( /obj/item/ammo_casing, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/s_admin) "iF" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "iS" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "iZ" = ( /obj/item/weapon/gun/rifle/m16, /obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "js" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "jE" = ( /obj/effect/acid_hole{ @@ -302,25 +233,19 @@ pixel_y = 10 }, /obj/item/tool/stamp/hos, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "ky" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = 10; pixel_y = 16 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "kB" = ( /obj/structure/bed/bedroll, /obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "kP" = ( /obj/structure/surface/table/woodentable{ @@ -328,15 +253,11 @@ flipped = 1 }, /obj/structure/machinery/computer/objective, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "kT" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "lb" = ( /obj/structure/machinery/firealarm{ @@ -345,26 +266,20 @@ }, /obj/structure/filingcabinet/chestdrawer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "lq" = ( /obj/item/ammo_magazine/rifle{ current_rounds = 0 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "lP" = ( /obj/effect/landmark/corpsespawner/wygoon, /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "lQ" = ( /obj/structure/window/reinforced/tinted{ @@ -376,26 +291,20 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "mC" = ( /obj/structure/machinery/power/apc{ dir = 8; start_charge = 0 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "mI" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "ne" = ( /turf/open/auto_turf/snow/layer3, @@ -411,9 +320,7 @@ "ns" = ( /obj/structure/surface/table, /obj/item/weapon/gun/rifle/ar10, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "ob" = ( /obj/structure/surface/table/reinforced/prison, @@ -429,9 +336,7 @@ pixel_y = 4 }, /obj/item/reagent_container/food/drinks/cans/ale, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "of" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -442,51 +347,36 @@ /area/shiva/interior/colony/s_admin) "ov" = ( /obj/item/trash/buritto, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "oH" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "oT" = ( /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "oY" = ( /obj/structure/closet/crate/secure/weyland, /obj/effect/landmark/objective_landmark/science, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "pz" = ( /obj/item/weapon/gun/boltaction, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "pC" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "pG" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "pQ" = ( /turf/open/auto_turf/snow/layer1, @@ -494,30 +384,22 @@ "pS" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "pV" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2, /area/shiva/interior/colony/s_admin) "qT" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "qU" = ( /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "rB" = ( /obj/structure/window/reinforced/tinted{ @@ -528,52 +410,37 @@ /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "rM" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "rQ" = ( /obj/item/ammo_magazine/rifle/boltaction, /obj/effect/landmark/survivor_spawner/shivas_panic_room_civ, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "sq" = ( /obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "sy" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "sZ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "ti" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/shiva/interior/colony/s_admin) "tk" = ( /obj/structure/window/reinforced/tinted{ @@ -585,18 +452,14 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, /obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "tl" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "tu" = ( /obj/structure/machinery/light/double{ @@ -604,9 +467,7 @@ pixel_y = -5 }, /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "tD" = ( /obj/effect/decal/cleanable/vomit{ @@ -619,16 +480,11 @@ /obj/effect/landmark/corpsespawner/chef, /obj/structure/bed/bedroll, /obj/item/bedsheet/ce, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "tG" = ( /obj/structure/janitorialcart, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "tW" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, @@ -638,31 +494,22 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "ug" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "uh" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/ammo_casing, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "ul" = ( /obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "uA" = ( /obj/structure/stairs/perspective{ @@ -672,25 +519,18 @@ pixel_x = 3; pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "uE" = ( /obj/structure/machinery/door_control{ id = "north_panicroom"; pixel_y = 30 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "uJ" = ( /obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "uM" = ( /obj/structure/window/reinforced/tinted{ @@ -701,9 +541,7 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "uP" = ( /obj/structure/machinery/light/double{ @@ -711,24 +549,18 @@ pixel_y = -5 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "uR" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "vn" = ( /obj/effect/decal/remains/xeno, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "vq" = ( /obj/structure/filingcabinet, @@ -738,37 +570,26 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "vs" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/s_admin) "vL" = ( /obj/item/reagent_container/glass/bucket/mopbucket{ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "wH" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/shiva/interior/colony/s_admin) "wM" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "wO" = ( /obj/item/clipboard, @@ -781,21 +602,14 @@ icon_state = "large" }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "wW" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/s_admin) "wX" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "wY" = ( /obj/structure/machinery/power/apc{ @@ -808,9 +622,7 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "xg" = ( /obj/structure/bed/chair/office/light{ @@ -827,54 +639,39 @@ /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "xZ" = ( /obj/item/storage/belt/marine, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "yd" = ( /obj/item/weapon/gun/rifle/ar10, /obj/item/ammo_magazine/rifle/ar10, /obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "ye" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /obj/effect/landmark/survivor_spawner/shivas_panic_room_cl, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "yi" = ( /obj/item/trash/wy_chips_pepper, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "yo" = ( /obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "yq" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /obj/effect/decal/remains/human, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "yz" = ( /obj/structure/flora/bush/snow{ @@ -884,9 +681,7 @@ /area/shiva/exterior/junkyard) "yQ" = ( /obj/effect/landmark/survivor_spawner/shivas_panic_room_sci, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "yS" = ( /obj/structure/machinery/firealarm{ @@ -895,16 +690,11 @@ }, /obj/item/weapon/gun/boltaction, /obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "zc" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "zi" = ( /obj/structure/window/reinforced/tinted{ @@ -913,28 +703,19 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "zp" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "zu" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "zw" = ( /obj/item/ammo_casing, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "zA" = ( /obj/structure/window_frame/colony/reinforced, @@ -944,9 +725,7 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Av" = ( /obj/structure/machinery/light/double{ @@ -954,36 +733,25 @@ pixel_y = -5 }, /obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "AC" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "AY" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "AZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/shiva/interior/colony/s_admin) "Bg" = ( /obj/structure/machinery/light_construct{ dir = 1 }, /obj/item/light_bulb/tube/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Bq" = ( /obj/structure/window/reinforced/tinted{ @@ -993,9 +761,7 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Bv" = ( /obj/structure/machinery/door_control{ @@ -1004,46 +770,33 @@ }, /obj/structure/surface/table, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "BD" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11; pixel_y = 20 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) "BQ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "BU" = ( /obj/effect/landmark/survivor_spawner/shivas_panic_room_civ, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Cc" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/shiva/interior/colony/s_admin) "Cd" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Cu" = ( /obj/structure/window/reinforced/tinted{ @@ -1054,21 +807,15 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Cx" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "CZ" = ( /obj/item/ammo_casing, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Dg" = ( /obj/effect/decal/cleanable/vomit, @@ -1076,54 +823,39 @@ pixel_x = -3; pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Dl" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Dx" = ( /obj/structure/machinery/light/double, /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "DB" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "DU" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "DW" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "DY" = ( /obj/item/trash/burger, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "EX" = ( /obj/structure/machinery/light/double{ @@ -1133,50 +865,36 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Fa" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2, /area/shiva/interior/colony/s_admin) "Fc" = ( /obj/structure/surface/table, /obj/item/ammo_magazine/rifle/ar10, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "Ff" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/shiva/interior/colony/s_admin) "Fg" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) "Fn" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/bar) "Fp" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Fx" = ( /obj/structure/surface/table, /obj/structure/prop/ice_colony/hula_girl, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "FH" = ( /obj/effect/decal/cleanable/blood/oil, @@ -1185,9 +903,7 @@ /area/shiva/interior/colony/s_admin) "FK" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "FY" = ( /turf/template_noop, @@ -1198,42 +914,29 @@ "GJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "GQ" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibhead" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "He" = ( /obj/item/stool, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Hf" = ( /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Hp" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/s_admin) "Hx" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "HA" = ( /obj/structure/window/reinforced/tinted{ @@ -1243,9 +946,7 @@ dir = 4 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Ik" = ( /turf/open/auto_turf/snow/layer3, @@ -1265,32 +966,23 @@ /area/shiva/interior/colony/s_admin) "IQ" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "Jp" = ( /obj/item/ammo_magazine/rifle/extended{ current_rounds = 0 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Jv" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Jx" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "JF" = ( /obj/structure/machinery/blackbox_recorder, @@ -1298,9 +990,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "JQ" = ( /obj/item/ammo_magazine/rifle/boltaction, @@ -1309,24 +999,16 @@ pixel_x = -24 }, /obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "Kb" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) "Ko" = ( /obj/structure/bed/chair, /obj/item/ammo_casing, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Kp" = ( /obj/structure/machinery/computer/cameras{ @@ -1336,9 +1018,7 @@ /obj/item/shard{ icon_state = "large" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "KO" = ( /obj/structure/largecrate/random/case/small, @@ -1348,24 +1028,18 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Ld" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "Lh" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Lk" = ( /obj/structure/largecrate/random/case, @@ -1375,57 +1049,39 @@ /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White" }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Lu" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "LE" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "LF" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "LU" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) "Mi" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "MG" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper Panic Room Shutters"; id = "south_panicroom" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "ML" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/shiva/interior/colony/s_admin) "MR" = ( /obj/structure/safe, @@ -1436,30 +1092,20 @@ /obj/item/spacecash/c1000, /obj/item/spacecash/c500, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "Nq" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "Nt" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib6" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/s_admin) "Nu" = ( /obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "NC" = ( /obj/item/lightstick/variant/planted, @@ -1485,21 +1131,14 @@ /obj/structure/filingcabinet, /obj/item/paper/research_notes, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "Py" = ( /obj/item/trash/kepler, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "PG" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/snow_mat/east, /area/shiva/interior/colony/botany) "PI" = ( /obj/structure/window/reinforced/tinted{ @@ -1509,25 +1148,18 @@ /obj/item/clipboard, /obj/item/tool/stamp, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "PV" = ( /obj/structure/bed/bedroll, /obj/effect/landmark/survivor_spawner/shivas_panic_room_sci, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Qh" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "QS" = ( /turf/open/auto_turf/snow/layer2, @@ -1540,29 +1172,21 @@ /obj/item/paper_bin{ pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Ru" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Ry" = ( /obj/item/tool/mop{ pixel_x = -10 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, +/turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) "RD" = ( /obj/structure/bed/chair/wood/normal, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "RH" = ( /obj/structure/window/reinforced/tinted{ @@ -1574,29 +1198,20 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "RP" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "RQ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "RS" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Se" = ( /obj/effect/decal/cleanable/vomit{ @@ -1606,9 +1221,7 @@ pixel_x = 5; pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "Sl" = ( /obj/structure/machinery/disposal/broken, @@ -1616,10 +1229,7 @@ /area/shiva/interior/colony/s_admin) "Sq" = ( /obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) "SB" = ( /obj/item/stack/sheet/metal, @@ -1637,22 +1247,16 @@ /area/shiva/interior/colony/s_admin) "Tc" = ( /obj/item/frame/table/reinforced, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Td" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/ammo_casing, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "Tj" = ( /obj/structure/machinery/disposal/broken, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Tr" = ( /obj/structure/machinery/computer/station_alert{ @@ -1662,23 +1266,15 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "TG" = ( /obj/item/prop/colony/folded_bedroll, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) "TI" = ( /obj/item/ammo_casing, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "TL" = ( /obj/item/weapon/gun/energy/taser, @@ -1690,41 +1286,29 @@ /area/shiva/interior/colony/s_admin) "Ub" = ( /obj/item/trash/kepler/flamehot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "Ue" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /obj/item/ammo_casing, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "UD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Colony Administration"; locked = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "UW" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/shiva/green/southwest, /area/shiva/interior/colony/botany) "Vb" = ( /obj/item/bodybag, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Vi" = ( /obj/structure/window_frame/colony/reinforced, @@ -1738,9 +1322,7 @@ "Vy" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "VC" = ( /obj/structure/machinery/light/double{ @@ -1749,33 +1331,25 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "VE" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Colony Security Checkpoint" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "VX" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/objective_landmark/medium, /obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "Wj" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Wm" = ( /turf/open/auto_turf/snow/layer2, @@ -1785,28 +1359,19 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "WT" = ( /obj/item/frame/table/wood, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2, /area/shiva/interior/colony/s_admin) "Xt" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) "Xu" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/shiva/interior/colony/s_admin) "XP" = ( /obj/structure/window/reinforced/tinted{ @@ -1816,26 +1381,20 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "YD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "YS" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) "YT" = ( /obj/structure/window/reinforced/tinted{ @@ -1845,29 +1404,20 @@ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) "Zi" = ( /obj/item/weapon/gun/pistol/holdout, /obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) "Zl" = ( /obj/item/stack/cable_coil, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/shiva/interior/colony/s_admin) "ZD" = ( /obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) (1,1,1) = {" diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index b1beb0dfc2b1..ab9ccc4c399e 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -55,9 +55,7 @@ /area/kutjevo/interior/colony_South/power2) "acN" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/interior/oob) "adD" = ( /turf/open/floor/almayer/research/containment/floor1, @@ -180,14 +178,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/locks) "aog" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/runoff_dunes) "aoh" = ( /obj/structure/platform_decoration/kutjevo/rock{ @@ -199,9 +193,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) "aor" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/colors/orange/edge/northeast, /area/kutjevo/interior/power_pt2_electric_boogaloo) "aoJ" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -217,9 +209,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) "apD" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/kutjevo/exterior/lz_river) "aqC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, @@ -244,24 +234,20 @@ "arh" = ( /obj/item/prop/alien/hugger, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "arr" = ( /obj/structure/blocker/invisible_wall, /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "arA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) "arG" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "arM" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -311,15 +297,11 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "atC" = ( /obj/item/stack/rods, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "atQ" = ( /obj/item/tank/emergency_oxygen/engi, @@ -362,18 +344,14 @@ /area/kutjevo/interior/power) "awJ" = ( /obj/structure/bed/chair, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/Northwest_Dorms) "axi" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -4; pixel_y = 10 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/spring) "axK" = ( /obj/item/trash/cigbutt/bcigbutt, @@ -401,9 +379,7 @@ /area/kutjevo/interior/construction) "aze" = ( /obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/kutjevo/interior/construction) "azo" = ( /obj/structure/largecrate/random/case/small, @@ -413,14 +389,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med) "azO" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/lz_river) "aAe" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -428,9 +400,7 @@ icon_state = "p_stair_full"; pixel_y = 16 }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "aAg" = ( /obj/structure/machinery/recharge_station, @@ -449,9 +419,7 @@ /area/kutjevo/exterior/runoff_bridge) "aCo" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) "aCD" = ( /turf/open/floor/kutjevo/tan, @@ -469,9 +437,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/kutjevo/interior/construction) "aFc" = ( /obj/structure/surface/table/reinforced/prison, @@ -479,9 +445,7 @@ layer = 3.1 }, /obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "aFf" = ( /obj/item/tool/wirecutters/clippers, @@ -515,9 +479,7 @@ /area/kutjevo/interior/complex/botany/east) "aHg" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/interior/oob) "aHl" = ( /turf/open/floor/kutjevo/colors/cyan, @@ -541,7 +503,7 @@ "aIy" = ( /obj/structure/largecrate/black_market/confiscated_equipment, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "aIF" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, @@ -624,9 +586,7 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) "aRu" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/exterior/lz_dunes) "aRB" = ( /obj/item/fuel_cell, @@ -634,9 +594,7 @@ /obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/colony_South/power2) "aRS" = ( /obj/structure/bed{ @@ -670,17 +628,13 @@ /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) "aWt" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/lz_river) "aWR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/exterior/construction) "aXU" = ( /obj/structure/barricade/wooden{ @@ -702,9 +656,7 @@ pixel_x = -2; pixel_y = 5 }, -/turf/open/gm/dirtgrassborder2{ - icon_state = "wall3" - }, +/turf/open/gm/dirtgrassborder2/wall3, /area/kutjevo/exterior/complex_border/med_park) "baL" = ( /obj/structure/platform/kutjevo/smooth{ @@ -719,9 +671,7 @@ dir = 8 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "bbc" = ( /obj/structure/surface/table/reinforced/prison, @@ -743,9 +693,7 @@ /area/kutjevo/interior/complex/botany/east_tech) "bcl" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/botany) "bcG" = ( /obj/structure/platform/kutjevo{ @@ -754,9 +702,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/kutjevo/interior/construction) "bcO" = ( /obj/item/stack/rods, @@ -764,10 +710,8 @@ /area/kutjevo/interior/complex/botany) "bdd" = ( /obj/structure/largecrate, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) "bde" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -788,9 +732,7 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) "bex" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med/auto_doc) "beR" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -847,9 +789,7 @@ /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power) "bjc" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/kutjevo/exterior/runoff_river) "bjj" = ( /obj/structure/machinery/light{ @@ -883,18 +823,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "bne" = ( /obj/structure/prop/dam/crane{ icon_state = "tractor"; name = "tractor" }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "bng" = ( /obj/structure/platform/kutjevo/smooth{ @@ -907,9 +843,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) "bnF" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/runoff_bridge) "bnK" = ( /obj/structure/platform/kutjevo/rock{ @@ -922,17 +856,13 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) "bnQ" = ( -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/complex/botany) "boa" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power) "boR" = ( /turf/open/floor/kutjevo/colors/orange, @@ -992,9 +922,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "btI" = ( -/turf/open/floor/plating/kutjevo{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/kutjevo/panelscorched, /area/kutjevo/interior/complex/botany/east_tech) "buo" = ( /obj/structure/machinery/power/apc{ @@ -1004,9 +932,7 @@ /turf/open/floor/kutjevo/colors/orange/inner_corner, /area/kutjevo/interior/foremans_office) "bux" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/auto_doc) "buG" = ( /obj/effect/landmark/objective_landmark/close, @@ -1016,24 +942,18 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/exterior/construction) "bwt" = ( /obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/Northwest_Colony) "bwT" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/runoff_river) "byl" = ( /obj/structure/blocker/invisible_wall, @@ -1071,20 +991,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/operating) "bAe" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "bBf" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/runoff_river) "bBS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -1095,9 +1009,7 @@ /area/kutjevo/exterior/runoff_bridge) "bDg" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "bDl" = ( /obj/structure/surface/table/almayer, @@ -1121,9 +1033,7 @@ /area/kutjevo/interior/colony_S_East) "bDW" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/interior/oob/dev_room) "bDX" = ( /obj/structure/machinery/sensortower, @@ -1139,10 +1049,13 @@ pixel_y = 4 }, /turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "bEp" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/scrubland) +"bEt" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "bEH" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) @@ -1167,9 +1080,7 @@ dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/interior/oob) "bGg" = ( /obj/structure/flora/bush/desert{ @@ -1180,16 +1091,14 @@ "bGi" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "bGv" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) "bGw" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/interior/oob/dev_room) "bGD" = ( /turf/open/desert/desert_shore/shore_edge1, @@ -1232,9 +1141,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) "bJf" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "bKi" = ( /obj/structure/pipes/unary/freezer{ @@ -1260,9 +1167,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/complex_border/med_rec) "bKO" = ( /obj/effect/landmark/monkey_spawn, @@ -1280,9 +1185,7 @@ /area/kutjevo/interior/colony_central/mine_elevator) "bMu" = ( /obj/structure/bed/sofa/south/grey, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "bNG" = ( /obj/structure/prop/dam/boulder/boulder1, @@ -1298,9 +1201,7 @@ dir = 1; pixel_y = 13 }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "bOc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -1325,9 +1226,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "bQy" = ( /obj/structure/cable/heavyduty{ @@ -1346,9 +1245,7 @@ /obj/structure/machinery/computer/communications{ dir = 1 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/foremans_office) "bRF" = ( /obj/item/stack/sheet/metal, @@ -1374,9 +1271,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/edge/north, /area/kutjevo/interior/construction) "bTN" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -1397,9 +1292,7 @@ "bVB" = ( /obj/structure/blocker/invisible_wall, /obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "bVK" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -1423,7 +1316,7 @@ icon_state = "tree_3" }, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "bXc" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, @@ -1448,9 +1341,7 @@ /area/kutjevo/exterior/lz_dunes) "cal" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "cau" = ( /obj/item/bodybag/tarp/reactive, @@ -1469,9 +1360,7 @@ /area/kutjevo/interior/complex/med/operating) "cbv" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "cbz" = ( /turf/open/floor/plating/kutjevo, @@ -1481,11 +1370,9 @@ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "ccu" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, /area/kutjevo/interior/complex/med) "cdE" = ( /obj/structure/barricade/deployable{ @@ -1494,9 +1381,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, /area/kutjevo/interior/construction) "cek" = ( /obj/structure/platform_decoration/kutjevo/rock{ @@ -1554,9 +1439,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, /area/kutjevo/interior/complex/Northwest_Flight_Control) "cjO" = ( /turf/open/floor/kutjevo/tan/multi_tiles, @@ -1565,25 +1448,17 @@ /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/kutjevo/exterior/scrubland) "ckF" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/interior/oob/dev_room) "clo" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_dunes) "cmG" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, /area/kutjevo/interior/complex/med/triage) "cnb" = ( /obj/structure/reagent_dispensers/watertank, @@ -1595,15 +1470,17 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) +"cou" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "coF" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "coL" = ( /obj/structure/machinery/medical_pod/bodyscanner, @@ -1641,10 +1518,14 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = -28 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) +"cpD" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "cqc" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/shotgun/buckshot{ @@ -1652,16 +1533,12 @@ pixel_y = 13 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, /area/kutjevo/interior/power_pt2_electric_boogaloo) "cqk" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany/east) "cqX" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -1692,7 +1569,7 @@ "ctA" = ( /obj/structure/largecrate, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "ctD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_30" @@ -1726,9 +1603,7 @@ dir = 4 }, /obj/structure/largecrate/random, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "cum" = ( /obj/structure/extinguisher_cabinet, @@ -1736,9 +1611,7 @@ /area/kutjevo/interior/oob) "cun" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/lz_river) "cuF" = ( /obj/structure/platform/kutjevo{ @@ -1753,17 +1626,13 @@ /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) "cvm" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "cvF" = ( /obj/structure/reagent_dispensers/watertank{ desc = "A watertank. The label has been written over with the sequence 2---" }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/Northwest_Colony) "cvV" = ( /obj/item/weapon/gun/rifle/mar40, @@ -1802,17 +1671,13 @@ /area/kutjevo/exterior/runoff_dunes) "cBd" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) "cBi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/scrubland) "cBq" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -1882,9 +1747,7 @@ /area/kutjevo/interior/complex/botany) "cFJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany/east_tech) "cFT" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1893,9 +1756,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "cFY" = ( /obj/item/stool, @@ -1950,9 +1811,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) "cKi" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/runoff_dunes) "cKH" = ( /obj/structure/platform_decoration/kutjevo{ @@ -1982,10 +1841,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"cLr" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "cLQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/kutjevo/exterior/lz_dunes) "cMc" = ( /obj/structure/platform/kutjevo/smooth, @@ -2012,9 +1873,7 @@ }, /obj/structure/closet/secure_closet/engineering_electrical, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "cMJ" = ( /obj/structure/platform/kutjevo{ @@ -2041,14 +1900,10 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med) "cPn" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/exterior/lz_dunes) "cPt" = ( /obj/item/stack/sheet/wood, @@ -2074,9 +1929,7 @@ }, /obj/structure/platform/kutjevo/smooth, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "cQz" = ( /obj/effect/landmark/objective_landmark/science, @@ -2137,9 +1990,7 @@ dir = 4 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "cTW" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -2161,9 +2012,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "cUm" = ( /turf/open/floor/plating/kutjevo, @@ -2224,9 +2073,7 @@ /mob/living/simple_animal/cat/Runtime{ name = "Garry" }, -/turf/open/gm/dirtgrassborder2{ - dir = 8 - }, +/turf/open/gm/dirtgrassborder2/west, /area/kutjevo/exterior/complex_border/med_park) "cXL" = ( /turf/open/floor/plating/kutjevo, @@ -2243,7 +2090,7 @@ "cYb" = ( /obj/structure/largecrate/supply/floodlights, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "cZt" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/door_control/brbutton{ @@ -2256,9 +2103,7 @@ range = 15 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/med) "dax" = ( /obj/structure/sink{ @@ -2304,9 +2149,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) "dcC" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/spring) "ddi" = ( /obj/structure/platform/kutjevo, @@ -2343,10 +2186,7 @@ /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/kutjevo/interior/complex/med) "dew" = ( /turf/open/floor/kutjevo/plate, @@ -2365,15 +2205,11 @@ /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) "dfY" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/lz_river) "dga" = ( /obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "dgs" = ( /obj/item/toy/crayon/rainbow{ @@ -2397,7 +2233,7 @@ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "dib" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_river) @@ -2433,14 +2269,13 @@ /obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) +"dmy" = ( +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "dnd" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/spring) "dnl" = ( /obj/structure/platform/kutjevo/rock, @@ -2475,20 +2310,18 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) "dpt" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "dpH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "dql" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer1, @@ -2497,9 +2330,7 @@ /obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/runoff_bridge) "dqH" = ( /obj/structure/barricade/handrail/kutjevo{ @@ -2508,9 +2339,7 @@ /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/platform/kutjevo/smooth, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "dqK" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -2518,14 +2347,10 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) "dsi" = ( -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/kutjevo/exterior/scrubland) "dsp" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/scrubland) "dsN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -2542,9 +2367,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) "dte" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/runoff_river) "dtM" = ( /obj/structure/blocker/invisible_wall, @@ -2554,9 +2377,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "dtV" = ( /obj/structure/machinery/blackbox_recorder, @@ -2600,14 +2421,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med) "dwP" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "dxc" = ( /obj/structure/machinery/light{ @@ -2620,18 +2437,14 @@ /area/kutjevo/interior/oob) "dxL" = ( /obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "dyz" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; pixel_y = 10 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) "dyB" = ( /obj/effect/landmark/objective_landmark/close, @@ -2641,15 +2454,11 @@ /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/kutjevo/exterior/lz_river) "dyW" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_pad) "dzd" = ( /obj/item/storage/briefcase, /turf/open/auto_turf/sand/layer0, @@ -2672,9 +2481,7 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) "dzH" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/lz_dunes) "dzN" = ( /obj/item/stack/rods, @@ -2682,26 +2489,23 @@ /area/kutjevo/exterior/complex_border/med_rec) "dAB" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "dAH" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/runoff_bridge) "dAM" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/kutjevo/exterior/runoff_river) +"dBj" = ( +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) "dBt" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -8; pixel_y = 10 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/spring) "dBO" = ( /obj/structure/ladder, @@ -2736,9 +2540,7 @@ /turf/open/floor/kutjevo/colors/green, /area/kutjevo/exterior/runoff_bridge) "dDm" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/runoff_dunes) "dDq" = ( /obj/item/stack/sheet/metal, @@ -2746,7 +2548,7 @@ /area/kutjevo/exterior/Northwest_Colony) "dDL" = ( /turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "dEI" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delayone, @@ -2757,9 +2559,7 @@ /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) "dFk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/kutjevo/exterior/scrubland) "dFx" = ( /obj/item/stack/sheet/metal, @@ -2786,9 +2586,7 @@ dir = 4 }, /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/runoff_river) "dHj" = ( /obj/structure/machinery/door_control/brbutton/alt{ @@ -2817,9 +2615,7 @@ /area/kutjevo/interior/power) "dIc" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/runoff_river) "dIo" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -2851,17 +2647,13 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "dKu" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/runoff_river) "dKz" = ( /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/kutjevo/interior/colony_north) "dKO" = ( /obj/structure/bed/chair{ @@ -2880,14 +2672,10 @@ /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) "dLZ" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/kutjevo/interior/power/comms) "dNc" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_river) "dNg" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -2901,9 +2689,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) "dOj" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/kutjevo/exterior/spring) "dOJ" = ( /obj/structure/barricade/deployable, @@ -2914,7 +2700,7 @@ pixel_y = 14 }, /turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "dQq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -2922,9 +2708,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) "dQs" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med/locks) "dQv" = ( /obj/structure/girder, @@ -2942,9 +2726,7 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power) "dRj" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/exterior/runoff_bridge) "dRX" = ( /obj/structure/window/framed/kutjevo/reinforced, @@ -2968,19 +2750,13 @@ /area/kutjevo/interior/complex/Northwest_Flight_Control) "dTn" = ( /obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/Northwest_Colony) "dTp" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/lz_river) "dTJ" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/runoff_river) "dTL" = ( /obj/structure/bed/chair{ @@ -3001,9 +2777,7 @@ /area/kutjevo/exterior/spring) "dUy" = ( /obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "dUE" = ( /obj/structure/flora/grass/desert/lightgrass_10, @@ -3093,9 +2867,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "ebv" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/spring) "ebB" = ( /turf/open/auto_turf/sand/layer1, @@ -3108,9 +2880,7 @@ dir = 4 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/interior/oob) "ebZ" = ( /obj/structure/platform_decoration/kutjevo/rock{ @@ -3130,9 +2900,7 @@ /area/kutjevo/interior/complex/med/auto_doc) "ecO" = ( /obj/structure/machinery/light, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/exterior/construction) "ecV" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -3145,9 +2913,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) "eem" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/runoff_bridge) "eeP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3157,17 +2923,13 @@ /area/kutjevo/interior/complex/botany) "efr" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "efF" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/edge/north, /area/kutjevo/interior/construction) "efS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -3184,9 +2946,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "egu" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3195,9 +2955,7 @@ /obj/structure/machinery/optable, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med/operating) "egx" = ( /obj/structure/platform_decoration/kutjevo{ @@ -3228,9 +2986,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/complex/Northwest_Dorms) "egZ" = ( /turf/open/auto_turf/sand/layer1, @@ -3255,7 +3011,7 @@ dir = 8 }, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "ejP" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/multi_tiles, @@ -3275,9 +3031,7 @@ dir = 8; network = null }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "ekJ" = ( /obj/structure/bed/chair{ @@ -3288,18 +3042,14 @@ "ekV" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "ele" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) "elo" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/kutjevo/exterior/scrubland) "emi" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -3320,9 +3070,7 @@ /obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "enK" = ( /obj/structure/window{ @@ -3356,9 +3104,7 @@ /obj/structure/barricade/handrail/kutjevo{ layer = 3.05 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "epd" = ( /obj/item/reagent_container/food/drinks/cans/thirteenloko, @@ -3371,9 +3117,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) "epG" = ( -/turf/open/gm/dirtgrassborder2{ - icon_state = "wall2" - }, +/turf/open/gm/dirtgrassborder2/wall2, /area/kutjevo/exterior/complex_border/med_park) "epQ" = ( /obj/effect/landmark/monkey_spawn, @@ -3386,9 +3130,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/exterior/construction) "eqJ" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -3398,7 +3140,7 @@ /obj/structure/surface/rack, /obj/item/tool/crowbar/red, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "era" = ( /obj/structure/closet/crate/freezer/rations, /obj/item/defenses/handheld/tesla_coil, @@ -3450,9 +3192,7 @@ pixel_x = 5; pixel_y = -12 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "eud" = ( /obj/effect/landmark/xeno_spawn, @@ -3467,15 +3207,11 @@ pixel_y = 13 }, /obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "euI" = ( /obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "evr" = ( /turf/open/floor/kutjevo/colors, @@ -3512,9 +3248,7 @@ pixel_x = 5; pixel_y = 12 }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/runoff_bridge) "exD" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -3546,9 +3280,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_north) "eyU" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/kutjevo/exterior/lz_river) "ezg" = ( /obj/structure/surface/table/almayer, @@ -3558,9 +3290,7 @@ /obj/structure/largecrate/random/case/small{ pixel_y = 7 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, /area/kutjevo/interior/construction) "ezm" = ( /obj/structure/largecrate/random/case/double, @@ -3627,9 +3357,7 @@ /area/kutjevo/interior/complex/med/cells) "eDQ" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/interior/oob/dev_room) "eDS" = ( /obj/structure/prop/dam/boulder/boulder3, @@ -3647,10 +3375,8 @@ /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) "eFy" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_pad) "eFX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -3673,7 +3399,7 @@ "eGL" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "eHX" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz1_south) @@ -3682,9 +3408,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) "eIL" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, /area/kutjevo/interior/complex/med/auto_doc) "eIZ" = ( /obj/item/stack/rods, @@ -3694,15 +3418,11 @@ /obj/structure/platform/kutjevo/smooth{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) "eJi" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "eJo" = ( /obj/effect/landmark/corpsespawner/security/marshal, @@ -3710,9 +3430,7 @@ /area/kutjevo/interior/colony_South/power2) "eKr" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#995555" - }, +/turf/open/gm/river/red, /area/kutjevo/interior/oob) "eLO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -3755,22 +3473,16 @@ /obj/structure/platform/kutjevo/smooth{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "eOc" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 9 - }, +/turf/open/floor/kutjevo/colors/orange/edge/northwest, /area/kutjevo/interior/power_pt2_electric_boogaloo) "eOt" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "eOy" = ( /obj/effect/landmark/monkey_spawn, @@ -3806,9 +3518,7 @@ dir = 4 }, /obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/kutjevo/interior/colony_north) "ePx" = ( /turf/open/auto_turf/sand/layer0, @@ -3828,9 +3538,7 @@ /area/kutjevo/interior/power) "eQK" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/interior/oob/dev_room) "eQQ" = ( /obj/structure/machinery/colony_floodlight, @@ -3866,9 +3574,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/locks) "eSH" = ( /turf/open/floor/kutjevo/colors/orange/inner_corner, @@ -3886,9 +3592,7 @@ /area/kutjevo/exterior/runoff_river) "eTy" = ( /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "eTP" = ( /obj/structure/machinery/light/small{ @@ -3902,22 +3606,18 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) "eUA" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/construction) "eUJ" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "eVv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/power_pt2_electric_boogaloo) "eVy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -3930,9 +3630,7 @@ layer = 3.1 }, /obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "eVR" = ( /turf/open/gm/river/desert/deep, @@ -3982,9 +3680,7 @@ /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) "fbK" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/colony_central) "fbZ" = ( /turf/open/floor/kutjevo/tan, @@ -4008,18 +3704,14 @@ /obj/structure/platform/kutjevo/smooth{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "fdF" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "fdH" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -4044,9 +3736,7 @@ "feQ" = ( /obj/structure/closet, /obj/item/clothing/under/kutjevo/drysuit, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "feR" = ( /obj/structure/surface/rack, @@ -4077,9 +3767,7 @@ /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, /obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med/auto_doc) "ffP" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -4109,9 +3797,7 @@ /area/kutjevo/interior/complex/botany/east) "fiq" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "fiE" = ( /obj/item/stack/sheet/wood, @@ -4163,16 +3849,12 @@ /area/kutjevo/interior/colony_South) "flp" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "flP" = ( /obj/structure/blocker/invisible_wall, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#995555" - }, +/turf/open/gm/river/red, /area/kutjevo/interior/oob) "flW" = ( /obj/effect/landmark/yautja_teleport, @@ -4188,13 +3870,11 @@ /area/kutjevo/exterior/stonyfields) "fmN" = ( /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "fmR" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, /area/kutjevo/interior/construction) "fne" = ( /obj/item/trash/barcardine, @@ -4207,9 +3887,7 @@ }, /obj/item/clipboard, /obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "foI" = ( /obj/structure/barricade/wooden{ @@ -4220,18 +3898,14 @@ dir = 4 }, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/botany) "fpj" = ( /obj/item/trash/hotdog, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) "fpJ" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/locks) "fpM" = ( /obj/structure/platform_decoration/kutjevo{ @@ -4300,9 +3974,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) "fui" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/scrubland) "fuz" = ( /turf/open/auto_turf/sand/layer1, @@ -4312,9 +3984,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "fwF" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/colony_central) "fxL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -4325,9 +3995,7 @@ /area/kutjevo/interior/oob/dev_room) "fyB" = ( /obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "fyD" = ( /turf/open/floor/kutjevo/tan/multi_tiles, @@ -4341,9 +4009,7 @@ "fyZ" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "fAE" = ( /obj/effect/landmark/hunter_secondary, @@ -4351,9 +4017,7 @@ /area/kutjevo/exterior/complex_border/botany_medical_cave) "fAF" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/interior/oob) "fAT" = ( /obj/item/device/flashlight/lamp/tripod/grey, @@ -4370,16 +4034,12 @@ /obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "fEu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "fEz" = ( /obj/structure/surface/table/almayer, @@ -4407,9 +4067,7 @@ /obj/item/book/manual/nuclear, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/colony_South/power2) "fGk" = ( /obj/item/clipboard, @@ -4447,9 +4105,7 @@ "fKD" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "fKJ" = ( /obj/structure/reagent_dispensers/water_cooler{ @@ -4463,10 +4119,7 @@ }, /obj/structure/machinery/light, /obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/kutjevo/interior/complex/med/operating) "fKL" = ( /obj/structure/surface/table/almayer, @@ -4501,9 +4154,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "fNe" = ( /obj/effect/landmark/nightmare{ @@ -4534,14 +4185,10 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "fQg" = ( -/turf/open/gm/dirtgrassborder2{ - dir = 8 - }, +/turf/open/gm/dirtgrassborder2/west, /area/kutjevo/exterior/complex_border/med_park) "fQn" = ( /obj/structure/girder, @@ -4568,9 +4215,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/power/comms) "fQJ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -4597,9 +4242,7 @@ dir = 4 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "fSm" = ( /obj/structure/sink{ @@ -4609,19 +4252,15 @@ /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, /obj/item/roller, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, /area/kutjevo/interior/complex/med/operating) "fSK" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/handcard/aceofspades, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "fTk" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "fTR" = ( /obj/structure/closet/secure_closet/hydroponics, @@ -4645,9 +4284,7 @@ "fVm" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "fVv" = ( /obj/structure/largecrate/random/secure, @@ -4678,28 +4315,22 @@ "fYE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, /area/kutjevo/exterior/lz_pad) "fYF" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "fYI" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/kutjevo/exterior/runoff_river) "fZT" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/runoff_bridge) "gbv" = ( /turf/closed/wall/kutjevo/rock/border, @@ -4708,9 +4339,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "gce" = ( /obj/item/device/radio, @@ -4739,9 +4368,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "gdX" = ( /obj/structure/surface/table/almayer, @@ -4764,18 +4391,14 @@ dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/interior/oob/dev_room) "ggC" = ( /obj/structure/fence, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) "ghj" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, /area/kutjevo/interior/power_pt2_electric_boogaloo) "ghk" = ( /obj/structure/bed/sofa/vert/white, @@ -4793,9 +4416,7 @@ pixel_y = 6 }, /obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/power/comms) "giY" = ( /obj/item/device/flashlight/lamp/tripod/grey, @@ -4820,9 +4441,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/operating) "gld" = ( /turf/open/auto_turf/sand/layer0, @@ -4839,7 +4458,7 @@ "gmA" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "gmS" = ( /obj/structure/machinery/shower{ dir = 1; @@ -4863,14 +4482,10 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_dunes) "goa" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/kutjevo/exterior/scrubland) "goh" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/runoff_dunes) "gok" = ( /obj/structure/flora/bush/desert{ @@ -4891,9 +4506,7 @@ "gpm" = ( /obj/structure/bed/roller, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/triage) "gqQ" = ( /obj/item/weapon/gun/rifle/m16, @@ -4915,9 +4528,7 @@ icon_state = "tree_2"; pixel_y = 14 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/spring) "gsq" = ( /obj/structure/filingcabinet, @@ -4929,9 +4540,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med) "gtr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -4941,10 +4550,7 @@ "gtE" = ( /obj/structure/blocker/invisible_wall, /obj/structure/platform/kutjevo, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/kutjevo/interior/power) "gtL" = ( /obj/structure/platform/kutjevo/smooth{ @@ -4954,9 +4560,7 @@ dir = 8 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "gvO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -4970,17 +4574,13 @@ }, /obj/structure/closet, /obj/item/clothing/under/kutjevo, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "gwv" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) "gwC" = ( /obj/structure/platform/kutjevo{ @@ -4988,17 +4588,13 @@ }, /obj/structure/blocker/invisible_wall, /obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "gwY" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med) "gxs" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/scrubland) "gxD" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -5006,9 +4602,7 @@ icon_state = "p_stair_full"; pixel_y = 16 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "gxK" = ( /obj/structure/blocker/invisible_wall, @@ -5018,9 +4612,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibarm" }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "gzb" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -5051,9 +4643,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) "gAM" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/exterior/lz_dunes) "gBa" = ( /obj/structure/largecrate/random/case/double, @@ -5100,9 +4690,7 @@ "gCh" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "gCt" = ( /obj/structure/morgue{ @@ -5122,9 +4710,7 @@ /area/kutjevo/interior/complex/Northwest_Flight_Control) "gEc" = ( /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med/operating) "gEe" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -5156,15 +4742,11 @@ /area/kutjevo/interior/colony_N_East) "gFo" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 10 - }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) "gFt" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) "gFA" = ( /turf/open/desert/desert_shore/shore_edge1, @@ -5178,9 +4760,7 @@ dir = 4 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "gHp" = ( /obj/structure/surface/rack, @@ -5193,9 +4773,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) "gJx" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/kutjevo/exterior/spring) "gJB" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -5251,9 +4829,7 @@ /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) "gNI" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med/operating) "gNZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -5320,9 +4896,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, /area/kutjevo/interior/complex/med) "gTo" = ( /obj/structure/filingcabinet, @@ -5344,7 +4918,7 @@ "gTO" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "gUa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -5379,9 +4953,7 @@ "gWo" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/coagulation_arm, -/turf/open/gm/river{ - color = "#990000" - }, +/turf/open/gm/river/darkred, /area/kutjevo/interior/oob) "gWF" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -5474,9 +5046,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) "hdF" = ( -/turf/open/floor/plating/kutjevo{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/kutjevo/platingdmg1, /area/kutjevo/interior/complex/botany/east_tech) "hdQ" = ( /obj/structure/platform/kutjevo/smooth, @@ -5493,18 +5063,14 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) "hfu" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med/triage) "hhu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "hii" = ( /turf/open/auto_turf/sand/layer2, @@ -5518,9 +5084,7 @@ }, /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "hiM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -5542,9 +5106,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) "hmR" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 9 - }, +/turf/open/floor/kutjevo/colors/orange/edge/northwest, /area/kutjevo/interior/foremans_office) "hnm" = ( /obj/effect/landmark/objective_landmark/far, @@ -5555,7 +5117,7 @@ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "hnE" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -5624,9 +5186,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med) "hrz" = ( /turf/open/auto_turf/sand/layer0, @@ -5690,14 +5250,10 @@ dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "hwA" = ( -/turf/open/floor/plating/kutjevo{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/kutjevo/platingdmg3, /area/kutjevo/interior/complex/botany/east_tech) "hwO" = ( /obj/structure/machinery/light{ @@ -5782,14 +5338,10 @@ /area/kutjevo/interior/complex/Northwest_Dorms) "hCl" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "hCu" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/complex/botany/east) "hDi" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -5803,9 +5355,7 @@ pixel_y = 16 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "hDu" = ( /obj/structure/surface/rack, @@ -5842,9 +5392,7 @@ /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) "hET" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/spring) "hFi" = ( /obj/structure/barricade/wooden{ @@ -5871,9 +5419,7 @@ /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) "hHi" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) "hHo" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, @@ -5885,16 +5431,12 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/power_pt2_electric_boogaloo) "hJN" = ( /obj/structure/largecrate/random, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "hKE" = ( /obj/structure/platform/kutjevo{ @@ -5929,18 +5471,14 @@ "hOm" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/m94, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, /area/kutjevo/interior/construction) "hOB" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) "hPf" = ( /obj/structure/window/framed/kutjevo/reinforced, @@ -5964,9 +5502,7 @@ /area/kutjevo/interior/oob/dev_room) "hRm" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating/kutjevo{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/kutjevo/platingdmg3, /area/kutjevo/interior/complex/Northwest_Dorms) "hRG" = ( /obj/structure/prop/dam/boulder/boulder2, @@ -6007,9 +5543,7 @@ /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_north) "hUy" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/botany/east_tech) "hVg" = ( /obj/effect/spawner/random/tool, @@ -6027,9 +5561,7 @@ dir = 8 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med/auto_doc) "hWD" = ( /obj/structure/lattice, @@ -6113,16 +5645,11 @@ /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/kutjevo/interior/oob) "ieA" = ( /obj/item/tool/weldingtool, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, /area/kutjevo/interior/complex/Northwest_Flight_Control) "ify" = ( /turf/closed/wall/kutjevo/colony, @@ -6133,16 +5660,12 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/construction) "ifT" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/colony_South/power2) "ige" = ( /obj/structure/blocker/invisible_wall, @@ -6167,7 +5690,7 @@ "iiy" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "iiG" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) @@ -6176,18 +5699,14 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) "ikW" = ( -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/purple/edge/east, /area/kutjevo/interior/construction) "imG" = ( /obj/structure/bed/sofa/vert/white/top{ pixel_y = 17 }, /obj/structure/bed/sofa/vert/white, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/med) "inR" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -6197,9 +5716,7 @@ /area/kutjevo/exterior/construction) "iob" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/interior/oob) "ips" = ( /obj/item/bodybag/tarp/reactive, @@ -6207,9 +5724,7 @@ /area/kutjevo/interior/power) "ipy" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "ipz" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, @@ -6239,9 +5754,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/gm/river{ - color = "#990000" - }, +/turf/open/gm/river/darkred, /area/kutjevo/interior/oob) "irK" = ( /obj/structure/machinery/light/small{ @@ -6259,9 +5772,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) "iuz" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/runoff_river) "iuL" = ( /obj/structure/machinery/vending/coffee, @@ -6288,9 +5799,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "iwV" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/complex/botany) "iwW" = ( /obj/item/stool{ @@ -6303,25 +5812,21 @@ /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/runoff_river) "iyd" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med/operating) "iyP" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, +/turf/open/floor/coagulation/icon7_8_2, /area/kutjevo/exterior/scrubland) "izS" = ( /obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med/triage) +"izY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "iBa" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, /area/kutjevo/interior/power_pt2_electric_boogaloo) "iBd" = ( /obj/structure/filingcabinet{ @@ -6359,9 +5864,7 @@ "iCw" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) "iCG" = ( /obj/structure/platform/kutjevo{ @@ -6369,15 +5872,13 @@ }, /obj/structure/blocker/invisible_wall, /obj/structure/platform/kutjevo, -/turf/open/gm/river{ - color = "#990000" - }, +/turf/open/gm/river/darkred, /area/kutjevo/interior/power) "iCQ" = ( /obj/structure/flora/grass/desert/lightgrass_9, /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "iDz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, @@ -6421,9 +5922,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/kutjevo/interior/construction) "iJo" = ( /obj/structure/platform/kutjevo{ @@ -6432,9 +5931,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) "iJq" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/runoff_dunes) "iJx" = ( /obj/structure/largecrate/random/case/double, @@ -6450,9 +5947,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/kutjevo/interior/colony_north) "iKE" = ( /obj/structure/surface/table/almayer, @@ -6485,14 +5980,10 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) "iMR" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/colony_central) "iNt" = ( /obj/structure/surface/table/reinforced/prison, @@ -6511,9 +6002,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) "iPk" = ( /obj/item/prop/alien/hugger, @@ -6540,9 +6029,7 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/oob) "iSN" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/lz_river) "iTc" = ( /obj/effect/decal/cleanable/blood, @@ -6627,35 +6114,27 @@ /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "iXz" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) "iXD" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/scrubland) "iYo" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) "iYO" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, /area/kutjevo/interior/complex/Northwest_Dorms) "iZi" = ( /obj/structure/barricade/wooden{ dir = 1; pixel_y = 20 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "iZu" = ( /obj/structure/machinery/light, @@ -6693,16 +6172,12 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med/auto_doc) "jcl" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 9 - }, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) "jcI" = ( /turf/open/auto_turf/sand/layer1, @@ -6789,9 +6264,7 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) "jiX" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 6 - }, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, /area/kutjevo/interior/complex/Northwest_Dorms) "jjt" = ( /obj/structure/machinery/light{ @@ -6827,9 +6300,7 @@ pixel_x = 4; pixel_y = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "jnr" = ( /turf/open/floor/kutjevo/tan/alt_edge, @@ -6863,9 +6334,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/runoff_river) "jog" = ( /obj/effect/landmark/static_comms/net_one, @@ -6873,9 +6342,7 @@ /area/kutjevo/exterior/telecomm/lz1_south) "joo" = ( /obj/item/cell/high, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "joL" = ( /obj/structure/filingcabinet, @@ -6909,14 +6376,10 @@ /obj/structure/platform/kutjevo/rock{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/kutjevo/exterior/scrubland) "jrk" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/complex/botany) "jrs" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -6974,7 +6437,7 @@ "juC" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "juH" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 6; @@ -7023,9 +6486,7 @@ /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/med/operating) "jwx" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, /area/kutjevo/interior/complex/med) "jwA" = ( /turf/open/floor/kutjevo/multi_tiles, @@ -7046,9 +6507,7 @@ dir = 8 }, /obj/structure/machinery/vending/cola, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "jxS" = ( /obj/structure/bed/chair{ @@ -7067,9 +6526,7 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) "jyz" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/lz_river) "jzb" = ( /obj/structure/prop/dam/truck/mining, @@ -7083,16 +6540,12 @@ /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med) "jzm" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, /area/kutjevo/interior/power_pt2_electric_boogaloo) "jzQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med) "jBe" = ( /obj/structure/closet/firecloset/full, @@ -7117,9 +6570,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) "jEh" = ( -/turf/open/floor/plating/kutjevo{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/kutjevo/panelscorched, /area/kutjevo/interior/complex/Northwest_Dorms) "jEo" = ( /obj/structure/machinery/camera/autoname{ @@ -7158,10 +6609,11 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) +"jGF" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "jGX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, @@ -7201,18 +6653,14 @@ "jJo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "jKc" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) "jKm" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/colony_central) "jKI" = ( /turf/closed/wall/kutjevo/colony/reinforced, @@ -7227,9 +6675,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) "jOx" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/runoff_dunes) "jOA" = ( /obj/item/prop/alien/hugger, @@ -7237,9 +6683,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "jPb" = ( /obj/structure/monorail, @@ -7293,16 +6737,14 @@ /area/kutjevo/interior/power_pt2_electric_boogaloo) "jSQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany/east) "jUK" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "jUP" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -7314,9 +6756,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/kutjevo/interior/colony_north) "jXo" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -7331,9 +6771,7 @@ /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) "jZT" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med/triage) "kah" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -7344,9 +6782,7 @@ "kbg" = ( /obj/structure/blocker/invisible_wall, /obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "kbL" = ( /obj/effect/decal/cleanable/blood/oil, @@ -7359,9 +6795,7 @@ /area/kutjevo/exterior/runoff_river) "kcd" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/construction) "kct" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -7379,9 +6813,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) "kdY" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power) "kec" = ( /obj/structure/platform_decoration/kutjevo/rock{ @@ -7395,9 +6827,7 @@ /obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "keX" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -7440,9 +6870,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "kie" = ( /obj/structure/blocker/invisible_wall, @@ -7455,9 +6883,7 @@ /area/kutjevo/interior/complex/botany) "kiE" = ( /obj/item/reagent_container/glass/bucket, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) "kiN" = ( /obj/structure/cable/heavyduty{ @@ -7471,9 +6897,7 @@ /area/kutjevo/interior/colony_central) "kjo" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/scrubland) "kkB" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -7481,9 +6905,7 @@ /area/kutjevo/interior/complex/med) "kkC" = ( /obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, +/turf/open/floor/coagulation/icon7_0, /area/kutjevo/interior/colony_north) "kkH" = ( /turf/closed/wall/kutjevo/colony/reinforced, @@ -7491,9 +6913,7 @@ "kls" = ( /obj/structure/surface/table/almayer, /obj/item/storage/surgical_tray, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med/operating) "klu" = ( /obj/structure/surface/table/almayer, @@ -7502,9 +6922,7 @@ /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) "klE" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "klN" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -7518,9 +6936,7 @@ dir = 1; pixel_y = 10 }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med) "kma" = ( /obj/structure/blocker/invisible_wall, @@ -7530,9 +6946,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = -28 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "kne" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -7592,9 +7006,7 @@ /area/kutjevo/interior/complex/med/operating) "kqE" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 6 - }, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, /area/kutjevo/interior/complex/Northwest_Dorms) "kqY" = ( /obj/structure/reagent_dispensers/water_cooler, @@ -7651,9 +7063,7 @@ /area/kutjevo/exterior/Northwest_Colony) "kuL" = ( /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/edge/north, /area/kutjevo/interior/construction) "kuM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -7679,9 +7089,7 @@ /area/kutjevo/interior/complex/med/triage) "kvu" = ( /obj/item/storage/briefcase, -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, /area/kutjevo/interior/complex/med) "kvI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -7746,9 +7154,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/botany) "kAf" = ( /obj/structure/surface/table/almayer, @@ -7756,9 +7162,7 @@ dir = 8; network = null }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) "kAr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -7781,15 +7185,13 @@ range = 15 }, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/med) "kBm" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "kBz" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, @@ -7822,7 +7224,7 @@ anchored = 0 }, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "kDS" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) @@ -7857,9 +7259,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "kGM" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/botany/east_tech) "kGU" = ( /turf/closed/wall/kutjevo/colony/reinforced, @@ -7871,9 +7271,7 @@ /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, /area/kutjevo/interior/power_pt2_electric_boogaloo) "kIc" = ( /obj/structure/barricade/deployable{ @@ -7918,9 +7316,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) "kMx" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, +/turf/open/floor/coagulation/icon7_8_2, /area/kutjevo/interior/power/comms) "kMC" = ( /obj/structure/cable/heavyduty{ @@ -7929,9 +7325,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) "kMP" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "kNn" = ( /obj/structure/closet/secure_closet/hydroponics, @@ -7939,9 +7333,7 @@ /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) "kNq" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/lz_river) "kNx" = ( /obj/structure/platform/kutjevo{ @@ -8005,9 +7397,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) "kQD" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/spring) "kQU" = ( /obj/structure/platform/kutjevo{ @@ -8021,24 +7411,18 @@ "kSh" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/complex/botany/east) "kSo" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/interior/oob/dev_room) "kSy" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 10 - }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, /area/kutjevo/interior/complex/Northwest_Dorms) "kSB" = ( /obj/structure/platform/kutjevo{ @@ -8071,7 +7455,7 @@ "kVA" = ( /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "kVH" = ( /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer1, @@ -8084,24 +7468,21 @@ /obj/structure/machinery/light, /obj/structure/closet/secure_closet/security, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "kWd" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"kWX" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/lz_pad) "kYb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/atmospipes, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "kZm" = ( /obj/structure/platform_decoration/kutjevo, @@ -8130,9 +7511,7 @@ /area/kutjevo/interior/colony_N_East) "lac" = ( /obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) "laf" = ( /obj/structure/platform_decoration/kutjevo/rock{ @@ -8168,9 +7547,7 @@ /area/kutjevo/interior/complex/med) "lcv" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "lcS" = ( /turf/open/floor/kutjevo/colors, @@ -8196,9 +7573,7 @@ pixel_x = -24; start_charge = 0 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/locks) "lfm" = ( /obj/item/stack/sheet/wood, @@ -8236,9 +7611,7 @@ dir = 4 }, /obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "lhY" = ( /obj/structure/machinery/light{ @@ -8250,9 +7623,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "lkC" = ( /turf/open/floor/kutjevo/tan/multi_tiles, @@ -8284,9 +7655,7 @@ "lmK" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/interior/oob/dev_room) "loe" = ( /obj/structure/platform/kutjevo/rock, @@ -8298,15 +7667,11 @@ icon_state = "xgib4" }, /obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/exterior/runoff_bridge) "lov" = ( /obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "loI" = ( /obj/structure/surface/rack, @@ -8332,9 +7697,7 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/triage) "lpJ" = ( /turf/open/desert/desert_shore/shore_corner2, @@ -8353,9 +7716,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) "lrx" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/lz_dunes) "lry" = ( /obj/structure/machinery/light{ @@ -8375,9 +7736,7 @@ /area/kutjevo/exterior/scrubland) "lsy" = ( /obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power/comms) "ltv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -8391,9 +7750,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 10 - }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) "lvb" = ( /obj/structure/surface/table/almayer, @@ -8404,9 +7761,7 @@ /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) "lwL" = ( -/turf/open/gm/dirtgrassborder2{ - dir = 4 - }, +/turf/open/gm/dirtgrassborder2/east, /area/kutjevo/exterior/complex_border/med_park) "lxc" = ( /turf/open/auto_turf/sand/layer1, @@ -8435,7 +7790,7 @@ "lxN" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "lyD" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -8454,18 +7809,17 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) "lyJ" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/kutjevo/exterior/scrubland) "lzb" = ( /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power/comms) +"lzD" = ( +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "lAn" = ( /obj/structure/machinery/light{ dir = 4 @@ -8526,9 +7880,7 @@ /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) "lEf" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/spring) "lEA" = ( /turf/closed/wall/kutjevo/colony/reinforced, @@ -8546,9 +7898,7 @@ icon_state = "solo_tank_empty" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "lFt" = ( /obj/structure/blocker/invisible_wall, @@ -8580,20 +7930,17 @@ /area/kutjevo/interior/oob) "lIM" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/foremans_office) +"lKk" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "lKR" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/purple/edge/east, /area/kutjevo/interior/construction) "lKV" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/runoff_river) "lLo" = ( /obj/structure/monorail, @@ -8621,9 +7968,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "lMr" = ( /obj/structure/barricade/wooden{ @@ -8654,7 +7999,7 @@ dir = 1 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "lNt" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/stack/sheet/metal/medium_stack, @@ -8731,18 +8076,14 @@ dir = 1; pixel_y = 13 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "lVt" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) "lVO" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/runoff_dunes) "lVS" = ( /obj/structure/monorail, @@ -8764,9 +8105,7 @@ dir = 4 }, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/interior/oob) "lXN" = ( /turf/open/floor/kutjevo/plate, @@ -8777,9 +8116,7 @@ /area/kutjevo/interior/colony_N_East) "lYI" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/north, /area/kutjevo/interior/oob) "lYW" = ( /obj/effect/landmark/survivor_spawner, @@ -8805,11 +8142,9 @@ "mao" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "mar" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/Northwest_Colony) "maE" = ( /turf/open/floor/kutjevo/tan/alt_edge, @@ -8817,15 +8152,11 @@ "mbc" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "mbh" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/scrubland) "mbp" = ( /obj/structure/barricade/wooden{ @@ -8843,9 +8174,7 @@ /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) "mct" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/kutjevo/exterior/spring) "mcv" = ( /obj/structure/window/framed/kutjevo/reinforced/hull, @@ -8854,9 +8183,7 @@ /area/kutjevo/interior/oob) "mcA" = ( /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "mcZ" = ( /obj/structure/bed/chair{ @@ -8870,9 +8197,7 @@ /area/kutjevo/exterior/scrubland) "mdr" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/triage) "mdu" = ( /obj/structure/machinery/light/small, @@ -8913,7 +8238,7 @@ "mfk" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "mfD" = ( /obj/structure/prop/dam/truck/mining, /turf/open/auto_turf/sand/layer1, @@ -8923,9 +8248,7 @@ dir = 8 }, /obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/kutjevo/interior/colony_north) "mgn" = ( /turf/open/floor/kutjevo/multi_tiles, @@ -8948,9 +8271,7 @@ }, /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "mhj" = ( /obj/structure/platform/kutjevo/rock{ @@ -8962,9 +8283,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) "mhJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/kutjevo/exterior/lz_dunes) "mhN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -8986,25 +8305,19 @@ /area/kutjevo/exterior/telecomm/lz2_north) "mjq" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/runoff_river) "mjN" = ( /obj/item/stack/barbed_wire, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) "mjP" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/kutjevo/interior/complex/botany/east_tech) "mjW" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_pad) "mkJ" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, @@ -9021,18 +8334,14 @@ /obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "mmH" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) "mnk" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/lz_dunes) "mnn" = ( /obj/structure/platform/kutjevo{ @@ -9058,9 +8367,7 @@ /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/complex_border/med_rec) "mqu" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/lz_river) "mqG" = ( /turf/open/floor/kutjevo/colors/cyan/inner_corner, @@ -9069,16 +8376,12 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, /area/kutjevo/interior/construction) "msF" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power) "msK" = ( /turf/open/auto_turf/sand/layer1, @@ -9089,9 +8392,7 @@ /area/kutjevo/interior/complex/botany) "mti" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, /area/kutjevo/interior/foremans_office) "mtt" = ( /obj/effect/decal/cleanable/blood, @@ -9143,9 +8444,7 @@ "mvM" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/med/locks) "mvX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -9171,9 +8470,7 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) "myk" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/spring) "mzn" = ( /obj/structure/platform/kutjevo{ @@ -9191,6 +8488,9 @@ /obj/item/storage/pill_bottle/dexalin/skillless, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) +"mAb" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/lz_pad) "mAD" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -9225,9 +8525,7 @@ /area/kutjevo/exterior/stonyfields) "mBG" = ( /obj/item/weapon/wirerod, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "mBP" = ( /obj/structure/prop/dam/large_boulder/boulder2, @@ -9243,9 +8541,7 @@ /area/kutjevo/interior/complex/med/operating) "mCo" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/interior/oob) "mCI" = ( /obj/structure/prop/dam/crane{ @@ -9292,9 +8588,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/edge/north, /area/kutjevo/interior/construction) "mDA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -9342,9 +8636,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/interior/colony_central) "mFf" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -9382,9 +8674,7 @@ pixel_x = -2; pixel_y = 5 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/med/locks) "mHo" = ( /obj/structure/platform_decoration/kutjevo{ @@ -9418,9 +8708,7 @@ /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) "mIA" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/scrubland) "mIB" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -9433,7 +8721,7 @@ "mIT" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "mJq" = ( /obj/structure/machinery/computer/cameras/telescreen/entertainment{ icon_state = "ai_bsod"; @@ -9465,14 +8753,10 @@ dir = 1 }, /obj/structure/machinery/camera/autoname, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/triage) "mLY" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/Northwest_Dorms) "mMf" = ( /turf/open/auto_turf/sand/layer2, @@ -9480,9 +8764,7 @@ "mMF" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/west, /area/kutjevo/interior/colony_South/power2) "mMH" = ( /turf/open/auto_turf/sand/layer0, @@ -9492,14 +8774,10 @@ /area/kutjevo/exterior/telecomm/lz2_north) "mNl" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#990000" - }, +/turf/open/gm/river/darkred, /area/kutjevo/interior/oob) "mNv" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/spring) "mNM" = ( /turf/closed/wall/kutjevo/colony, @@ -9538,9 +8816,7 @@ /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_river) "mRP" = ( -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, /area/kutjevo/interior/construction) "mSd" = ( /obj/structure/platform_decoration/kutjevo{ @@ -9557,9 +8833,7 @@ /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) "mSv" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, /area/kutjevo/interior/complex/med/auto_doc) "mSG" = ( /obj/structure/flora/grass/tallgrass/desert, @@ -9580,9 +8854,7 @@ /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) "mVr" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/kutjevo/exterior/lz_river) "mVC" = ( /obj/structure/platform_decoration/kutjevo{ @@ -9595,9 +8867,7 @@ /area/kutjevo/interior/complex/med/cells) "mWA" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "mWO" = ( /obj/structure/platform_decoration/kutjevo, @@ -9610,9 +8880,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) "mYj" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/kutjevo/exterior/scrubland) "mYt" = ( /obj/effect/decal/cleanable/blood/oil, @@ -9631,9 +8899,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) "mZE" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) "nah" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -9668,9 +8934,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "nct" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/runoff_river) "ndw" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -9682,9 +8946,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/power_pt2_electric_boogaloo) "neI" = ( /obj/structure/machinery/light, @@ -9695,9 +8957,7 @@ pixel_y = 28 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/triage) "ngp" = ( /obj/structure/platform_decoration/kutjevo{ @@ -9706,9 +8966,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) "ngK" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/colony_South/power2) "ngX" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -9762,17 +9020,13 @@ /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/gm/dirtgrassborder2{ - dir = 8 - }, +/turf/open/gm/dirtgrassborder2/west, /area/kutjevo/exterior/complex_border/med_park) "nlv" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) "nlA" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/exterior/construction) "nlT" = ( /obj/structure/platform/kutjevo, @@ -9781,9 +9035,7 @@ "nmw" = ( /obj/structure/surface/table/almayer, /obj/item/paper/janitor, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "nmK" = ( /obj/structure/bed/chair/comfy{ @@ -9799,9 +9051,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/power_pt2_electric_boogaloo) "nnx" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -9812,9 +9062,7 @@ /area/kutjevo/exterior/construction) "nnz" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/foremans_office) "nps" = ( /obj/effect/decal/cleanable/blood, @@ -9823,9 +9071,7 @@ "npx" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "npB" = ( /obj/structure/machinery/light, @@ -9867,9 +9113,7 @@ /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany/east) "nsF" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/med/locks) "nsU" = ( /obj/structure/machinery/light{ @@ -9922,6 +9166,12 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"nvi" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "nvG" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, @@ -9943,9 +9193,7 @@ start_charge = 0 }, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/operating) "nyv" = ( /obj/structure/platform_decoration/kutjevo/rock{ @@ -9979,9 +9227,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) "nzQ" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/kutjevo/exterior/scrubland) "nAc" = ( /turf/open/auto_turf/sand/layer2, @@ -10035,9 +9281,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, /area/kutjevo/interior/complex/Northwest_Dorms) "nDH" = ( /obj/structure/pipes/standard/simple/visible{ @@ -10103,9 +9347,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/gm/river{ - color = "#990000" - }, +/turf/open/gm/river/darkred, /area/kutjevo/interior/oob) "nHV" = ( /obj/structure/surface/rack, @@ -10142,9 +9384,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "nJC" = ( /turf/open/floor/kutjevo/colors/orange, @@ -10171,9 +9411,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) "nLc" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/complex/botany) "nLg" = ( /obj/structure/cable/heavyduty{ @@ -10217,9 +9455,7 @@ /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) "nLT" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/lz_river) "nMz" = ( /obj/structure/reagent_dispensers/fueltank, @@ -10265,18 +9501,14 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) "nPA" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/colony_central) "nPO" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) "nPX" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/spring) "nQc" = ( /obj/structure/platform_decoration/kutjevo/rock, @@ -10286,9 +9518,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) "nQo" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/lz_river) "nQr" = ( /obj/item/ammo_magazine/rifle/mar40, @@ -10298,9 +9528,7 @@ /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, +/turf/open/floor/coagulation/icon7_8_2, /area/kutjevo/interior/construction) "nRd" = ( /obj/item/tool/wrench, @@ -10351,9 +9579,7 @@ /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "nVH" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "nWo" = ( /obj/structure/platform/kutjevo{ @@ -10362,9 +9588,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/scrubland) "nWu" = ( /obj/structure/barricade/wooden{ @@ -10408,9 +9632,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power) "nZw" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -10448,9 +9670,7 @@ "oca" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "ocd" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -10464,26 +9684,20 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) "oce" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/runoff_river) "ocn" = ( /obj/structure/machinery/light, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) "oeb" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "oex" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) "oeE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/kutjevo/exterior/scrubland) "ofn" = ( /obj/structure/flora/grass/desert/lightgrass_6, @@ -10511,19 +9725,13 @@ }, /obj/item/clipboard, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "ogo" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/operating) "ogG" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/operating) "oii" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -10617,9 +9825,7 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) "onC" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 9 - }, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) "onP" = ( /obj/structure/bed/chair{ @@ -10645,9 +9851,7 @@ /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) "oqg" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/lz_river) "oqw" = ( /obj/item/tool/pickaxe, @@ -10695,7 +9899,7 @@ "oun" = ( /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "ouR" = ( /obj/structure/blocker/invisible_wall, /obj/structure/xenoautopsy/tank/larva, @@ -10748,9 +9952,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "oxT" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -10759,17 +9961,13 @@ /area/kutjevo/interior/colony_S_East) "ozl" = ( /obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/lz_river) "ozq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) "ozs" = ( /obj/structure/platform/kutjevo{ @@ -10824,23 +10022,17 @@ /area/kutjevo/exterior/Northwest_Colony) "oFs" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/interior/oob/dev_room) "oFz" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/complex/botany/east) "oFX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "oGw" = ( /obj/structure/platform/kutjevo/smooth, @@ -10849,9 +10041,7 @@ /area/kutjevo/interior/colony_South/power2) "oGC" = ( /obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/runoff_river) "oIb" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -10876,9 +10066,7 @@ "oIV" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) "oJj" = ( /obj/structure/surface/table/almayer, @@ -10888,7 +10076,7 @@ /area/kutjevo/interior/complex/botany/east_tech) "oJE" = ( /turf/open/floor/kutjevo/tan/alt_edge, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "oJV" = ( /obj/structure/machinery/light{ dir = 1 @@ -10897,7 +10085,7 @@ /area/kutjevo/exterior/scrubland) "oKx" = ( /turf/closed/wall/kutjevo/rock, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "oKA" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/kutjevo/colors/orange, @@ -10924,13 +10112,15 @@ /area/kutjevo/interior/colony_South/power2) "oMW" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/colors/purple/edge/northeast, /area/kutjevo/interior/construction) "oMZ" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/foremans_office) +"oNE" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "oNG" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/construction) @@ -10943,14 +10133,10 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) "oOd" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, /area/kutjevo/interior/complex/Northwest_Flight_Control) "oOl" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany/east) "oOs" = ( /obj/structure/machinery/light/small{ @@ -10965,9 +10151,7 @@ /area/kutjevo/interior/colony_N_East) "oOO" = ( /obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner/west, /area/kutjevo/exterior/lz_river) "oPb" = ( /obj/structure/blocker/invisible_wall, @@ -10991,9 +10175,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) "oQL" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/construction) "oQQ" = ( /obj/structure/window/framed/kutjevo/reinforced, @@ -11009,25 +10191,19 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) "oRE" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/complex/med/auto_doc) "oRM" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "oRZ" = ( /obj/structure/machinery/autodoc_console, /obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med/auto_doc) "oSK" = ( /obj/structure/machinery/vending/snack, @@ -11071,9 +10247,7 @@ /obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med/operating) "oXb" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -11115,14 +10289,10 @@ /area/kutjevo/exterior/runoff_river) "pbP" = ( /obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) "pbR" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "pbY" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -11145,9 +10315,7 @@ pixel_y = 6 }, /obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "pfe" = ( /obj/effect/decal/cleanable/blood/drip, @@ -11158,9 +10326,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "pfq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -11174,9 +10340,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/kutjevo/interior/construction) "pfK" = ( /obj/structure/barricade/wooden{ @@ -11219,18 +10383,14 @@ dir = 8; pixel_y = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "pih" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) "pio" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) "piq" = ( /obj/structure/platform/kutjevo/rock, @@ -11256,24 +10416,18 @@ /area/kutjevo/interior/complex/botany/east) "pjH" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/lz_river) "pkg" = ( /obj/structure/platform/kutjevo{ dir = 4 }, /obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/kutjevo/interior/construction) "pks" = ( /obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "8,6" - }, +/turf/open/floor/coagulation/icon8_6, /area/kutjevo/interior/oob) "pkP" = ( /turf/closed/wall/kutjevo/colony, @@ -11289,18 +10443,14 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) "plQ" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany/east) "pma" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) "pmo" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 10 - }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) "pmu" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -11316,9 +10466,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/spring) "pmR" = ( /obj/structure/largecrate/supply/supplies/flares, @@ -11328,9 +10476,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "pnM" = ( /obj/item/storage/belt/shotgun, @@ -11362,14 +10508,10 @@ /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) "ppn" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_bridge) "ppB" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/power_pt2_electric_boogaloo) "ppM" = ( /obj/structure/blocker/invisible_wall, @@ -11379,9 +10521,7 @@ /turf/open/floor/plating/kutjevo, /area/shuttle/drop2/kutjevo) "pqs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/kutjevo/exterior/scrubland) "prv" = ( /obj/structure/blocker/invisible_wall, @@ -11391,9 +10531,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "prJ" = ( /turf/open/auto_turf/sand/layer0, @@ -11473,9 +10611,7 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) "pxb" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 6 - }, +/turf/open/floor/kutjevo/colors/orange/edge/southeast, /area/kutjevo/interior/power_pt2_electric_boogaloo) "pxB" = ( /obj/structure/platform/kutjevo/rock{ @@ -11506,9 +10642,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "pzG" = ( /obj/structure/sign/safety/medical{ @@ -11521,9 +10655,7 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) "pzH" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med) "pzL" = ( /obj/structure/bed/chair, @@ -11533,9 +10665,7 @@ /obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/runoff_river) "pBi" = ( /obj/structure/platform/kutjevo, @@ -11557,9 +10687,7 @@ /area/kutjevo/exterior/runoff_dunes) "pCJ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) "pCS" = ( /turf/open/asphalt/cement_sunbleached, @@ -11569,9 +10697,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) "pDk" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, /area/kutjevo/interior/construction) "pDs" = ( /obj/effect/decal/cleanable/blood, @@ -11588,9 +10714,7 @@ /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "pEg" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/kutjevo/exterior/scrubland) "pEt" = ( /obj/structure/platform_decoration/kutjevo{ @@ -11628,9 +10752,7 @@ /area/kutjevo/interior/complex/med/auto_doc) "pGO" = ( /obj/item/storage/briefcase, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med/auto_doc) "pGY" = ( /obj/effect/decal/medical_decals{ @@ -11642,9 +10764,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "pHv" = ( /obj/effect/landmark/objective_landmark/medium, @@ -11674,15 +10794,11 @@ icon_state = "pottedplant_30"; pixel_y = 9 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/locks) "pIK" = ( /obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "pJa" = ( /obj/structure/machinery/light{ @@ -11730,9 +10846,7 @@ /area/kutjevo/exterior/complex_border/botany_medical_cave) "pLN" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "pLS" = ( /obj/effect/landmark/corpsespawner/wygoon, @@ -11743,9 +10857,7 @@ /area/kutjevo/interior/complex/med/locks) "pMS" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "pNi" = ( /obj/structure/window_frame/kutjevo, @@ -11786,16 +10898,14 @@ "pPn" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "pPz" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "pPJ" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_dunes) @@ -11827,12 +10937,10 @@ "pRL" = ( /obj/structure/largecrate, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "pRS" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/colony_South/power2) "pSs" = ( /turf/open/floor/kutjevo/colors/red, @@ -11866,7 +10974,7 @@ pixel_y = 14 }, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "pVd" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -11900,9 +11008,7 @@ /area/kutjevo/exterior/Northwest_Colony) "pXf" = ( /obj/structure/blocker/invisible_wall, -/turf/open/floor/filtrationside{ - dir = 1 - }, +/turf/open/floor/filtrationside/north, /area/kutjevo/interior/power) "pXF" = ( /obj/item/device/flashlight/on, @@ -11931,20 +11037,14 @@ /area/kutjevo/interior/construction) "qaS" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany/east_tech) "qaU" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/spring) "qaY" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/interior/oob/dev_room) "qcE" = ( /obj/structure/barricade/wooden{ @@ -11963,9 +11063,7 @@ pixel_y = 13 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "qgr" = ( /obj/item/ammo_magazine/rifle/m16, @@ -11977,9 +11075,7 @@ layer = 3.1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "qgW" = ( /turf/open/floor/kutjevo/tan/multi_tiles, @@ -12032,19 +11128,13 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) "qnd" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) "qny" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/runoff_river) "qnB" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/complex_border/med_rec) "qnU" = ( /turf/open/floor/kutjevo/tan, @@ -12100,9 +11190,7 @@ /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) "qpZ" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/botany) "qqM" = ( /obj/structure/surface/table/almayer, @@ -12119,9 +11207,7 @@ pixel_x = 1; pixel_y = 15 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "qrl" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -12138,9 +11224,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) "qru" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/kutjevo/exterior/lz_dunes) "qsY" = ( /obj/structure/cable/heavyduty{ @@ -12158,9 +11242,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) "quu" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "quy" = ( /turf/open/gm/dirtgrassborder2, @@ -12170,9 +11252,7 @@ /area/kutjevo/interior/colony_central/mine_elevator) "qwg" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "qwT" = ( /obj/item/tool/wirecutters/clippers, @@ -12203,9 +11283,7 @@ icon_state = "solo_tank_empty" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "qyS" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -12231,16 +11309,11 @@ /area/kutjevo/exterior/lz_river) "qAk" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power) "qAP" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/kutjevo/interior/oob) "qBa" = ( /obj/structure/platform/kutjevo{ @@ -12269,31 +11342,23 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) "qCi" = ( -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "qCy" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "qDu" = ( /obj/item/trash/kepler, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) "qDH" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/exterior/lz_pad) "qEq" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "qEA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -12312,9 +11377,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) "qFU" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_dunes) "qGa" = ( /obj/structure/platform_decoration/kutjevo, @@ -12328,18 +11391,14 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) "qGJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/kutjevo/exterior/lz_dunes) "qGQ" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "qHH" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -12367,9 +11426,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, /obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "qIV" = ( /obj/structure/platform/kutjevo/smooth, @@ -12379,9 +11436,7 @@ /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) "qJx" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 10 - }, +/turf/open/floor/kutjevo/colors/orange/edge/southwest, /area/kutjevo/interior/power_pt2_electric_boogaloo) "qKm" = ( /obj/structure/machinery/disposal, @@ -12415,17 +11470,13 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) "qOw" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, +/turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/runoff_river) "qOy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/complex/med/auto_doc) "qOJ" = ( /obj/structure/platform_decoration/kutjevo{ @@ -12435,9 +11486,7 @@ /area/kutjevo/interior/complex/med/locks) "qOM" = ( /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 5 - }, +/turf/open/floor/kutjevo/colors/purple/edge/northeast, /area/kutjevo/interior/construction) "qOP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -12453,9 +11502,7 @@ /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) "qPz" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/runoff_river) "qPO" = ( /turf/open/floor/plating/kutjevo, @@ -12475,9 +11522,7 @@ /area/kutjevo/interior/complex/botany) "qRp" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 9 - }, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, /area/kutjevo/interior/complex/Northwest_Dorms) "qRq" = ( /obj/structure/machinery/light{ @@ -12500,7 +11545,7 @@ dir = 1 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "qTN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -12510,12 +11555,10 @@ "qUC" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "qUZ" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "qVc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -12542,15 +11585,11 @@ /area/kutjevo/interior/complex/botany) "qVU" = ( /obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/complex/med/auto_doc) "qVY" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) "qVZ" = ( /obj/structure/filtration/machine_96x96{ @@ -12607,17 +11646,15 @@ "rdx" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "rej" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) "rfz" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_pad) "rfE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -12662,9 +11699,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "rih" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/lz_dunes) "riu" = ( /obj/structure/blocker/invisible_wall, @@ -12704,9 +11739,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/gm/river{ - color = "#995555" - }, +/turf/open/gm/river/red, /area/kutjevo/interior/oob) "rkt" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -12735,12 +11768,14 @@ dir = 4 }, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "rme" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/botany) +"rmg" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "rmo" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -12756,24 +11791,18 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "rmO" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) "rno" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/kutjevo/exterior/scrubland) "rnA" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/gm/dirtgrassborder2{ - dir = 1 - }, +/turf/open/gm/dirtgrassborder2/north, /area/kutjevo/exterior/complex_border/med_park) "rnM" = ( /obj/effect/landmark/hunter_secondary, @@ -12808,20 +11837,20 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"rst" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "rsM" = ( /obj/structure/machinery/power/apc{ dir = 1; pixel_y = 24; start_charge = 0 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "rsV" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/scrubland) "rte" = ( /obj/structure/prop/dam/boulder/boulder2, @@ -12838,9 +11867,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "rvA" = ( /obj/structure/girder, @@ -12908,9 +11935,7 @@ dir = 8 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "rzc" = ( /turf/open/gm/river/desert/deep, @@ -12970,14 +11995,10 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) "rEs" = ( -/turf/open/floor/plating/kutjevo{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/kutjevo/platingdmg1, /area/kutjevo/interior/complex/Northwest_Dorms) "rEI" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, /area/kutjevo/interior/foremans_office) "rES" = ( /turf/closed/wall/kutjevo/colony, @@ -12991,9 +12012,7 @@ /obj/item/reagent_container/food/drinks/coffeecup{ pixel_x = 3 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "rFR" = ( /obj/effect/landmark/monkey_spawn, @@ -13032,9 +12051,7 @@ "rIo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/backpack/lightpack, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "rID" = ( /obj/structure/machinery/shower{ @@ -13050,9 +12067,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) "rJU" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/runoff_dunes) "rKl" = ( /obj/item/storage/briefcase, @@ -13100,9 +12115,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) "rNg" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/runoff_river) "rNG" = ( /obj/item/ammo_magazine/revolver/cmb, @@ -13121,9 +12134,7 @@ "rQa" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link/green, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med/operating) "rQY" = ( /turf/open/floor/kutjevo/tan, @@ -13141,17 +12152,13 @@ icon_state = "kutjevo_goggles"; pixel_y = -2 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "rRL" = ( /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, +/turf/open/floor/coagulation/icon7_8_2, /area/kutjevo/interior/colony_north) "rSg" = ( /obj/item/device/flashlight/lamp/tripod/grey, @@ -13164,10 +12171,8 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "rSU" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_pad) "rTi" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -13179,9 +12184,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) "rTF" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 10 - }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, /area/kutjevo/interior/construction) "rTL" = ( /obj/structure/window{ @@ -13238,9 +12241,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 6 - }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, /area/kutjevo/interior/complex/Northwest_Flight_Control) "rXe" = ( /obj/structure/platform/kutjevo/rock{ @@ -13251,9 +12252,7 @@ "rXj" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/pizza, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) "rYc" = ( /obj/item/toy/handcard/uno_reverse_yellow, @@ -13261,9 +12260,7 @@ /area/kutjevo/interior/colony_central) "rYs" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/interior/oob/dev_room) "rYF" = ( /obj/structure/flora/bush/ausbushes/reedbush{ @@ -13288,9 +12285,7 @@ /area/kutjevo/exterior/scrubland) "rZV" = ( /obj/item/tool/wirecutters/clippers, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/botany) "rZW" = ( /turf/open/floor/kutjevo/colors/orange/tile, @@ -13299,14 +12294,12 @@ /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/colony_central) "saK" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "sbb" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" @@ -13326,9 +12319,7 @@ icon_state = "solo_tank_empty" }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "sbX" = ( /turf/open/auto_turf/sand/layer2, @@ -13374,9 +12365,7 @@ /turf/open/gm/river/desert/deep, /area/kutjevo/interior/complex/botany/east_tech) "sgc" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 6 - }, +/turf/open/floor/kutjevo/tan/alt_edge/southeast, /area/kutjevo/interior/complex/Northwest_Flight_Control) "sgF" = ( /obj/structure/noticeboard{ @@ -13392,31 +12381,23 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/foremans_office) "shX" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/colony_South/power2) "sit" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "siR" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) "sjE" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/complex/Northwest_Dorms) "sjN" = ( /obj/structure/surface/rack, @@ -13435,9 +12416,7 @@ /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) "slx" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) "slB" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -13499,9 +12478,7 @@ pixel_x = 5; pixel_y = -12 }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/runoff_bridge) "soe" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -13537,9 +12514,7 @@ "spd" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "sqr" = ( /obj/structure/platform/kutjevo, @@ -13554,9 +12529,7 @@ "sre" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "srs" = ( /obj/structure/largecrate/random/case/double, @@ -13586,9 +12559,7 @@ /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) "stt" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/power_pt2_electric_boogaloo) "svp" = ( /obj/structure/platform/kutjevo/rock{ @@ -13617,9 +12588,7 @@ /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_dunes) "sxy" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) "sxZ" = ( /obj/structure/closet/secure_closet/medical3{ @@ -13658,18 +12627,14 @@ /area/kutjevo/exterior/lz_dunes) "sAe" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany/east_tech) "sAf" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "sAA" = ( /obj/structure/bed/chair{ @@ -13695,9 +12660,7 @@ /area/kutjevo/interior/foremans_office) "sBH" = ( /obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/kutjevo/interior/oob) "sCw" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -13708,9 +12671,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/runoff_river) "sCA" = ( /obj/structure/prop/dam/boulder/boulder3, @@ -13726,9 +12687,7 @@ /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/complex_border/med_rec) "sEG" = ( /turf/open/floor/kutjevo/tan/alt_edge, @@ -13744,9 +12703,7 @@ /obj/structure/filtration/machine_64x96{ icon_state = "filtration_machine_A_0" }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/complex/botany) "sGs" = ( /turf/closed/wall/kutjevo/colony, @@ -13758,17 +12715,13 @@ /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) "sGS" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/spring) "sHg" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med/operating) "sHu" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -13798,9 +12751,7 @@ /obj/item/clothing/head/helmet/marine/veteran/kutjevo, /obj/item/clothing/glasses/kutjevo, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "sKo" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -13823,7 +12774,7 @@ /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "sLx" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/colors/orange, @@ -13864,9 +12815,7 @@ /obj/item/stack/sheet/wood{ pixel_x = -4 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "sOJ" = ( /turf/open/gm/river/desert/shallow_corner, @@ -13879,9 +12828,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) "sPV" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/power_pt2_electric_boogaloo) "sRb" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -13943,22 +12890,18 @@ "sUt" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "sUC" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/coagulation_arm, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "sVc" = ( /obj/structure/platform/kutjevo{ dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "sVx" = ( /turf/open/gm/river/desert/deep/covered, @@ -13985,6 +12928,10 @@ /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"sWR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "sXj" = ( /obj/structure/largecrate/random/case/small, /obj/effect/spawner/random/toolbox{ @@ -14020,15 +12967,11 @@ /obj/structure/blocker/invisible_wall, /obj/item/toy/inflatable_duck, /obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "sZz" = ( /obj/effect/landmark/corpsespawner/colonist/kutjevo, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/exterior/runoff_bridge) "sZO" = ( /obj/structure/machinery/light, @@ -14037,9 +12980,7 @@ /area/kutjevo/interior/complex/med) "sZY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/colony_central) "sZZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -14050,6 +12991,12 @@ "tax" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_dunes) +"tbk" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "tbx" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -14082,9 +13029,7 @@ /area/kutjevo/interior/complex/med/cells) "ten" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/operating) "ter" = ( /obj/structure/largecrate/random, @@ -14173,9 +13118,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) "tjS" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/lz_river) "tjZ" = ( /obj/structure/platform_decoration/kutjevo{ @@ -14202,9 +13145,7 @@ /area/kutjevo/interior/colony_central/mine_elevator) "tlK" = ( /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) "tlN" = ( /turf/closed/wall/kutjevo/colony/reinforced, @@ -14217,17 +13158,13 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) "tnI" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_pad) "tnM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/med) "tob" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -14273,9 +13210,7 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) "tqE" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany/east_tech) "trC" = ( /obj/structure/platform/kutjevo/rock{ @@ -14319,15 +13254,11 @@ dir = 4 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/power) "tvb" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med/operating) "tvJ" = ( /obj/structure/platform_decoration/kutjevo/rock, @@ -14341,17 +13272,13 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) "twq" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/runoff_dunes) "txe" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/kutjevo/exterior/scrubland) "txH" = ( /obj/structure/machinery/light, @@ -14424,9 +13351,7 @@ /obj/structure/flora/bush/ausbushes/reedbush{ pixel_y = 14 }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/runoff_bridge) "tDP" = ( /obj/item/stack/sheet/wood, @@ -14454,9 +13379,7 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "tEK" = ( /obj/structure/bed/sofa/vert/grey/bot{ @@ -14477,9 +13400,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib6" }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/botany) "tFH" = ( /obj/item/toy/beach_ball, @@ -14497,9 +13418,7 @@ /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/construction) "tGi" = ( -/turf/open/floor/coagulation{ - icon_state = "8,6" - }, +/turf/open/floor/coagulation/icon8_6, /area/kutjevo/exterior/runoff_river) "tGm" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -14510,17 +13429,18 @@ "tGE" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) +"tHh" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "tHI" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "tIh" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/runoff_river) "tIy" = ( /obj/structure/closet/secure_closet/security_empty, @@ -14547,7 +13467,7 @@ /area/kutjevo/exterior/runoff_dunes) "tIY" = ( /turf/open/desert/desert_shore/shore_edge1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "tKC" = ( /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, @@ -14560,9 +13480,7 @@ dir = 8 }, /obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/kutjevo/interior/construction) "tLO" = ( /obj/effect/decal/cleanable/blood/oil, @@ -14624,9 +13542,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) "tQB" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/runoff_dunes) "tQO" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -14676,14 +13592,10 @@ /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) "tUm" = ( -/turf/open/gm/dirtgrassborder2{ - dir = 1 - }, +/turf/open/gm/dirtgrassborder2/north, /area/kutjevo/exterior/complex_border/med_park) "tUz" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/lz_river) "tVs" = ( /obj/effect/landmark/hunter_primary, @@ -14720,15 +13632,11 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz2_north) "uah" = ( -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/exterior/construction) "uaj" = ( /obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "uam" = ( /obj/structure/platform_decoration/kutjevo, @@ -14739,9 +13647,7 @@ /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) "uaz" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/spring) "ubm" = ( /obj/structure/machinery/light{ @@ -14771,9 +13677,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) "ueM" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/spring) "ueO" = ( /obj/structure/prop/dam/boulder/boulder1, @@ -14782,9 +13686,7 @@ "ufp" = ( /obj/structure/surface/table/almayer, /obj/item/trash/syndi_cakes, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "ufN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -14815,9 +13717,7 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) "uhD" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/construction) "uhM" = ( /obj/structure/blocker/invisible_wall, @@ -14920,9 +13820,7 @@ /area/kutjevo/interior/complex/botany) "uma" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "umo" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -14933,9 +13831,7 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) "umQ" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/scrubland) "una" = ( /obj/structure/platform/kutjevo/rock{ @@ -14959,9 +13855,7 @@ /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) "upp" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 10 - }, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, /area/kutjevo/interior/complex/Northwest_Dorms) "upY" = ( /obj/effect/decal/cleanable/blood/drip, @@ -14969,17 +13863,13 @@ /area/kutjevo/interior/complex/med/triage) "uqv" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med) "uqL" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/lz_river) "uqR" = ( /obj/structure/machinery/light, @@ -14989,9 +13879,7 @@ /obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/colony_central) "uri" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ @@ -15028,9 +13916,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/kutjevo/interior/colony_north) "usd" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -15060,9 +13946,7 @@ /area/kutjevo/interior/complex/med/cells) "uwD" = ( /obj/item/clothing/mask/cigarette/pipe/cobpipe, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) "uwY" = ( /obj/structure/platform/kutjevo{ @@ -15085,9 +13969,7 @@ /area/kutjevo/exterior/scrubland) "uze" = ( /obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/runoff_river) "uzp" = ( /obj/structure/window/framed/kutjevo, @@ -15176,9 +14058,7 @@ /obj/structure/surface/table/almayer, /obj/item/book/manual/surgery, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med/operating) "uEr" = ( /obj/structure/filingcabinet{ @@ -15192,40 +14072,30 @@ pixel_y = 17 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "uEY" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/complex_border/med_rec) "uGd" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/lz_river) "uGB" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/interior/oob) "uGN" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) "uHg" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 9 - }, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, /area/kutjevo/interior/complex/Northwest_Dorms) "uHo" = ( /obj/structure/flora/grass/desert/lightgrass_3, @@ -15266,9 +14136,7 @@ "uJV" = ( /obj/structure/surface/rack, /obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "uKx" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -15302,9 +14170,7 @@ /turf/open/floor/kutjevo, /area/kutjevo/interior/oob/dev_room) "uMg" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/lz_dunes) "uML" = ( /obj/item/ammo_magazine/rifle/mar40/extended, @@ -15332,10 +14198,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/kutjevo/interior/oob) "uNJ" = ( /obj/structure/platform/kutjevo{ @@ -15440,9 +14303,7 @@ /area/kutjevo/interior/colony_South/power2) "uSG" = ( /obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/oob) "uTa" = ( /obj/effect/landmark/objective_landmark/science, @@ -15461,9 +14322,7 @@ /obj/structure/platform/kutjevo/smooth{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "uTo" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -15474,15 +14333,13 @@ "uTr" = ( /obj/structure/largecrate, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "uWk" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/interior/oob) "uWu" = ( /obj/effect/spawner/random/toolbox{ @@ -15496,9 +14353,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med) "uYi" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -15526,9 +14381,7 @@ /area/kutjevo/interior/power) "vaa" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "vap" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -15565,17 +14418,13 @@ /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) "vbA" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/runoff_dunes) "vbV" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) "vcs" = ( /obj/structure/machinery/computer/cameras{ @@ -15585,9 +14434,7 @@ /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) "vcT" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/lz_river) "vcW" = ( /obj/structure/platform/kutjevo/rock{ @@ -15605,9 +14452,7 @@ "vcY" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "vdl" = ( /obj/structure/platform_decoration/kutjevo{ @@ -15671,9 +14516,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) "vfr" = ( -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/edge/north, /area/kutjevo/interior/construction) "vfZ" = ( /obj/structure/platform/kutjevo/rock{ @@ -15682,9 +14525,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) "vgw" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/east, /area/kutjevo/interior/complex/med) "vgX" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -15715,9 +14556,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) "vin" = ( -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/kutjevo/exterior/lz_river) "viU" = ( /turf/open/floor/plating/kutjevo, @@ -15727,9 +14566,7 @@ /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) "vkK" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/runoff_dunes) "vkV" = ( /obj/structure/platform/kutjevo{ @@ -15751,9 +14588,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "vlt" = ( /obj/structure/surface/rack, @@ -15762,9 +14597,7 @@ /area/kutjevo/interior/power/comms) "vmB" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/runoff_river) "vmH" = ( /obj/structure/monorail, @@ -15774,9 +14607,7 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) "vmJ" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/med) "vnO" = ( /obj/structure/bed/chair{ @@ -15817,7 +14648,7 @@ "vrB" = ( /obj/structure/machinery/floodlight, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "vse" = ( /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer0, @@ -15826,17 +14657,13 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/purple/edge/east, /area/kutjevo/interior/construction) "vsP" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_N_East) "vsS" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, +/turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/lz_dunes) "vtY" = ( /obj/structure/machinery/light, @@ -15855,9 +14682,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) "vxe" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/colony_South) "vxM" = ( /obj/structure/surface/table/almayer, @@ -15902,9 +14727,7 @@ "vCx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/applecakeslice, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/complex/Northwest_Dorms) "vCT" = ( /obj/structure/blocker/invisible_wall, @@ -15914,10 +14737,7 @@ /obj/structure/platform/kutjevo{ dir = 8 }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +/turf/open/gm/river/red_pool, /area/kutjevo/interior/power) "vDi" = ( /obj/structure/platform_decoration/kutjevo{ @@ -15932,9 +14752,7 @@ /obj/structure/sign/safety/medical{ pixel_y = 32 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/botany) "vDH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -15977,9 +14795,7 @@ /area/kutjevo/interior/colony_South/power2) "vER" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/Northwest_Dorms) "vES" = ( /obj/item/tool/wirecutters, @@ -16021,9 +14837,7 @@ }, /obj/structure/platform/kutjevo/smooth, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) "vHf" = ( /obj/structure/surface/table/almayer, @@ -16039,17 +14853,13 @@ /area/kutjevo/interior/construction) "vHh" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany/east) "vHG" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_river) "vHL" = ( /turf/open/floor/kutjevo/colors/green/tile, @@ -16138,9 +14948,7 @@ pixel_y = 17 }, /obj/structure/bed/sofa/vert/white, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/med/auto_doc) "vOc" = ( /obj/structure/cable/heavyduty{ @@ -16166,7 +14974,7 @@ /area/kutjevo/interior/complex/botany) "vPm" = ( /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "vPE" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" @@ -16210,9 +15018,7 @@ /area/kutjevo/exterior/lz_dunes) "vTe" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/runoff_river) "vVr" = ( /turf/closed/wall/kutjevo/colony/reinforced, @@ -16225,9 +15031,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/purple/edge/east, /area/kutjevo/interior/construction) "vXo" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -16246,18 +15050,14 @@ /area/kutjevo/interior/power/comms) "vXs" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/complex/Northwest_Dorms) "vXK" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) "vYC" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/scrubland) "vYD" = ( /obj/effect/decal/cleanable/blood, @@ -16285,9 +15085,7 @@ /area/kutjevo/exterior/runoff_river) "vYW" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "wae" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -16295,6 +15093,9 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"wax" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/exterior/lz_pad) "waP" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -16371,9 +15172,7 @@ /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) "wgK" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/kutjevo/exterior/scrubland) "wgT" = ( /obj/structure/platform/kutjevo/rock{ @@ -16423,7 +15222,7 @@ "wlg" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "wlq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/engineering_construction, @@ -16431,9 +15230,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "wnk" = ( /obj/structure/largecrate/random/case/small, @@ -16463,9 +15260,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/Northwest_Dorms) "wpq" = ( /obj/structure/blocker/invisible_wall, @@ -16487,34 +15282,26 @@ /area/kutjevo/interior/power) "wqR" = ( /obj/structure/bed/chair, -/turf/open/gm/dirtgrassborder2{ - dir = 4 - }, +/turf/open/gm/dirtgrassborder2/east, /area/kutjevo/exterior/complex_border/med_park) "wrk" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "wrO" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/spring) "wrV" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/spring) "wsf" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/interior/oob) "wsk" = ( /obj/structure/surface/table/almayer, @@ -16530,9 +15317,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, /area/kutjevo/interior/foremans_office) "wtk" = ( /obj/structure/barricade/wooden{ @@ -16566,7 +15351,7 @@ "wvg" = ( /obj/item/stack/sheet/metal, /turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "wvr" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South) @@ -16586,7 +15371,7 @@ "wvX" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "wwc" = ( /obj/structure/prop/wooden_cross{ desc = "A wooden grave marker. The name 'Richard' is carved into the wood."; @@ -16598,7 +15383,7 @@ pixel_y = -2 }, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "wwd" = ( /obj/item/stool, /turf/open/floor/kutjevo/colors/green/tile, @@ -16617,9 +15402,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/runoff_river) "wwQ" = ( /obj/structure/window/framed/kutjevo, @@ -16699,9 +15482,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "wDm" = ( /obj/structure/stairs/perspective/kutjevo{ @@ -16721,9 +15502,7 @@ /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/runoff_river) "wEU" = ( /obj/structure/barricade/wooden{ @@ -16731,14 +15510,11 @@ pixel_y = 13 }, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "wFa" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/kutjevo/interior/complex/med) "wFQ" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -16791,9 +15567,7 @@ /obj/structure/platform/kutjevo/smooth{ dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "wMw" = ( /obj/structure/blocker/invisible_wall, @@ -16823,9 +15597,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) "wOU" = ( /obj/structure/flora/bush/ausbushes/ausbush{ @@ -16898,9 +15670,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) "wWy" = ( -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/complex/med) "wXd" = ( /turf/closed/wall/kutjevo/rock, @@ -16910,7 +15680,7 @@ dir = 1 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "wXy" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/sand/layer2, @@ -16963,9 +15733,7 @@ /area/kutjevo/interior/oob) "xaB" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) "xaI" = ( /obj/structure/surface/table/almayer, @@ -16978,22 +15746,18 @@ pixel_y = 24; start_charge = 0 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "xcG" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "xcI" = ( /obj/structure/barricade/wooden{ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "xdM" = ( /turf/open/floor/kutjevo/plate, @@ -17031,9 +15795,7 @@ dir = 1; pixel_y = 13 }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "xjg" = ( /obj/structure/platform/kutjevo{ @@ -17046,9 +15808,7 @@ /obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/lz_river) "xjY" = ( /turf/open/floor/almayer/research/containment/floor1, @@ -17094,15 +15854,11 @@ /area/kutjevo/exterior/runoff_bridge) "xnk" = ( /obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "xnr" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "xnT" = ( /obj/effect/landmark/monkey_spawn, @@ -17120,9 +15876,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, /area/kutjevo/interior/complex/med) "xoM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -17132,18 +15886,14 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) "xoV" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/runoff_dunes) "xpd" = ( /obj/structure/largecrate/guns/merc, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) "xpk" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/lz_river) "xpz" = ( /obj/structure/bed/chair{ @@ -17197,7 +15947,7 @@ "xrT" = ( /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "xti" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -17213,20 +15963,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med/operating) "xuN" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, +/turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/spring) "xuY" = ( /obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/exterior/runoff_bridge) "xvg" = ( /obj/item/stool{ @@ -17276,9 +16020,7 @@ /area/kutjevo/interior/construction) "xyY" = ( /obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/exterior/runoff_bridge) "xzd" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -17299,7 +16041,7 @@ dir = 4 }, /turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "xBb" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -17312,16 +16054,14 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) "xCc" = ( -/turf/open/gm/dirtgrassborder2{ - icon_state = "wall3" - }, +/turf/open/gm/dirtgrassborder2/wall3, /area/kutjevo/exterior/complex_border/med_park) "xDR" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, /turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "xDY" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/orange, @@ -17337,7 +16077,7 @@ /obj/structure/surface/rack, /obj/item/packageWrap, /turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +/area/kutjevo/exterior/lz_pad) "xGF" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -17412,9 +16152,7 @@ layer = 3.1 }, /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +/turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) "xOU" = ( /obj/structure/sign/safety/hazard{ @@ -17437,9 +16175,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) "xQz" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med/triage) "xQM" = ( /obj/item/tool/minihoe, @@ -17490,9 +16226,7 @@ /obj/structure/surface/rack, /obj/structure/machinery/light, /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "xVt" = ( /obj/structure/platform/kutjevo/smooth, @@ -17510,9 +16244,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) "xVZ" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/west, /area/kutjevo/interior/colony_South/power2) "xWK" = ( /turf/open/auto_turf/sand/layer1, @@ -17543,9 +16275,7 @@ "xYR" = ( /obj/item/stack/sheet/wood, /obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) "xZd" = ( /obj/structure/bed/chair{ @@ -17601,16 +16331,12 @@ /area/kutjevo/exterior/lz_dunes) "yaI" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/botany/east_tech) "ybd" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) "ybh" = ( /obj/structure/filtration/machine_96x96/indestructible{ @@ -17634,25 +16360,19 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "ycN" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany) "ydh" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, +/turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/runoff_river) "yeY" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) "yfc" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_pad) "yfo" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central) @@ -17706,9 +16426,7 @@ icon_state = "tree_2"; pixel_y = 14 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, +/turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/spring) "yir" = ( /turf/open/floor/kutjevo/colors/orange, @@ -17726,9 +16444,7 @@ /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) "yjF" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_bridge) "yjI" = ( /turf/open/floor/kutjevo/tan, @@ -17751,9 +16467,7 @@ /area/kutjevo/interior/complex/med/cells) "ykL" = ( /obj/structure/largecrate/random, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "ykY" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -17780,10 +16494,7 @@ /obj/item/storage/pill_bottle/tramadol/skillless, /obj/structure/platform/kutjevo/smooth, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/kutjevo/interior/complex/med/operating) "ymc" = ( /obj/structure/machinery/shower{ @@ -18510,9 +17221,9 @@ dxF dxF dxF nTw -huR -huR -huR +dmy +dmy +dmy nTw dxF sWF @@ -18677,10 +17388,10 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +dmy +dmy +dmy +jGF sWF sWF nJp @@ -18844,9 +17555,9 @@ dxF dxF dxF dxF -huR -huR -huR +dmy +dmy +dmy oun wwQ oca @@ -19011,9 +17722,9 @@ dxF dxF dxF dxF -huR -huR -huR +dmy +dmy +dmy oun wwQ oFX @@ -19178,9 +17889,9 @@ dxF dxF dxF dxF -huR -huR -huR +dmy +dmy +dmy oun wwQ oFX @@ -19326,13 +18037,13 @@ dxF dxF dxF dxF -ybV -ybV -ybV -ybV -ybV -ybV -ybV +oNE +oNE +oNE +oNE +oNE +oNE +oNE dxF dxF dxF @@ -19345,10 +18056,10 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +dmy +dmy +dmy +jGF sWF bQk opQ @@ -19491,17 +18202,17 @@ dxF dxF dxF wwc -hrz -arM -ybV -mSG -ybV -mSG -mSG -mSG -ybV -ybV -ybV +tHh +tbk +oNE +rmg +oNE +rmg +rmg +rmg +oNE +oNE +oNE dxF dxF dxF @@ -19512,10 +18223,10 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +dmy +dmy +dmy +jGF qzj sOF swq @@ -19650,17 +18361,17 @@ dxF dxF dxF dxF -hrz +tHh dxF dxF dxF dxF -hrz -hrz -hrz -hrz -hrz -arM +tHh +tHh +tHh +tHh +tHh +tbk eiX eiX eiX @@ -19669,7 +18380,7 @@ eiX eiX eiX eiX -ksW +nvi dxF dxF dxF @@ -19679,10 +18390,10 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +dmy +dmy +dmy +jGF qzj qfw rwL @@ -19817,28 +18528,28 @@ dxF mjW yfc tIY -hrz +tHh dxF dxF dxF -hrz +tHh bWA -hrz -hrz -hrz -sVF -iin -iin -hrz -hrz -hrz -hrz -hrz -hrz -hrz -hrz -hrz -hrz +tHh +tHh +tHh +lKk +kWX +kWX +tHh +tHh +tHh +tHh +tHh +tHh +tHh +tHh +tHh +tHh dxF dxF dxF @@ -19846,10 +18557,10 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +dmy +dmy +dmy +jGF wwQ eur opQ @@ -19984,39 +18695,39 @@ dxF eFy dDL dOU -hrz -hrz -hrz -hrz -hrz -hrz -sVF -sVF -sVF -sVF -sVF -iin -iin -hrz -hrz -bNG -hrz -hrz -sVF -sVF -sVF -hrz -hrz +tHh +tHh +tHh +tHh +tHh +tHh +lKk +lKk +lKk +lKk +lKk +kWX +kWX +tHh +tHh +rst +tHh +tHh +lKk +lKk +lKk +tHh +tHh bWA -hrz +tHh dxF dxF dxF dxF -iin -huR -huR -xBm +kWX +dmy +dmy +jGF sWF sWF khW @@ -20151,40 +18862,40 @@ dxF tnI rfz dyW -sVF -sVF -sVF -iin -iin -sVF -sVF -hrz -hrz -hrz -sVF -iin -iin -iin -hrz -hrz -hrz -hrz -sVF -hrz -hrz -hrz -hrz -hrz -hrz -hrz -iin -iin -sVF -sVF -huR -huR -xBm -aUF +lKk +lKk +lKk +kWX +kWX +lKk +lKk +tHh +tHh +tHh +lKk +kWX +kWX +kWX +tHh +tHh +tHh +tHh +lKk +tHh +tHh +tHh +tHh +tHh +tHh +tHh +kWX +kWX +lKk +lKk +dmy +dmy +jGF +bEt sWF sWF sWF @@ -20316,50 +19027,50 @@ dxF dxF dxF dxF -iin -hrz -hrz -hrz -hrz -sVF -hrz -hrz -hrz -iin -hrz -hrz -hrz -hrz -hrz -hrz -hrz -sVF -sVF -sVF -sVF -sVF -sVF -sVF -hrz -hrz -hrz -hrz -hrz -sVF -sVF -sVF -huR -huR -lRy -dht -dht -dht -dht -dht -dht -dht -dht -dht +kWX +tHh +tHh +tHh +tHh +lKk +tHh +tHh +tHh +kWX +tHh +tHh +tHh +tHh +tHh +tHh +tHh +lKk +lKk +lKk +lKk +lKk +lKk +lKk +tHh +tHh +tHh +tHh +tHh +lKk +lKk +lKk +dmy +dmy +dBj +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD rzh dxF dxF @@ -20484,49 +19195,49 @@ dxF dxF dxF dxF -hrz -hrz -iin -sVF +tHh +tHh +kWX +lKk qDH qDH qDH -iin -iin -iin -iin -iin -sVF +kWX +kWX +kWX +kWX +kWX +lKk qDH qDH -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk qDH qDH qDH -sVF -sVF -huR -huR -sVF -sVF -sVF -iin -iin -iin -sVF -sVF -sVF -sVF +lKk +lKk +dmy +dmy +lKk +lKk +lKk +kWX +kWX +kWX +lKk +lKk +lKk +lKk dxF dxF dxF @@ -20651,49 +19362,49 @@ dxF dxF dxF dxF -hrz -iin -iin -sVF -lRy -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -lRy -huR -huR -huR -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF +tHh +kWX +kWX +lKk +dBj +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +dBj +dmy +dmy +dmy +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk dxF dxF dxF @@ -20818,11 +19529,11 @@ dxF dxF dxF dxF -hrz -iin -sVF +tHh +kWX +lKk oJE -xBm +jGF tGE hnq dhL @@ -20847,19 +19558,19 @@ ccs hnq dhL tGE -xBm -huR -huR -huR -sVF -sVF +jGF +dmy +dmy +dmy +lKk +lKk qDH qDH qDH qDH qDH -sVF -sVF +lKk +lKk dxF dxF dxF @@ -20985,11 +19696,11 @@ dxF dxF dxF dxF -iin -sVF -hrz -sVF -xBm +kWX +lKk +tHh +lKk +jGF wvX hzN wqk @@ -21014,17 +19725,17 @@ wqk hzN hzN dpt -xBm -huR -huR -huR -sVF +jGF +dmy +dmy +dmy +lKk oJE -lRy -dht -dht -dht -lRy +dBj +lzD +lzD +lzD +dBj qnd xrT dxF @@ -21151,12 +19862,12 @@ dxF dxF dxF dxF -iin -iin -sVF -hrz -sVF -xBm +kWX +kWX +lKk +tHh +lKk +jGF sUt hzN hzN @@ -21181,19 +19892,19 @@ hzN ppX hzN lNl -xBm -huR -huR -huR -sVF +jGF +dmy +dmy +dmy +lKk oJE -xBm +jGF uTr mfk mfk -xBm +jGF qnd -sVF +lKk dxF dxF dxF @@ -21318,12 +20029,12 @@ dxF dxF dxF dxF -iin -bGg -sVF -hrz +kWX +cpD +lKk +tHh oJE -xBm +jGF saK hzN hzN @@ -21348,20 +20059,20 @@ hzN ppX hzN qTI -xBm -huR -huR -sVF -sVF +jGF +dmy +dmy +lKk +lKk oJE -xBm +jGF rlI pRL vrB -xBm +jGF qnd -sVF -pkP +lKk +wax pkP pkP hrz @@ -21485,12 +20196,12 @@ dxF dxF dxF dxF -iin -sVF -sVF -sVF +kWX +lKk +lKk +lKk oJE -xBm +jGF sLf hzN ppX @@ -21515,20 +20226,20 @@ ppX ppX hzN wXf -xBm -huR -huR -sVF -iin +jGF +dmy +dmy +lKk +kWX oJE -xBm +jGF fmN fmN fmN -xBm +jGF qnd -sVF -mar +lKk +mAb ggC mar hrz @@ -21652,12 +20363,12 @@ dxF dxF dxF dxF -iin -sVF -sVF -sVF +kWX +lKk +lKk +lKk oJE -xBm +jGF wvX hzN ppX @@ -21682,20 +20393,20 @@ hzN eBI hzN dpt -xBm -huR -huR -sVF -iin +jGF +dmy +dmy +lKk +kWX oJE -xBm +jGF wlg vPm vPm -xBm +jGF qnd -sVF -mar +lKk +mAb ggC mar hrz @@ -21819,12 +20530,12 @@ dxF dxF dxF dxF -iin -iin -sVF -hrz +kWX +kWX +lKk +tHh oJE -xBm +jGF sUt hzN ppX @@ -21849,20 +20560,20 @@ hzN hzN hzN lNl -xBm -huR -huR -sVF -sVF +jGF +dmy +dmy +lKk +lKk oJE -xBm +jGF qUC kVA fmN -xBm +jGF qnd -sVF -mar +lKk +mAb ggC mar sVF @@ -21986,12 +20697,12 @@ dxF dxF dxF dxF -hrz -iin -hrz -iin -iin -xBm +tHh +kWX +tHh +kWX +kWX +jGF saK hzN ppX @@ -22016,20 +20727,20 @@ hzN hzN hzN qTI -xBm -huR -huR -sVF -sVF +jGF +dmy +dmy +lKk +lKk oJE -lRy -dht -dht -dht -lRy +dBj +lzD +lzD +lzD +dBj qnd -sVF -mar +lKk +mAb pkP mar iin @@ -22153,12 +20864,12 @@ dxF dxF dxF dxF -hrz -hrz -hrz -hrz +tHh +tHh +tHh +tHh oJE -xBm +jGF mIT hzN ppX @@ -22183,20 +20894,20 @@ ppX ppX hzN wXf -xBm -huR -huR -huR -sVF -sVF +jGF +dmy +dmy +dmy +lKk +lKk rSU rSU rSU rSU rSU -sVF -sVF -mar +lKk +lKk +mAb ggC mar hrz @@ -22320,12 +21031,12 @@ dxF dxF dxF dxF -hrz +tHh mao -hrz -iin +tHh +kWX oJE -xBm +jGF wvX hzN hzN @@ -22350,20 +21061,20 @@ hzN ppX eBI dpt -xBm -huR -huR -huR -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -bGg -mar +jGF +dmy +dmy +dmy +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +cpD +mAb ggC mar hrz @@ -22487,12 +21198,12 @@ dxF dxF dxF dxF -hrz -hrz -hrz -hrz -iin -xBm +tHh +tHh +tHh +tHh +kWX +jGF sUt hzN hzN @@ -22517,20 +21228,20 @@ hzN ppX eBI lNl -xBm -huR -huR -huR -sVF -hrz -sVF -sVF -sVF -sVF -tjJ -sVF -sVF -mar +jGF +dmy +dmy +dmy +lKk +tHh +lKk +lKk +lKk +lKk +izY +lKk +lKk +mAb ggC mar hrz @@ -22654,12 +21365,12 @@ dxF dxF dxF dxF -hrz -hrz -hrz -hrz +tHh +tHh +tHh +tHh oJE -xBm +jGF saK hzN wqk @@ -22684,18 +21395,18 @@ wqk hzN hzN qTI -xBm -huR -huR -huR -lRy -dht -dht -dht -dht -dht -dht -dht +jGF +dmy +dmy +dmy +dBj +lzD +lzD +lzD +lzD +lzD +lzD +lzD hoK hoK hoK @@ -22821,12 +21532,12 @@ dxF dxF dxF dxF -hrz -hrz -hrz -sVF +tHh +tHh +tHh +lKk oJE -xBm +jGF tGE pPz jUK @@ -22851,17 +21562,17 @@ tHI pPz jUK tGE -xBm -huR -huR -huR -xBm -aUF -aUF -aUF -aUF -aUF -aUF +jGF +dmy +dmy +dmy +jGF +bEt +bEt +bEt +bEt +bEt +bEt hoK hoK hbL @@ -22986,44 +21697,44 @@ dxF dxF dxF dxF -dxF -dxF -hrz -hrz -sVF -sVF +dxF +dxF +tHh +tHh +lKk +lKk oJE -lRy -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -lRy -huR -huR -huR +dBj +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +lzD +dBj +dmy +dmy +dmy lxN -aUF +bEt hoK hoK dkW @@ -23155,42 +21866,42 @@ dxF dxF dxF dxF -hrz -iin -sVF -sVF -bGg +tHh +kWX +lKk +lKk +cpD rSU rSU rSU -sVF +lKk rSU rSU -sVF +lKk rSU rSU -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk rSU -sVF -huR -huR -huR -xBm -aUF +lKk +dmy +dmy +dmy +jGF +bEt hoK lOr iNY @@ -23321,43 +22032,43 @@ dxF dxF dxF dxF -iin -iin -iin -iin -sVF -hrz -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -hrz -sVF -sVF -hrz -hrz -hrz -hrz -iin -iin +kWX +kWX +kWX +kWX +lKk +tHh +lKk +lKk +lKk +lKk +lKk +lKk +lKk +lKk +tHh +lKk +lKk +tHh +tHh +tHh +tHh +kWX +kWX oKx oKx -sVF +lKk qDH qDH qDH qDH qDH -sVF -huR -huR -huR -xBm -aUF +lKk +dmy +dmy +dmy +jGF +bEt uAJ iZi nZK @@ -23489,42 +22200,42 @@ dxF dxF dxF dxF -iin -iin -iin -iin -iin -iin -iin -sVF -sVF -sVF -sVF -sVF -dFx -hrz -hrz -hrz -hrz -hrz -sVF -hrz -hrz -hrz -hrz +kWX +kWX +kWX +kWX +kWX +kWX +kWX +lKk +lKk +lKk +lKk +lKk +cLr +tHh +tHh +tHh +tHh +tHh +lKk +tHh +tHh +tHh +tHh oKx -sVF +lKk gTO -dht -dht -dht -lRy +lzD +lzD +lzD +dBj qnd -huR -huR -huR -xBm -aUF +dmy +dmy +dmy +jGF +bEt hEC ipy nZK @@ -23661,37 +22372,37 @@ dxF dxF dxF rzh -dht +lzD bEn bEn -dht -dht -dht +lzD +lzD +lzD xAr -dht +lzD xAr wvg -dht -dht -dht -dht -lRy -hrz -hrz -hrz -hrz +lzD +lzD +lzD +lzD +dBj +tHh +tHh +tHh +tHh eqQ xFN cYb gmA juC -xBm +jGF qnd -huR -huR -huR -xBm -aUF +dmy +dmy +dmy +jGF +bEt uAJ mbc nZK @@ -23840,25 +22551,25 @@ uzp acx jnV jnV -aUF -aUF -xBm -hrz -hrz -hrz -hrz +bEt +bEt +jGF +tHh +tHh +tHh +tHh oJE -xBm +jGF fmN vPm uTr kBm bdd -huR -huR -huR -xBm -gzb +dmy +dmy +dmy +jGF +cou hEC fEu nZK @@ -24008,24 +22719,24 @@ sjE pHR jnV jnV -aUF -xBm -sVF -hrz -hrz -hrz +bEt +jGF +lKk +tHh +tHh +tHh oJE -xBm +jGF kDD vPm vPm rdx bdd -huR -huR -huR -xBm -aUF +dmy +dmy +dmy +jGF +bEt hoK pLN fYE @@ -24176,23 +22887,23 @@ cWc hst jnV jnV -xBm -sVF +jGF +lKk fYF -hrz -hrz +tHh +tHh oJE -xBm +jGF fmN vPm fmN ctA qnd -huR -huR -huR -xBm -aUF +dmy +dmy +dmy +jGF +bEt hoK hoK ybd @@ -24343,23 +23054,23 @@ cWc cWc dfz jnV -xBm -sVF +jGF +lKk fSK -sVF -sVF +lKk +lKk oJE -xBm +jGF fmN vPm bGi -xBm +jGF bdd -huR -huR -huR -xBm -aUF +dmy +dmy +dmy +jGF +bEt hoK hoK nmw @@ -24511,22 +23222,22 @@ cWc kSy pma wEU -sVF +lKk iiy eGL -bGg -sVF -xBm +cpD +lKk +jGF xcG vPm fmN -xBm -iin -huR -huR -huR -xBm -aUF +jGF +kWX +dmy +dmy +dmy +jGF +bEt hoK yhV onC @@ -24678,22 +23389,22 @@ cWc jiX fto pUB -sVF +lKk arh -sVF -sVF -iin -xBm +lKk +lKk +kWX +jGF dpH aIy vPm -xBm -iin -huR -huR -huR -xBm -aUF +jGF +kWX +dmy +dmy +dmy +jGF +bEt uAJ uEr nZK @@ -24844,23 +23555,23 @@ lSc lSc fto jnV -xBm -sVF -sVF -sVF -sVF -iin -xBm +jGF +lKk +lKk +lKk +lKk +kWX +jGF eUJ aIy juC -xBm +jGF qnd -sVF -huR -kZV -xBm -aUF +lKk +dmy +sWR +jGF +bEt uAJ jOA nZK @@ -25011,23 +23722,23 @@ iXh ntz jnV jnV -xBm -sVF -sVF -sVF -sVF +jGF +lKk +lKk +lKk +lKk oJE -xBm +jGF fmN dpH juC -xBm +jGF qnd -iin -huR -huR -xBm -gzb +kWX +dmy +dmy +jGF +cou hEC fKD nZK @@ -25182,19 +23893,19 @@ rzh dxF dxF iCQ -sVF -sVF -lRy -dht -dht -dht -lRy +lKk +lKk +dBj +lzD +lzD +lzD +dBj qnd -iin -huR -huR -xBm -aUF +kWX +dmy +dmy +jGF +bEt uAJ iZi nZK @@ -25350,18 +24061,18 @@ dxF dxF dxF dxF -sVF +lKk rSU rSU rSU rSU rSU -sVF -sVF -huR -huR -xBm -aUF +lKk +lKk +dmy +dmy +jGF +bEt hoK xca pyZ diff --git a/maps/map_files/Kutjevo/sprinkles/35.communications.dmm b/maps/map_files/Kutjevo/sprinkles/35.communications.dmm index d172399ca564..c392400aa31d 100644 --- a/maps/map_files/Kutjevo/sprinkles/35.communications.dmm +++ b/maps/map_files/Kutjevo/sprinkles/35.communications.dmm @@ -5,9 +5,7 @@ /turf/open/auto_turf/sand/layer0, /area/template_noop) "cm" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/template_noop) "cL" = ( /obj/item/clothing/suit/storage/hazardvest/yellow, @@ -17,9 +15,7 @@ /turf/open/floor/kutjevo/grey/plate, /area/template_noop) "di" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "dl" = ( /obj/structure/girder/displaced, @@ -104,9 +100,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "qM" = ( /obj/structure/machinery/light, @@ -134,9 +128,7 @@ /area/template_noop) "sQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "uS" = ( /obj/structure/surface/table/almayer, @@ -222,9 +214,7 @@ /area/template_noop) "Af" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Ca" = ( /obj/structure/window/framed/kutjevo, @@ -235,18 +225,14 @@ /area/template_noop) "Ci" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "DY" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; req_one_access = null }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "EK" = ( /obj/structure/window/framed/kutjevo, @@ -266,16 +252,12 @@ /area/template_noop) "Jg" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Jz" = ( /obj/item/stack/sheet/metal, /obj/item/stack/rods, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Ks" = ( /obj/effect/decal/cleanable/blood/drip, @@ -378,9 +360,7 @@ /turf/open/floor/kutjevo/tan/grey_edge, /area/template_noop) "Um" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Vc" = ( /obj/effect/decal/cleanable/dirt, @@ -393,9 +373,7 @@ /area/template_noop) "Xq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/template_noop) "XS" = ( /obj/structure/fence{ @@ -405,9 +383,7 @@ /area/template_noop) "Yo" = ( /obj/item/clothing/head/hardhat/orange, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "YG" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -419,9 +395,7 @@ dir = 1; req_one_access = null }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/template_noop) "Zf" = ( /obj/structure/window/framed/kutjevo, diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 94c7420a6da4..f0860d688645 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -5,9 +5,7 @@ network = list("interrogation") }, /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "aaF" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -16,10 +14,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "aaI" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "aaX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30,9 +25,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/tank/emergency_oxygen/double, /obj/item/tank/emergency_oxygen/double, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "abo" = ( /turf/closed/wall/strata_outpost, @@ -46,9 +39,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "abS" = ( /obj/effect/acid_hole, @@ -62,17 +53,12 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) "abX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "ack" = ( /obj/structure/sink{ @@ -80,10 +66,7 @@ pixel_x = -11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/executive) "acn" = ( /obj/structure/largecrate/random/secure, @@ -92,9 +75,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "acp" = ( /obj/effect/decal/cleanable/dirt, @@ -104,9 +85,7 @@ /obj/structure/largecrate/random{ layer = 2.9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "acD" = ( /obj/effect/decal/cleanable/dirt, @@ -149,9 +128,7 @@ "adG" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "adI" = ( /obj/structure/ladder{ @@ -183,9 +160,7 @@ /area/lv522/indoors/b_block/bridge) "aem" = ( /obj/structure/barricade/plasteel/metal, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "aeD" = ( /obj/structure/largecrate/random, @@ -196,18 +171,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "afn" = ( /obj/item/reagent_container/spray/cleaner/drone{ pixel_x = -3; pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "afp" = ( /obj/structure/platform, @@ -231,9 +202,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "afI" = ( /obj/item/reagent_container/food/drinks/cans/beer{ @@ -257,9 +226,7 @@ /area/lv522/oob) "afX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "agu" = ( /obj/effect/decal/warning_stripes{ @@ -270,28 +237,19 @@ /area/lv522/outdoors/colony_streets/south_west_street) "agM" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "ahs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "ahH" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/east) "ahJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "ahP" = ( /turf/open/asphalt/cement, @@ -314,9 +272,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aij" = ( /obj/structure/stairs/perspective{ @@ -327,14 +283,8 @@ /area/lv522/outdoors/colony_streets/north_east_street) "aio" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) -"ait" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "aiw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -358,10 +308,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/north_command_centre) "ajM" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -374,10 +321,7 @@ /area/lv522/oob) "ajY" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "akh" = ( /obj/structure/foamed_metal, @@ -388,9 +332,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "akl" = ( /obj/structure/barricade/wooden{ @@ -400,9 +342,7 @@ /area/lv522/oob) "akn" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "akp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -413,9 +353,7 @@ /area/lv522/oob) "akP" = ( /obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "akV" = ( /obj/structure/prop/invuln/ice_prefab, @@ -431,9 +369,7 @@ /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/oob) "alJ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/oob) "ama" = ( /obj/effect/decal/cleanable/dirt, @@ -450,9 +386,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "amC" = ( /obj/structure/bed/roller, @@ -461,10 +395,7 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "amP" = ( /obj/structure/machinery/light{ @@ -489,15 +420,10 @@ /area/lv522/indoors/c_block/cargo) "ana" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/east) "anb" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/lv522/atmos/way_in_command_centre) "ann" = ( /obj/structure/barricade/wooden{ @@ -508,9 +434,7 @@ "ans" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/chef_recipes, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "anv" = ( /obj/structure/surface/table/reinforced/prison, @@ -526,10 +450,7 @@ "anw" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "anG" = ( /obj/effect/decal/cleanable/dirt, @@ -537,9 +458,7 @@ /area/lv522/indoors/lone_buildings/outdoor_bot) "anH" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "anM" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ @@ -556,9 +475,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "aoi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -572,31 +489,20 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "aox" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "aoH" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "apc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "apd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/sewer) "ape" = ( /obj/structure/bed/chair{ @@ -608,10 +514,7 @@ "apt" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "apC" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -625,16 +528,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "aqo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "aqH" = ( /obj/structure/prop/vehicles/crawler{ @@ -645,9 +544,7 @@ /area/lv522/indoors/c_block/garage) "aqT" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "arh" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -655,9 +552,7 @@ pixel_x = -12; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/oob) "arq" = ( /obj/structure/surface/table/reinforced/prison, @@ -666,26 +561,19 @@ /area/lv522/indoors/c_block/garage) "art" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "arN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, /obj/item/clothing/head/welding, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "arP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "arV" = ( /obj/structure/surface/table/almayer, @@ -710,9 +598,7 @@ /area/lv522/indoors/a_block/kitchen) "asH" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "asI" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -730,9 +616,7 @@ "asZ" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "att" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ @@ -741,18 +625,13 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "atz" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "atL" = ( /obj/structure/closet/crate, @@ -762,9 +641,7 @@ }, /obj/item/tool/pickaxe/silver, /obj/item/tool/pickaxe/silver, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "atO" = ( /obj/structure/prop/vehicles/crawler{ @@ -775,18 +652,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "atV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "aue" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -799,12 +672,9 @@ }, /obj/item/stack/sheet/metal, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "aut" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/north_command_centre) "auG" = ( /turf/open/auto_turf/shale/layer2, @@ -815,16 +685,12 @@ dir = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "avp" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "awj" = ( /obj/item/stack/rods, @@ -847,9 +713,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "axC" = ( /obj/structure/stairs/perspective{ @@ -857,9 +721,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "axD" = ( /obj/effect/decal/cleanable/blood/drip, @@ -875,23 +737,17 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "ayn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "ayX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "aza" = ( /obj/structure/stairs/perspective{ @@ -919,19 +775,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/corpo/glass) "azK" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "aAb" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor) "aAI" = ( /obj/structure/window/framed/strata/reinforced, @@ -945,9 +796,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "aAW" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aBm" = ( /obj/effect/decal/cleanable/dirt, @@ -955,10 +804,7 @@ icon_state = "lattice9"; pixel_x = -5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/hallway) "aBY" = ( /obj/vehicle/train/cargo/trolley, @@ -966,22 +812,14 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "aCJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/filt) "aCQ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "aCR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "aCS" = ( /obj/structure/surface/rack, @@ -992,15 +830,11 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "aDf" = ( /obj/structure/ore_box, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "aDh" = ( /obj/structure/platform{ @@ -1011,9 +845,7 @@ "aDj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "aDs" = ( /obj/item/explosive/mine/active{ @@ -1029,18 +861,14 @@ /area/shuttle/drop2/lv522) "aDS" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "aDZ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/oob) "aEF" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -1052,9 +880,7 @@ /area/lv522/indoors/c_block/mining) "aEL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "aEM" = ( /obj/structure/machinery/atm{ @@ -1070,19 +896,14 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "aER" = ( /obj/structure/barricade/wooden{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "aFf" = ( /obj/structure/window/framed/strata/reinforced, @@ -1090,18 +911,13 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "aFA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "aFN" = ( /turf/open/floor/prison, @@ -1113,17 +929,13 @@ /obj/item/toy/beach_ball/holoball{ pixel_y = -3 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "aGg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "aGy" = ( /obj/structure/surface/table/almayer, @@ -1131,9 +943,7 @@ dir = 8; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "aGE" = ( /obj/structure/closet/crate/trashcart, @@ -1146,9 +956,7 @@ "aGI" = ( /obj/structure/largecrate/random/case/double, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "aGQ" = ( /obj/effect/decal/cleanable/dirt, @@ -1179,10 +987,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "aIf" = ( /obj/structure/machinery/light{ @@ -1208,17 +1013,13 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aIM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) "aIY" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -1226,10 +1027,7 @@ pixel_x = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/hallway) "aJg" = ( /obj/structure/fence{ @@ -1242,10 +1040,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/north_east_street) "aJr" = ( /obj/effect/decal/cleanable/dirt, @@ -1253,30 +1048,21 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "aJS" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "aJT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "aKf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "aKn" = ( /obj/item/clothing/mask/facehugger{ @@ -1286,41 +1072,29 @@ name = "????"; stat = 2 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "aKK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "aKO" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "aKQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/cargo_intake) "aLf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "aLy" = ( /obj/structure/machinery/light{ @@ -1329,10 +1103,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "aLJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -1346,9 +1117,7 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aNn" = ( /obj/structure/transmitter/colony_net{ @@ -1357,10 +1126,7 @@ phone_id = "Colony Corporate"; pixel_y = 26 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "aNr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1377,16 +1143,10 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "aNP" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southeast, /area/lv522/indoors/a_block/medical) "aOi" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -1398,19 +1158,14 @@ "aOP" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "aOV" = ( /obj/structure/barricade/deployable{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "aPe" = ( /obj/effect/decal/warning_stripes{ @@ -1420,10 +1175,7 @@ /area/lv522/outdoors/colony_streets/south_street) "aPu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "aPN" = ( /obj/structure/surface/table/almayer, @@ -1439,56 +1191,39 @@ /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "aQf" = ( /obj/structure/surface/table/almayer, /obj/item/map/lv522_map, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "aQs" = ( /obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "aQH" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel/far) "aQU" = ( /obj/structure/machinery/computer/cameras{ dir = 4; network = null; pixel_x = -16 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "aRd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "aRi" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "aRB" = ( /obj/structure/platform{ @@ -1496,7 +1231,7 @@ }, /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "aRH" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1509,9 +1244,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "aRN" = ( /obj/structure/largecrate/random/barrel, @@ -1524,10 +1257,7 @@ /area/lv522/indoors/a_block/dorms) "aSR" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/outdoors/colony_streets/north_east_street) "aSZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -1538,10 +1268,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "aTj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1569,9 +1296,7 @@ /obj/structure/prop/dam/truck/cargo{ layer = 3.1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "aTP" = ( /obj/structure/cargo_container/watatsumi/right, @@ -1581,17 +1306,13 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) "aTS" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aUb" = ( /obj/structure/surface/table/almayer, @@ -1603,16 +1324,12 @@ pixel_x = 6; pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "aUL" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "aUN" = ( /obj/item/stack/sheet/wood/large_stack, @@ -1620,9 +1337,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "aVa" = ( /obj/structure/platform{ @@ -1643,15 +1358,11 @@ "aVo" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "aVs" = ( /obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "aVt" = ( /obj/item/pamphlet/skill/powerloader, @@ -1659,9 +1370,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "aVA" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -1672,10 +1381,7 @@ "aVD" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "aVF" = ( /obj/structure/surface/table/almayer, @@ -1687,9 +1393,7 @@ pixel_x = 2; pixel_y = 7 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "aVX" = ( /obj/structure/ore_box, @@ -1702,9 +1406,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) "aWl" = ( /obj/structure/barricade/wooden, @@ -1715,68 +1417,45 @@ /obj/item/stack/rods{ pixel_y = 14 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "aWu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/north) "aWw" = ( /obj/structure/sink{ pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "aWz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/north) "aWB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "aWJ" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/north) "aWT" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "aWX" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "aXa" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/north) "aXx" = ( /obj/item/weapon/twohanded/folded_metal_chair, @@ -1786,9 +1465,7 @@ "aXB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "aXR" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -1822,9 +1499,7 @@ id = "East_Lock"; name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "aYF" = ( /obj/structure/desertdam/decals/road_edge{ @@ -1855,10 +1530,7 @@ pixel_x = 8; pixel_y = 5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "aYO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1871,9 +1543,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "aZj" = ( /obj/structure/plasticflaps, @@ -1899,33 +1569,23 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "bag" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "ban" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "baG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) "baN" = ( /obj/structure/surface/rack, @@ -1949,10 +1609,7 @@ pixel_y = 5 }, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "bby" = ( /obj/item/trash/barcardine, @@ -1960,9 +1617,7 @@ pixel_x = -7; pixel_y = 16 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) "bbz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1972,17 +1627,13 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "bbL" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "bce" = ( /obj/item/trash/hotdog, @@ -1998,9 +1649,7 @@ pixel_x = -11; pixel_y = 12 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) "bcf" = ( /obj/effect/spawner/gibspawner/xeno, @@ -2014,28 +1663,17 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "bco" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/west_reactor) "bcP" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/west_reactor) "bcU" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/n_rockies) "bdi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/t_comm) "bdj" = ( /obj/structure/bed/chair/comfy, @@ -2043,16 +1681,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "bdv" = ( /obj/structure/largecrate/random/case, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bdH" = ( /obj/structure/bed/chair{ @@ -2066,14 +1700,10 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) "bdX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/nw_rockies) "bdY" = ( /obj/effect/decal/warning_stripes{ @@ -2081,18 +1711,13 @@ pixel_x = 1 }, /obj/item/weapon/gun/launcher/grenade/m81/m79, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "beb" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/north) "beh" = ( /obj/effect/decal/warning_stripes{ @@ -2107,9 +1732,7 @@ /area/lv522/outdoors/colony_streets/south_street) "bel" = ( /obj/structure/machinery/computer/crew/colony, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ben" = ( /obj/item/prop{ @@ -2129,15 +1752,11 @@ pixel_y = 13 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "bet" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "bex" = ( /obj/effect/decal/cleanable/blood, @@ -2154,28 +1773,20 @@ /area/lv522/indoors/a_block/security) "bfn" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/north) "bgc" = ( /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) "bgg" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/north) "bgJ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "bgN" = ( /obj/structure/surface/table/reinforced/prison, @@ -2189,46 +1800,32 @@ }, /obj/item/newspaper, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bgV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/n_rockies) "bha" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "bhd" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/north) "bhh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "bhD" = ( /obj/structure/platform_decoration{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bhL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/north) "bia" = ( /obj/structure/largecrate/supply/supplies/tables_racks, @@ -2251,41 +1848,29 @@ "biY" = ( /obj/structure/girder, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "biZ" = ( /obj/structure/barricade/sandbags{ dir = 8 }, /obj/item/trash/uscm_mre, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "bjd" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/sewer) "bjC" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "bjF" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "bjT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/n_rockies) "bjX" = ( /obj/effect/decal/warning_stripes{ @@ -2305,23 +1890,15 @@ }, /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bkf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 9; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/northwest, /area/lv522/indoors/a_block/medical/glass) "bkh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southwest, /area/lv522/indoors/a_block/medical) "bkl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2348,9 +1925,7 @@ /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) "bkQ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "bkY" = ( /obj/structure/surface/rack, @@ -2365,10 +1940,7 @@ pixel_y = -3 }, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "blW" = ( /obj/structure/machinery/light/double, @@ -2377,14 +1949,10 @@ layer = 3 }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/lv522/indoors/c_block/mining) "bmg" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/east_central_street) "bmj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2397,9 +1965,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "bnf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bny" = ( /obj/effect/decal/cleanable/dirt, @@ -2409,9 +1975,7 @@ phone_id = "Reactor Garage"; pixel_y = 26 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "bnz" = ( /obj/structure/surface/table/almayer, @@ -2424,9 +1988,7 @@ }, /obj/effect/decal/cleanable/cobweb2, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "bnH" = ( /obj/structure/machinery/light{ @@ -2434,10 +1996,7 @@ }, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "bnP" = ( /obj/structure/pipes/vents/pump, @@ -2465,9 +2024,7 @@ /area/lv522/indoors/c_block/mining) "bpD" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "bpN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2488,9 +2045,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "bqE" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "brk" = ( /obj/structure/cargo_container/grant/rightmid, @@ -2501,15 +2056,11 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "bsx" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "bsz" = ( /obj/effect/decal/warning_stripes{ @@ -2523,17 +2074,12 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) "btb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "btP" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "buD" = ( /obj/structure/barricade/deployable, @@ -2544,9 +2090,7 @@ dir = 1; flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/garden_bridge) "bvI" = ( /obj/structure/surface/table/almayer, @@ -2554,18 +2098,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "bvK" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; name = "\improper Chunk 'N Dump" }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "bvP" = ( /obj/structure/machinery/light{ @@ -2580,9 +2120,7 @@ /obj/item/reagent_container/food/condiment/peppermill{ pixel_x = 9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "bwd" = ( /obj/item/toy/beach_ball/holoball{ @@ -2605,9 +2143,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "bwF" = ( /obj/item/stack/rods, @@ -2624,26 +2160,18 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "bwU" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bxn" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "bxr" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -2656,41 +2184,29 @@ /area/lv522/indoors/c_block/mining) "bxz" = ( /obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "bxU" = ( /obj/item/clothing/head/hardhat, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "bye" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "byu" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "byJ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/circuitboard/machine/ghettosmes, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "byR" = ( /obj/structure/closet/crate, @@ -2698,17 +2214,12 @@ /obj/item/ore/silver, /obj/item/ore/silver, /obj/item/ore/silver, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "bzv" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/reactor_garage) "bzC" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -2720,9 +2231,7 @@ /obj/item/prop/colony/usedbandage{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) "bzL" = ( /obj/structure/machinery/camera/autoname, @@ -2742,10 +2251,7 @@ pixel_x = 7; pixel_y = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "bAe" = ( /obj/structure/window/framed/strata/reinforced, @@ -2759,9 +2265,7 @@ /obj/item/prop/colony/usedbandage{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/oob) "bBe" = ( /obj/structure/machinery/light{ @@ -2769,9 +2273,7 @@ }, /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "bBt" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2801,9 +2303,7 @@ pixel_x = -16; pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) "bBI" = ( /obj/item/stack/tile/plasteel{ @@ -2814,9 +2314,7 @@ /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) "bBJ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) "bBW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2825,25 +2323,18 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "bCd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "bCh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "bCl" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -2856,9 +2347,7 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) "bCy" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_street) "bCX" = ( /obj/effect/decal/cleanable/dirt, @@ -2866,24 +2355,17 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "bDk" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "bDn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "bDr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2900,9 +2382,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/north) "bDI" = ( /obj/structure/machinery/light{ @@ -2910,26 +2390,18 @@ }, /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "bDR" = ( /obj/item/explosive/grenade/high_explosive, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "bDS" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/north) "bEk" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "bFn" = ( /obj/item/tool/wet_sign{ @@ -2944,10 +2416,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "bGL" = ( /obj/structure/machinery/light{ @@ -2958,9 +2427,7 @@ }, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "bGN" = ( /obj/structure/surface/table/almayer, @@ -2972,9 +2439,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "bGT" = ( /obj/effect/decal/cleanable/blood/drip, @@ -2997,14 +2462,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "bHg" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) "bHk" = ( /obj/structure/barricade/sandbags, @@ -3033,10 +2494,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "bIe" = ( /obj/item/stack/sheet/metal, @@ -3049,9 +2507,7 @@ pixel_y = 7 }, /obj/item/tool/pen/red/clicky, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "bIr" = ( /turf/open/floor/corsat, @@ -3077,30 +2533,21 @@ /obj/item/trash/plate{ pixel_x = 6 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "bIJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/atmos/cargo_intake) "bIQ" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bIY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/west_reactor) "bJa" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/corpo/glass) "bJp" = ( /obj/item/storage/backpack/marine/satchel{ @@ -3118,25 +2565,19 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "bJy" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "bJE" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel"; pixel_y = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bJG" = ( /obj/effect/decal/cleanable/dirt, @@ -3145,10 +2586,7 @@ dir = 8; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "bJN" = ( /obj/item/stack/folding_barricade, @@ -3158,9 +2596,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "bJZ" = ( /obj/structure/barricade/wooden{ @@ -3175,33 +2611,24 @@ pixel_y = 11 }, /obj/item/clothing/head/hardhat/white, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bKj" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/small_stack, /obj/item/ore/uranium, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "bKk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/cargo_intake) "bKn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; id = "Reactor_garage_1" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "bKq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3214,9 +2641,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "bLh" = ( /obj/structure/surface/table/almayer, @@ -3224,9 +2649,7 @@ pixel_x = 1; pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bLk" = ( /obj/structure/surface/table/almayer, @@ -3237,24 +2660,19 @@ pixel_x = -3; pixel_y = 3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bLA" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "bLI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "bLV" = ( /obj/structure/barricade/wooden{ @@ -3265,15 +2683,11 @@ pixel_y = 13 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "bMa" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "bMB" = ( /obj/effect/decal/warning_stripes{ @@ -3312,24 +2726,18 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "bNy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Corporate Office Airlock"; req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "bNA" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "bNE" = ( /obj/item/tank/oxygen{ @@ -3356,25 +2764,18 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) "bNT" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "bOv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "bOE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3385,9 +2786,7 @@ "bOM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "bOX" = ( /obj/effect/decal/cleanable/dirt, @@ -3404,7 +2803,7 @@ /area/lv522/outdoors/colony_streets/north_street) "bPJ" = ( /turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "bPQ" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "Two original, crisp, orange, tickets."; @@ -3428,16 +2827,11 @@ pixel_x = 8; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "bQl" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) "bQq" = ( /obj/structure/cargo_container/grant/rightmid, @@ -3446,15 +2840,12 @@ "bQA" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "bQC" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "bQG" = ( /obj/effect/decal/warning_stripes{ @@ -3471,20 +2862,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "bRv" = ( /obj/item/trash/uscm_mre, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "bRN" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/north_command_centre) "bRP" = ( /obj/structure/bed/chair/comfy{ @@ -3506,18 +2891,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "bSD" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "bSI" = ( /obj/structure/barricade/wooden{ @@ -3526,16 +2907,11 @@ /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "bSM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/west_reactor) "bSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3569,10 +2945,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "bTT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3592,9 +2965,7 @@ pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "bUy" = ( /obj/structure/cargo_container/wy/left, @@ -3609,9 +2980,7 @@ dir = 5; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) "bUN" = ( /obj/effect/decal/cleanable/dirt, @@ -3622,10 +2991,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "bUV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3648,15 +3014,11 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bVF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "bVG" = ( /obj/structure/bed/bedroll{ @@ -3668,9 +3030,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "bWd" = ( /obj/structure/flora/jungle/planttop1, @@ -3680,17 +3040,12 @@ "bWm" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "bWq" = ( /obj/item/trash/barcardine, /obj/item/tool/weldingtool, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) "bWt" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -3711,24 +3066,17 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/reactor_garage) "bWX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "bXl" = ( /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "bXo" = ( /obj/structure/surface/table/almayer, @@ -3741,21 +3089,15 @@ pixel_x = -9; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "bXq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "bXA" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "bXO" = ( /obj/structure/bed/stool, @@ -3777,16 +3119,11 @@ /area/lv522/indoors/c_block/mining) "bYd" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "bYx" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "bYy" = ( /obj/item/paper, @@ -3836,9 +3173,7 @@ /area/lv522/indoors/lone_buildings/storage_blocks) "bZe" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/north) "bZB" = ( /obj/structure/girder/displaced, @@ -3853,9 +3188,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "bZK" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -3869,17 +3202,12 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "bZX" = ( /obj/structure/barricade/deployable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "cac" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -3893,10 +3221,7 @@ pixel_x = 12; pixel_y = -4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/north) "caf" = ( /obj/structure/surface/table/almayer, @@ -3907,19 +3232,14 @@ pixel_x = 2; pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cay" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "caE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3932,9 +3252,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "caP" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -3948,9 +3266,7 @@ pixel_x = 6; pixel_y = 19 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "caV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -3960,27 +3276,21 @@ /area/lv522/atmos/sewer) "cbp" = ( /obj/structure/machinery/squeezer, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "cbB" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 10; pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "cbR" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "cbW" = ( /obj/structure/machinery/light, @@ -3997,9 +3307,7 @@ icon_state = "flammable_pipe_3" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "cce" = ( /obj/structure/surface/table/almayer, @@ -4011,10 +3319,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "cct" = ( /obj/structure/bed/chair/wood/normal, @@ -4023,10 +3328,7 @@ /area/lv522/indoors/c_block/casino) "ccu" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor) "ccN" = ( /obj/item/reagent_container/glass/bucket, @@ -4053,9 +3355,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "cem" = ( /obj/structure/bed/chair/comfy{ @@ -4085,27 +3385,20 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "cfg" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; layer = 3.1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "cfv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "cfz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -4115,9 +3408,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "cfT" = ( /obj/effect/decal/warning_stripes{ @@ -4138,10 +3429,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "chm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -4149,9 +3437,7 @@ /area/lv522/atmos/west_reactor) "cho" = ( /obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "chR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4166,21 +3452,14 @@ icon_state = "xgib3" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "cia" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "cil" = ( /obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "cim" = ( /obj/structure/pipes/vents/pump, @@ -4196,9 +3475,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "ciw" = ( /obj/structure/stairs/perspective{ @@ -4209,24 +3486,18 @@ /area/lv522/outdoors/n_rockies) "ciA" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_east_street) "ciF" = ( /obj/item/reagent_container/glass/bucket/janibucket{ pixel_x = -6; pixel_y = 15 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "ciL" = ( /obj/item/tool/pen/clicky, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "ciS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4251,9 +3522,7 @@ dir = 1; name = "\improper A-Block Corporate Office Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/corpo) "cjE" = ( /obj/effect/decal/warning_stripes{ @@ -4276,17 +3545,13 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "ckZ" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "clf" = ( /obj/effect/landmark/xeno_spawn, @@ -4297,19 +3562,13 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "clT" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "clY" = ( /turf/open/auto_turf/shale/layer1, @@ -4318,9 +3577,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "cmB" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4336,9 +3593,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "cmF" = ( /obj/structure/prop/vehicles/crawler{ @@ -4357,49 +3612,35 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cnA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "cnN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "col" = ( /obj/structure/machinery/suit_storage_unit{ pixel_x = -2 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "con" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_east_street) "coR" = ( /obj/structure/ore_box, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "cpk" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_east_street) "cpn" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -4408,9 +3649,7 @@ unacidable = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/oob) "cpx" = ( /obj/structure/platform_decoration{ @@ -4433,10 +3672,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "cpJ" = ( /obj/structure/barricade/deployable{ @@ -4451,19 +3687,8 @@ "cpO" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) -"cpU" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) "cpX" = ( /obj/item/toy/beach_ball/holoball, /obj/item/shard{ @@ -4477,9 +3702,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "cqb" = ( /obj/structure/stairs/perspective{ @@ -4501,16 +3724,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "cqr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/north) "cqs" = ( /obj/structure/machinery/light{ @@ -4523,32 +3741,23 @@ /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/central_streets) "cqH" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "cqP" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/north) "crm" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/flight_recorder{ pixel_x = 9 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/north) "crH" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "crM" = ( /obj/structure/surface/rack, @@ -4573,43 +3782,32 @@ "crX" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "csv" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "csy" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) "csC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Garage Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) "csK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/north_command_centre) "csS" = ( /obj/effect/spawner/gibspawner/xeno, @@ -4617,9 +3815,7 @@ icon_state = "xgib3" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "csU" = ( /obj/effect/decal/warning_stripes{ @@ -4633,18 +3829,14 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "ctu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Casino Airlock"; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "ctE" = ( /obj/structure/foamed_metal, @@ -4652,10 +3844,7 @@ /area/lv522/oob) "cuk" = ( /obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "cuu" = ( /obj/structure/machinery/light{ @@ -4664,9 +3853,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "cuF" = ( /obj/item/tool/warning_cone{ @@ -4676,16 +3863,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "cuY" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "cve" = ( /obj/structure/bed/chair/comfy{ @@ -4701,23 +3883,17 @@ pixel_y = 7 }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "cwe" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "cwq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "cwr" = ( /obj/structure/machinery/deployable/barrier, @@ -4725,9 +3901,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "cwE" = ( /obj/structure/largecrate/random/secure, @@ -4759,9 +3933,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "cxo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4774,9 +3946,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "cxv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_west_street) "cxC" = ( /obj/structure/surface/table/almayer, @@ -4784,51 +3954,34 @@ dir = 4; pixel_x = -3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "cxE" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "cxK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "cxT" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "cyl" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "cys" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) "cyt" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "cyu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -4836,38 +3989,28 @@ }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "cyv" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "cyH" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "cyO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "cyV" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "czd" = ( /obj/effect/decal/cleanable/vomit{ @@ -4883,9 +4026,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "czC" = ( /turf/closed/wall/strata_outpost, @@ -4893,7 +4034,7 @@ "czE" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "czG" = ( /obj/structure/sign/safety/radio_rad{ pixel_y = 26 @@ -4917,10 +4058,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "czW" = ( /obj/structure/barricade/wooden{ @@ -4932,9 +4070,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "cAp" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor) "cAx" = ( /obj/structure/filingcabinet{ @@ -4948,62 +4084,42 @@ pixel_y = 20 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cAy" = ( /obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "cAW" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "cBi" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/north_command_centre) "cBs" = ( /obj/item/tool/extinguisher, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "cBU" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_covered_bed" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "cBV" = ( /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "cCt" = ( /obj/item/prop/alien/hugger, /obj/item/clothing/head/helmet/riot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen) "cCC" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "cCH" = ( /obj/effect/decal/cleanable/generic, @@ -5011,16 +4127,11 @@ /area/lv522/outdoors/colony_streets/north_east_street) "cCK" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "cCL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "cCN" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5029,15 +4140,10 @@ /area/lv522/indoors/c_block/cargo) "cCQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "cDh" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/north) "cDi" = ( /obj/structure/platform_decoration{ @@ -5050,23 +4156,16 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) "cDo" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/north) "cDp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_east_street) "cDx" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "cDH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5090,9 +4189,7 @@ "cEw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/north) "cEx" = ( /obj/structure/surface/table/almayer, @@ -5100,19 +4197,14 @@ pixel_x = -7; pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/north) "cEM" = ( /obj/item/tool/warning_cone{ pixel_x = -10; pixel_y = 3 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/north) "cEN" = ( /obj/structure/bed/bedroll{ @@ -5126,16 +4218,11 @@ /area/lv522/indoors/a_block/admin) "cFv" = ( /obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "cFP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/north) "cFR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -5145,16 +4232,10 @@ /area/lv522/atmos/east_reactor) "cFW" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "cGd" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/east) "cGw" = ( /obj/structure/machinery/light{ @@ -5162,20 +4243,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "cGG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cGY" = ( /obj/item/tool/wrench, @@ -5189,10 +4264,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "cHg" = ( /obj/structure/machinery/deployable/barrier, @@ -5209,15 +4281,11 @@ dir = 1; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "cHw" = ( /obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "cHy" = ( /turf/closed/wall/strata_outpost/reinforced, @@ -5232,25 +4300,12 @@ pixel_x = -7; pixel_y = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/dorms) "cHL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) -"cHY" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "cIe" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -5269,25 +4324,17 @@ pixel_y = -2 }, /obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cIm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor/east) "cIo" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper C-Block - Cargo Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "cIr" = ( /obj/structure/bed/chair{ @@ -5297,9 +4344,7 @@ /area/lv522/atmos/east_reactor) "cIs" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "cIA" = ( /obj/structure/surface/table/reinforced/prison, @@ -5341,20 +4386,14 @@ }, /obj/effect/decal/cleanable/cobweb, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "cIV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/east) "cIW" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/east) "cIX" = ( /obj/structure/window/reinforced{ @@ -5365,20 +4404,14 @@ pixel_x = 10; pixel_y = 22 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/oob) "cJh" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/oob) "cJm" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -5388,9 +4421,7 @@ /area/lv522/outdoors/w_rockies) "cJo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "cJy" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -5409,22 +4440,18 @@ }, /obj/item/stack/sheet/wood, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "cJW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/east_central_street) "cKf" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cKi" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -5432,9 +4459,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "cKo" = ( /obj/structure/closet/crate/trashcart, @@ -5496,10 +4521,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "cLb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/east_reactor/east) "cLi" = ( /obj/structure/barricade/deployable{ @@ -5516,14 +4538,10 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/turf/open/floor/wood/wood_broken5, /area/lv522/indoors/b_block/bar) "cLx" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "cLB" = ( /obj/structure/stairs/perspective{ @@ -5538,15 +4556,11 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "cLQ" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "cMc" = ( /obj/item/clothing/head/hardhat, @@ -5559,10 +4573,7 @@ amount = 2 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "cMt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5570,10 +4581,7 @@ }, /obj/effect/landmark/objective_landmark/science, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "cMv" = ( /obj/effect/spawner/gibspawner/xeno, @@ -5582,33 +4590,22 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "cMQ" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/east, /area/lv522/indoors/a_block/medical/glass) "cMW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/reactor_garage) "cNB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/east) "cNO" = ( /obj/structure/machinery/colony_floodlight_switch{ @@ -5617,10 +4614,7 @@ /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "cNQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/filt) "cNU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -5636,25 +4630,18 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "cOJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "cOZ" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "cPg" = ( /obj/structure/surface/table/almayer, @@ -5664,9 +4651,7 @@ pixel_y = 7 }, /obj/item/toy/plush/farwa, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "cPi" = ( /obj/effect/spawner/gibspawner/xeno, @@ -5678,38 +4663,26 @@ /turf/open/floor/corsat, /area/lv522/atmos/filt) "cPy" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/filt) "cPN" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/oob) "cPO" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/oob) "cPU" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/oob) "cPY" = ( /obj/structure/surface/table/almayer, @@ -5718,9 +4691,7 @@ pixel_x = -5; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "cQc" = ( /obj/effect/decal/hefa_cult_decals/d32{ @@ -5736,10 +4707,7 @@ icon_state = "folder_black"; name = "USCM classified intelligence folder" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/oob) "cQm" = ( /obj/structure/surface/table/reinforced/prison, @@ -5763,10 +4731,7 @@ /area/lv522/indoors/lone_buildings/storage_blocks) "cQS" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "cQW" = ( /obj/structure/machinery/light{ @@ -5778,76 +4743,54 @@ pixel_x = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "cRB" = ( /obj/structure/cargo_container/kelland/right, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "cRD" = ( /obj/structure/blocker/forcefield/vehicles, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "cRG" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/oob) "cRL" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/oob) "cRN" = ( /obj/structure/largecrate, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "cRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/east) "cSb" = ( /obj/structure/largecrate, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "cSf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Cargo Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "cSh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "cSO" = ( /turf/open/floor/plating, @@ -5856,24 +4799,18 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cTf" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "cTz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "cTU" = ( /obj/structure/curtain/red, @@ -5891,9 +4828,7 @@ /area/lv522/indoors/c_block/mining) "cUa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "cUg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -5912,9 +4847,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "cUl" = ( /obj/item/stack/cable_coil/cut, @@ -5927,9 +4860,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "cUA" = ( /obj/effect/decal/cleanable/dirt, @@ -5947,9 +4878,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "cUG" = ( /turf/closed/wall/strata_outpost, @@ -5960,9 +4889,7 @@ pixel_x = -9; pixel_y = 11 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/t_comm) "cVc" = ( /obj/item/stack/tile/plasteel{ @@ -5975,26 +4902,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "cVe" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "cVm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/east_reactor) "cVy" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -6004,9 +4923,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "cWf" = ( /turf/open/auto_turf/sand_white/layer0, @@ -6021,9 +4938,7 @@ pixel_y = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "cWr" = ( /obj/structure/surface/table/almayer, @@ -6034,37 +4949,26 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "cWH" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "cWL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/east) "cWS" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_west_street) "cWT" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "cWY" = ( /obj/structure/filingcabinet/seeds{ @@ -6078,35 +4982,24 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cWZ" = ( /obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "cXf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cXi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/photocopier, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "cXm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges) "cXq" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -6134,9 +5027,7 @@ /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "cYn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -6152,10 +5043,7 @@ /area/lv522/indoors/c_block/mining) "cYF" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "cYG" = ( /obj/structure/machinery/light, @@ -6163,9 +5051,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "cYQ" = ( /obj/structure/window/framed/corsat, @@ -6184,9 +5070,7 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "cZu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -6200,10 +5084,7 @@ pixel_x = 7; pixel_y = 20 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/east) "cZH" = ( /obj/structure/blocker/invisible_wall, @@ -6211,17 +5092,11 @@ /area/lv522/atmos/sewer) "cZM" = ( /obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "cZN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "cZQ" = ( /obj/structure/machinery/photocopier, @@ -6238,16 +5113,11 @@ pixel_x = 7; pixel_y = 20 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/east) "dak" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "daq" = ( /obj/effect/decal/hefa_cult_decals/d32{ @@ -6255,13 +5125,9 @@ icon_state = "2" }, /obj/item/storage/belt/gun/m44/custom, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/oob) "das" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/plating, /area/lv522/landing_zone_1) @@ -6271,32 +5137,22 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "daB" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "daG" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "daL" = ( /obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "dbc" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, @@ -6307,21 +5163,15 @@ pixel_x = 9; pixel_y = 14 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/oob) "dbs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "dbt" = ( /obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "dbF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -6362,9 +5212,7 @@ /area/lv522/indoors/a_block/kitchen) "dbX" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "dcc" = ( /obj/structure/cargo_container/kelland/left, @@ -6374,10 +5222,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "dci" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/oob) "dck" = ( /obj/structure/surface/table/almayer, @@ -6387,9 +5232,7 @@ /obj/item/trash/ceramic_plate{ pixel_y = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dco" = ( /obj/structure/cargo_container/grant/right, @@ -6399,22 +5242,15 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "dcD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/west) "dcF" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "dcJ" = ( /obj/structure/filingcabinet{ @@ -6427,17 +5263,12 @@ pixel_x = 8; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "dcM" = ( /obj/effect/decal/cleanable/blood, /obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dcR" = ( /obj/structure/cargo_container/grant/right, @@ -6454,10 +5285,7 @@ amount = 30 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "ddr" = ( /obj/structure/surface/table/almayer, @@ -6465,15 +5293,10 @@ pixel_x = -4; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ddy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/cargo_intake) "ddC" = ( /obj/structure/filingcabinet{ @@ -6487,10 +5310,7 @@ pixel_y = 19 }, /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "ddK" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -6523,10 +5343,7 @@ /area/lv522/indoors/a_block/executive) "ddN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/west) "ddP" = ( /obj/structure/surface/table/almayer{ @@ -6534,17 +5351,11 @@ flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "ddS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/west) "dek" = ( /obj/effect/decal/warning_stripes{ @@ -6559,10 +5370,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) "del" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/west) "den" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -6586,9 +5394,7 @@ /area/lv522/indoors/c_block/cargo) "dfn" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "dfE" = ( /obj/structure/filingcabinet{ @@ -6615,17 +5421,13 @@ /area/lv522/indoors/c_block/garage) "dfH" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "dfK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "dfV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -6633,59 +5435,42 @@ welded = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "dgb" = ( /obj/structure/cryofeed, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) "dgd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_east_street) "dgj" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "dgq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor/east) "dgI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/west_reactor) "dgJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/cargo_intake) "dgO" = ( /obj/structure/tunnel, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "dgR" = ( /obj/structure/machinery/conveyor{ @@ -6696,10 +5481,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "dgY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "dgZ" = ( /obj/structure/window/framed/strata/reinforced, @@ -6707,14 +5489,10 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "dhH" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/landing_zone_2) "dhJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -6730,18 +5508,14 @@ /area/lv522/landing_zone_1) "dhQ" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "dhW" = ( /obj/item/stack/tile/plasteel, /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "dhX" = ( /obj/item/stack/cable_coil/cut, @@ -6751,45 +5525,33 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "dip" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "dit" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "diT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/east_central_street) "diZ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "djg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) "djm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -6799,9 +5561,7 @@ /area/lv522/indoors/lone_buildings/storage_blocks) "djq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/filt) "djD" = ( /obj/structure/surface/table/almayer, @@ -6814,9 +5574,7 @@ pixel_y = 8 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "djM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -6835,16 +5593,10 @@ /obj/structure/flora/bush/ausbushes/palebush{ pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "dkh" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) "dkq" = ( /obj/structure/bed/chair/comfy{ @@ -6872,20 +5624,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) "dkL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/east) "dkP" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/oob) "dkX" = ( /obj/structure/platform_decoration, @@ -6894,9 +5640,7 @@ "dli" = ( /obj/structure/blocker/forcefield/vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "dlC" = ( /obj/structure/prop/invuln/fire{ @@ -6913,9 +5657,7 @@ pixel_y = 26 }, /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "dmm" = ( /obj/item/weapon/twohanded/folded_metal_chair{ @@ -6930,9 +5672,7 @@ "dmn" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "dmx" = ( /obj/structure/prop/invuln/minecart_tracks, @@ -6940,9 +5680,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "dmE" = ( /obj/structure/surface/table/almayer, @@ -6953,9 +5691,7 @@ name = "synthethic potted plant"; pixel_y = 12 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dmG" = ( /obj/structure/barricade/deployable{ @@ -6978,10 +5714,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "dng" = ( /obj/effect/decal/hefa_cult_decals/d96{ @@ -6994,16 +5727,12 @@ /obj/item/prop/colony/proptag{ desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/oob) "dni" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "dnx" = ( /obj/structure/pipes/vents/pump, @@ -7012,30 +5741,21 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "dnB" = ( /obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "dnD" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "dnG" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/oob) "dnM" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -7046,11 +5766,9 @@ dir = 1 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "dnQ" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/west_reactor) "dnX" = ( /obj/structure/surface/table/almayer, @@ -7065,9 +5783,7 @@ pixel_x = -9; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "doj" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -7080,9 +5796,7 @@ "doq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "dos" = ( /obj/docking_port/stationary/marine_dropship/lz1{ @@ -7102,9 +5816,7 @@ /area/lv522/outdoors/colony_streets/north_street) "doC" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/west_reactor) "doF" = ( /obj/structure/barricade/deployable{ @@ -7113,22 +5825,15 @@ /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "doP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/west_reactor) "dpg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "dpj" = ( /obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "dpk" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -7145,15 +5850,13 @@ name = "????"; stat = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dpS" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "dqr" = ( /obj/item/weapon/gun/rifle/m41a{ @@ -7162,16 +5865,13 @@ /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "dqB" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_east_street) "drd" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "drg" = ( @@ -7190,9 +5890,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "drz" = ( /obj/effect/decal/cleanable/blood, @@ -7204,15 +5902,11 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "drS" = ( /obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "drV" = ( /obj/structure/machinery/light{ @@ -7222,10 +5916,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "dsa" = ( /obj/structure/fence, @@ -7236,17 +5927,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) "dsc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "dsl" = ( /obj/structure/stairs/perspective{ @@ -7261,10 +5946,7 @@ amount = 5 }, /obj/item/stack/sheet/mineral/platinum, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "dsu" = ( /obj/structure/machinery/light, @@ -7304,25 +5986,18 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "dtb" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/rifle/m4ra{ current_mag = null }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "dtr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "dtE" = ( /obj/effect/decal/cleanable/dirt, @@ -7330,15 +6005,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "dtR" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "dtU" = ( /obj/effect/spawner/gibspawner/human, @@ -7347,26 +6018,18 @@ "dua" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "dut" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "duN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/west) "dvn" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -7377,9 +6040,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "dvp" = ( /obj/structure/largecrate/supply, @@ -7407,10 +6068,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "dwG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/west_reactor) "dwI" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -7436,17 +6094,12 @@ /area/lv522/indoors/c_block/t_comm) "dwP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/north_command_centre) "dwX" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "dxc" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -7458,25 +6111,18 @@ /area/lv522/atmos/east_reactor/south) "dxl" = ( /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "dxJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "dxU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "dxY" = ( /obj/structure/machinery/computer/telecomms/server{ @@ -7485,73 +6131,52 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "dya" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "dyl" = ( /obj/structure/largecrate, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "dyH" = ( /obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "dyI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "dyS" = ( /obj/item/stack/sheet/wood, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "dzd" = ( /obj/structure/closet/secure_closet/marshal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "dzs" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "dzv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/north) "dzB" = ( /obj/structure/curtain/red, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "dAf" = ( /obj/structure/surface/table/almayer, @@ -7562,32 +6187,22 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "dAm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/north_command_centre) "dAG" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "dAQ" = ( /obj/structure/platform_decoration{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "dBa" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -7597,18 +6212,13 @@ icon_state = "fernybush_2"; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "dBb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "dBc" = ( /obj/structure/prop/server_equipment/yutani_server{ @@ -7619,9 +6229,7 @@ pixel_y = 11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "dBd" = ( /obj/item/clothing/mask/facehugger{ @@ -7638,25 +6246,18 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "dBi" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "dBo" = ( /obj/item/device/defibrillator, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "dBC" = ( /obj/structure/cargo_container/horizontal/blue/middle, @@ -7671,21 +6272,14 @@ /area/lv522/outdoors/colony_streets/south_east_street) "dCx" = ( /obj/structure/closet/crate/radiation, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "dCJ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/east_central_street) "dCT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness/glass) "dCY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7700,25 +6294,17 @@ pixel_y = 7 }, /obj/item/tool/pen/red/clicky, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "dDq" = ( /turf/closed/wall/shiva/prefabricated, /area/lv522/landing_zone_2/ceiling) "dDC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/west) "dDF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/filt) "dDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -7732,9 +6318,7 @@ /area/lv522/atmos/cargo_intake) "dEk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "dEm" = ( /obj/structure/closet, @@ -7765,28 +6349,20 @@ pixel_y = 13 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "dEL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "dEM" = ( /obj/structure/barricade/deployable{ dir = 1 }, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "dEP" = ( /obj/structure/closet/crate/trashcart, @@ -7800,9 +6376,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "dFd" = ( /obj/structure/bed/chair/comfy, @@ -7854,23 +6428,17 @@ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "dGp" = ( /obj/structure/cargo_container/horizontal/blue/middle{ layer = 3.1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "dGB" = ( /obj/structure/window_frame/strata, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "dGD" = ( /obj/structure/machinery/colony_floodlight{ @@ -7880,28 +6448,17 @@ /area/lv522/outdoors/colony_streets/south_street) "dGK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/lone_buildings/storage_blocks) "dGV" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/west) "dHc" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/west) "dHg" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "dHj" = ( /obj/item/device/flashlight, @@ -7911,9 +6468,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor) "dHy" = ( /obj/structure/bed/chair/comfy{ @@ -7927,21 +6482,14 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "dHE" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/hallway) "dHF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "dHR" = ( /obj/structure/cargo_container/horizontal/blue/top{ @@ -7971,9 +6519,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "dIG" = ( /obj/structure/surface/table/reinforced/prison, @@ -7985,9 +6531,7 @@ network = null; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "dIK" = ( /obj/structure/bed/chair, @@ -7998,26 +6542,20 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "dIX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "dJp" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "dJs" = ( /obj/item/tool/pen/red/clicky, @@ -8031,10 +6569,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/operating, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "dJJ" = ( /obj/structure/cargo_container/horizontal/blue/middle{ @@ -8043,10 +6578,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) "dJN" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/east) "dKd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8057,21 +6589,13 @@ /area/lv522/indoors/c_block/garage) "dKC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness/glass) "dKF" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/east) "dKM" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/east) "dKO" = ( /obj/structure/machinery/photocopier, @@ -8082,30 +6606,21 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "dLq" = ( /obj/item/prop/colony/proptag{ desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "dLs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "dLz" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/oob) "dLC" = ( /obj/structure/largecrate/random/barrel/white, @@ -8121,9 +6636,7 @@ pixel_y = 10 }, /obj/item/device/implanter/subdermal_armor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/oob) "dMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8141,23 +6654,15 @@ }, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/executive) "dMu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/west_reactor) "dMy" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "dMN" = ( /obj/effect/decal/hefa_cult_decals/d32{ @@ -8169,10 +6674,7 @@ layer = 3.1; pixel_y = 2 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/oob) "dMY" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -8182,9 +6684,7 @@ /area/lv522/landing_zone_1) "dNd" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "dNe" = ( /obj/effect/decal/warning_stripes{ @@ -8193,9 +6693,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "dNm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8208,9 +6706,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dNx" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, @@ -8224,17 +6720,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "dNP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security/glass) "dOa" = ( /turf/closed/wall/strata_outpost, @@ -8244,23 +6736,16 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "dOw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/north_command_centre) "dOz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/hydro) "dOI" = ( /obj/structure/prop/invuln/remote_console_pod, @@ -8269,44 +6754,29 @@ layer = 3.5; pixel_y = -9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/shuttle/drop2/lv522) "dOK" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "dOY" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access = null; req_one_access_txt = "7;23;27" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "dPl" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "dPq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/north) "dPv" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "dPG" = ( /obj/item/trash/uscm_mre, @@ -8326,47 +6796,32 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "dPP" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_west_street) "dQa" = ( /obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "dQg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "dQh" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "dQm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "dQr" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -8388,9 +6843,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "dQQ" = ( /obj/structure/stairs/perspective{ @@ -8399,9 +6852,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "dRn" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -8410,25 +6861,18 @@ name = "Storage"; req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/cargo_intake) "dRy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "dRK" = ( /obj/structure/stairs/perspective{ dir = 9; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "dRL" = ( /turf/closed/wall/strata_outpost, @@ -8437,22 +6881,15 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "dSt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/east) "dSy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/east) "dSW" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -8462,10 +6899,7 @@ /obj/effect/decal/hefa_cult_decals/d96{ desc = "You think you can make out the iconography of a Xenomorph?" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/oob) "dTs" = ( /obj/effect/landmark/objective_landmark/close, @@ -8484,19 +6918,14 @@ /area/lv522/outdoors/colony_streets/north_west_street) "dTW" = ( /obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/oob) "dUj" = ( /obj/effect/decal/hefa_cult_decals/d32{ desc = "You think you can make out the iconography of a Xenomorph."; icon_state = "bee" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/oob) "dUq" = ( /obj/structure/surface/table/almayer, @@ -8504,26 +6933,19 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "dUD" = ( /obj/item/prop/colony/proptag{ desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/oob) "dUE" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/oob) "dUS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -8549,16 +6971,12 @@ welded = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorm_north) "dVD" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "dVM" = ( /obj/structure/curtain/red, @@ -8568,10 +6986,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "dWc" = ( /obj/structure/closet/crate/trashcart, @@ -8592,10 +7007,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "dWE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/west_reactor) "dWG" = ( /obj/structure/window/reinforced{ @@ -8603,15 +7015,11 @@ layer = 3 }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/lv522/indoors/c_block/mining) "dWT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "dWY" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -8626,9 +7034,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "dXo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -8636,16 +7042,12 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dXq" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "dXt" = ( /obj/item/stack/folding_barricade, @@ -8656,9 +7058,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dXI" = ( /obj/structure/surface/table/woodentable/fancy, @@ -8672,27 +7072,20 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/security) "dXN" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/east) "dXX" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 29 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "dYb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "dYA" = ( /obj/structure/cargo_container/kelland/right, @@ -8711,9 +7104,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "dZd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -8723,10 +7114,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor) "dZr" = ( /obj/structure/ore_box, @@ -8734,9 +7122,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "dZs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -8748,9 +7134,7 @@ dir = 1; name = "\improper Mining Equipment" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "dZx" = ( /obj/structure/surface/table/almayer, @@ -8768,19 +7152,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "dZM" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "dZP" = ( /obj/structure/curtain/red, @@ -8796,9 +7174,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "eah" = ( /obj/structure/surface/table/almayer, @@ -8811,55 +7187,40 @@ }, /obj/item/prop/alien/hugger, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "eam" = ( /obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) "ear" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "eaE" = ( /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "eaG" = ( /obj/structure/ore_box, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "ebe" = ( /obj/item/storage/pouch/autoinjector/full, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) "ebn" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "ebt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "ebP" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "2" }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/oob) "ebR" = ( /obj/structure/surface/table/almayer, @@ -8870,17 +7231,11 @@ phone_id = "Colony Engineering"; pixel_y = -6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "ecm" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "ecq" = ( /obj/structure/fence, @@ -8891,18 +7246,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "ecK" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "ecP" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -8911,10 +7262,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "ecU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "edi" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -8925,12 +7273,9 @@ /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "edk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/oob) "edw" = ( /obj/structure/bed/roller, @@ -8939,16 +7284,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "edP" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/oob) "edQ" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -8972,7 +7312,7 @@ pixel_y = 6 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "eeG" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -8980,10 +7320,7 @@ /obj/structure/flora/bush/ausbushes/reedbush{ pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "eeY" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -8992,10 +7329,7 @@ "efk" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "efy" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -9004,9 +7338,7 @@ unacidable = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "efK" = ( /obj/item/stack/tile/plasteel{ @@ -9028,19 +7360,14 @@ desc = "You think you can make out the iconography of a Xenomorph." }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/oob) "efS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "efT" = ( /obj/structure/closet/coffin/woodencrate, @@ -9089,16 +7416,11 @@ }, /obj/item/clothing/suit/storage/bomber/alt, /obj/item/clothing/suit/storage/bomber/alt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "egd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "egj" = ( /obj/structure/machinery/floodlight, @@ -9106,10 +7428,7 @@ /area/lv522/indoors/lone_buildings/storage_blocks) "egt" = ( /obj/structure/powerloader_wreckage, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "egv" = ( /obj/item/cell/crap{ @@ -9124,16 +7443,10 @@ pixel_y = -6 }, /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "egD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor) "egE" = ( /obj/structure/machinery/washing_machine{ @@ -9145,16 +7458,11 @@ layer = 3.5; pixel_y = 29 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "egK" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) "egP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -9165,9 +7473,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "egV" = ( /obj/structure/barricade/deployable{ @@ -9184,17 +7490,12 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) "egY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/east_reactor) "ehr" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "ehy" = ( /obj/effect/acid_hole, @@ -9207,9 +7508,7 @@ pixel_y = 1 }, /obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "ehO" = ( /obj/effect/alien/resin/sticky, @@ -9217,10 +7516,7 @@ /area/lv522/atmos/east_reactor/south) "eil" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/oob) "eiC" = ( /obj/effect/decal/warning_stripes{ @@ -9232,9 +7528,7 @@ pixel_x = -7; pixel_y = -5 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "eiP" = ( /obj/structure/coatrack{ @@ -9250,27 +7544,18 @@ pixel_y = -6 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "eiY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "eiZ" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "ejo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/north_command_centre) "eju" = ( /obj/item/storage/backpack/marine/satchel{ @@ -9295,39 +7580,26 @@ /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "ejN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "ekf" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "ekt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "ekK" = ( /obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/oob) "ekO" = ( /obj/structure/bed/chair/wood/normal{ @@ -9345,9 +7617,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "elq" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -9363,23 +7633,16 @@ /area/lv522/outdoors/colony_streets/south_east_street) "elx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "elS" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "elX" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/storage/CMB, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "emb" = ( /obj/item/ammo_magazine/smartgun{ @@ -9402,19 +7665,14 @@ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "emt" = ( /obj/structure/barricade/handrail{ dir = 8 }, /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/indoors/lone_buildings/storage_blocks) "emz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -9429,20 +7687,13 @@ network = list("interrogation") }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "emH" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "ene" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/hallway) "eng" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -9456,28 +7707,24 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "enr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) +"enB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "enD" = ( /obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "enG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/north_command_centre) "enP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -9488,10 +7735,7 @@ "enR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "enS" = ( /obj/effect/spawner/gibspawner/xeno, @@ -9504,9 +7748,7 @@ /obj/vehicle/powerloader/ft{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/north) "eof" = ( /obj/structure/sign/safety/restrictedarea{ @@ -9522,9 +7764,7 @@ /obj/structure/barricade/metal{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "eov" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -9555,18 +7795,14 @@ name = "\improper Secure Blast Door"; unacidable = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/oob) "eow" = ( /obj/structure/tunnel{ pixel_x = 2; pixel_y = -6 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "eoA" = ( /obj/item/prop/colony/used_flare, @@ -9585,29 +7821,21 @@ dir = 1 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "eoH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/north_command_centre) "eoZ" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "epb" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "epe" = ( /obj/effect/decal/cleanable/dirt, @@ -9618,46 +7846,31 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "ept" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor) "epI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/north_command_centre) "epN" = ( /obj/structure/closet/emcloset, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "epS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "epX" = ( /obj/item/storage/firstaid/toxin/empty, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "eqe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -9669,47 +7882,33 @@ pixel_x = -5; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway/damage) "equ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "eqD" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "eqE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/nw_rockies) "eqM" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/security) "eqU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/north_command_centre) "eqV" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "erw" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/landmark/objective_landmark/close, @@ -9723,17 +7922,11 @@ /area/lv522/outdoors/colony_streets/south_west_street) "erS" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "erZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/west) "esa" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -9741,9 +7934,7 @@ /area/lv522/indoors/a_block/dorms) "esj" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/east_central_street) "eso" = ( /turf/open/floor/prison, @@ -9763,17 +7954,13 @@ /area/lv522/outdoors/colony_streets/north_east_street) "esF" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "etn" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "etq" = ( /obj/item/device/flashlight/lamp/green{ @@ -9786,27 +7973,20 @@ id = "Secure_Master_Armoury_2"; name = "remote door-control" }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "etx" = ( /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) "etN" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "euj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "eum" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -9818,9 +7998,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "eur" = ( /obj/structure/stairs/perspective{ @@ -9836,10 +8014,7 @@ /obj/effect/decal/cleanable/blood, /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "euN" = ( /obj/structure/stairs/perspective{ @@ -9854,17 +8029,13 @@ }, /obj/vehicle/train/cargo/engine, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "evg" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/power/apc/weak{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "evu" = ( /obj/structure/tunnel/maint_tunnel{ @@ -9874,7 +8045,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "evv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -9886,27 +8057,20 @@ pixel_x = 3; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "evx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "evN" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "evS" = ( /obj/structure/platform, @@ -9925,48 +8089,33 @@ dir = 8 }, /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/oob) "ewf" = ( /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "ewm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) "ewn" = ( /obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_west_street) "ewp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "ewt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "ewE" = ( /obj/structure/platform{ @@ -10002,16 +8151,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "exQ" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "exZ" = ( @@ -10019,9 +8165,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "eyc" = ( /obj/structure/platform{ @@ -10043,18 +8187,13 @@ /obj/item/storage/toolbox/mechanical/green{ pixel_y = -3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "eyn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "eyy" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1, /turf/open/floor/plating, /area/lv522/landing_zone_1) @@ -10070,15 +8209,10 @@ icon_state = "p_stair_full" }, /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "ezj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "ezo" = ( /obj/structure/surface/table/almayer, @@ -10106,23 +8240,16 @@ /area/lv522/atmos/east_reactor/east) "ezB" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "ezC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ezH" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "ezU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -10134,17 +8261,13 @@ }, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "eAg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "eAm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10155,9 +8278,7 @@ /area/lv522/indoors/a_block/dorms) "eAz" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "eAC" = ( /obj/structure/surface/table/almayer, @@ -10173,16 +8294,11 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "eAF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/east) "eAX" = ( /obj/structure/surface/table/almayer, @@ -10191,9 +8307,7 @@ /area/lv522/indoors/b_block/hydro) "eAY" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "eBi" = ( /obj/item/stack/cable_coil/cut, @@ -10202,9 +8316,7 @@ /area/lv522/atmos/east_reactor) "eBm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "eBu" = ( /obj/structure/surface/table/almayer, @@ -10212,27 +8324,20 @@ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "eBA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "eBH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "eCe" = ( /obj/effect/alien/resin/sticky, @@ -10261,9 +8366,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "eDq" = ( /obj/structure/platform{ @@ -10294,16 +8397,11 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "eDI" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "eDL" = ( /obj/structure/machinery/washing_machine, @@ -10311,9 +8409,7 @@ pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "eDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -10322,17 +8418,13 @@ /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/n_rockies) "eEv" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "eEx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "eEH" = ( /obj/structure/barricade/wooden{ @@ -10342,9 +8434,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) "eFb" = ( /obj/structure/machinery/light{ @@ -10361,10 +8451,7 @@ /obj/structure/bed/roller, /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "eFP" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -10380,15 +8467,11 @@ /area/lv522/outdoors/n_rockies) "eGs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "eGL" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "eGQ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -10396,23 +8479,16 @@ /area/lv522/atmos/east_reactor/east) "eHn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "eHp" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "eHu" = ( /obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "eHy" = ( /obj/structure/surface/table/woodentable/fancy, @@ -10427,14 +8503,10 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "eHE" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "eHF" = ( /obj/structure/cargo_container/kelland/right, @@ -10442,67 +8514,48 @@ /area/lv522/indoors/c_block/cargo) "eHI" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "eHR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "eHS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "eHX" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "eIk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) "eIn" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/silver{ amount = 20 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "eIF" = ( /obj/structure/bed/alien, /obj/item/pipe{ pixel_x = -6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "eIT" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "eJc" = ( /obj/structure/surface/table/almayer, @@ -10526,9 +8579,7 @@ pixel_y = 21 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "eJm" = ( /obj/effect/decal/cleanable/dirt, @@ -10544,9 +8595,7 @@ dir = 8; pixel_y = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "eJw" = ( /obj/item/clothing/mask/rebreather{ @@ -10562,10 +8611,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "eKc" = ( /obj/structure/closet/secure_closet/miner, @@ -10573,20 +8619,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "eKe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_east_street) "eKj" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "eKm" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -10601,9 +8641,7 @@ "eKK" = ( /obj/structure/blocker/forcefield/vehicles, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "eKL" = ( /obj/structure/bed/chair{ @@ -10612,9 +8650,7 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "eLf" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/landing_zone_2) "eLl" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -10622,9 +8658,7 @@ name = "\improper A-Block - Colony Medical Centre Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "eLx" = ( /obj/structure/machinery/prop/almayer/computer/PC{ @@ -10632,9 +8666,7 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "eLG" = ( /obj/item/lightstick/red/spoke/planted{ @@ -10659,10 +8691,7 @@ /area/lv522/indoors/a_block/corpo/glass) "eLN" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "eLU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -10680,9 +8709,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "eMj" = ( /obj/structure/stairs/perspective{ @@ -10692,19 +8719,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "eMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor) "eMm" = ( /obj/structure/platform{ @@ -10723,9 +8744,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "eMD" = ( /obj/structure/machinery/light{ @@ -10736,15 +8755,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "eMY" = ( /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "eNc" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -10754,9 +8769,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "eNf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -10767,10 +8780,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor) "eNW" = ( /obj/structure/barricade/deployable{ @@ -10783,9 +8793,7 @@ name = "????"; stat = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "eOe" = ( /obj/structure/bed/chair{ @@ -10801,32 +8809,24 @@ dir = 8 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "eOl" = ( /obj/item/shard{ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "eOn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "eOA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "eOE" = ( /obj/effect/decal/warning_stripes{ @@ -10841,18 +8841,14 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "eOU" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ePc" = ( /obj/structure/surface/table/almayer{ @@ -10863,9 +8859,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "ePl" = ( /obj/structure/prop/invuln/fire{ @@ -10884,31 +8878,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "eQf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/west_reactor) "eQu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/north_east_street) "eQB" = ( /obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "eQV" = ( /obj/structure/surface/rack, @@ -10922,9 +8908,7 @@ /obj/item/frame/table/almayer{ pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "eQY" = ( /obj/structure/surface/table/almayer, @@ -10932,15 +8916,11 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "eRg" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "eRI" = ( /obj/structure/barricade/deployable{ @@ -10952,18 +8932,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "eSf" = ( /obj/structure/barricade/wooden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "eSx" = ( /obj/effect/spider/spiderling/nogrow, @@ -10973,28 +8949,25 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "eSO" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "eSQ" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2/ceiling) +"eSW" = ( +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "eSY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -11002,20 +8975,8 @@ /area/lv522/indoors/c_block/cargo) "eTn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) -"eTu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "eTQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -11026,10 +8987,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/west_reactor) "eUf" = ( /obj/item/ammo_magazine/m2c{ @@ -11055,9 +9013,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "eUt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11075,14 +9031,10 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "eUO" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/outdoor_bot) "eUS" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -11102,29 +9054,21 @@ name = "synthethic potted plant"; pixel_y = 28 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "eVg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "eVi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/north) "eVW" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "eWn" = ( /obj/structure/blocker/forcefield/vehicles, @@ -11132,17 +9076,13 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "eWy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "eWF" = ( /obj/effect/decal/cleanable/dirt, @@ -11155,24 +9095,17 @@ /obj/item/storage/firstaid/adv{ pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "eWK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/east) "eWR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2) "eWW" = ( /obj/structure/window_frame/strata, @@ -11187,16 +9120,12 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "eXd" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "eXe" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -11240,10 +9169,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "eYA" = ( /obj/item/clothing/head/headband/tan{ @@ -11262,14 +9188,10 @@ /area/lv522/indoors/lone_buildings/storage_blocks) "eZb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) "eZe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_east_street) "eZq" = ( /obj/structure/transmitter/colony_net{ @@ -11280,31 +9202,23 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/prop/static_tank/water, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "eZv" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "eZF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "eZK" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "eZM" = ( /obj/structure/bed/chair/wood/normal{ @@ -11327,7 +9241,6 @@ phone_id = "LZ1 Service Tunnel"; pixel_y = 24 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "eZY" = ( @@ -11335,9 +9248,7 @@ dir = 4 }, /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fac" = ( /obj/structure/platform, @@ -11345,9 +9256,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "faJ" = ( /obj/item/trash/uscm_mre{ @@ -11358,9 +9267,7 @@ /area/lv522/outdoors/colony_streets/north_street) "faK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "faQ" = ( /obj/structure/bed/chair/comfy{ @@ -11371,9 +9278,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "faZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fba" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -11381,12 +9286,6 @@ }, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"fbh" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "fbA" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -11395,9 +9294,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "fbC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "fbE" = ( /obj/effect/decal/cleanable/dirt, @@ -11406,54 +9303,40 @@ pixel_x = 9; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "fbS" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_east_street) "fcd" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "fcv" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "fcV" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fcW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "fda" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "fdb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -11461,14 +9344,10 @@ name = "\improper C-Block - Casino Airlock"; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "fdf" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/landing_zone_2) "fdh" = ( /obj/item/lightstick/red/spoke/planted{ @@ -11486,25 +9365,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "fdE" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "fdR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fdS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -11513,9 +9386,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "fdT" = ( /obj/structure/closet/crate, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "fdZ" = ( /obj/structure/window_frame/strata, @@ -11523,43 +9394,31 @@ dir = 4; id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "feu" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "feF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_east_street) "feS" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "feZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "ffb" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "ffj" = ( /obj/item/prop/alien/hugger, @@ -11576,17 +9435,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/south_street) "ffr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "ffG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -11612,10 +9466,7 @@ phone_id = "Colony Medical"; pixel_x = 16 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "fgf" = ( /obj/item/ammo_magazine/m2c{ @@ -11667,25 +9518,18 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "fhQ" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "fhY" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "fib" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -11700,9 +9544,7 @@ /area/lv522/indoors/c_block/cargo) "fiA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "fiB" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -11719,9 +9561,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "fiS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -11748,16 +9588,11 @@ "fjt" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "fjF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "fjP" = ( /obj/effect/decal/cleanable/dirt, @@ -11767,17 +9602,13 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "fki" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) "fkj" = ( /turf/open/floor/grass, @@ -11804,17 +9635,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "fkW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "fld" = ( /mob/living/simple_animal/mouse, @@ -11827,10 +9652,7 @@ layer = 3.1; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "flC" = ( /obj/structure/machinery/light/small, @@ -11838,10 +9660,7 @@ dir = 1; network = list("interrogation") }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "flI" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11863,16 +9682,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "fmB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "fmH" = ( /obj/structure/pipes/vents/pump, @@ -11880,9 +9694,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "fmL" = ( /obj/structure/surface/rack{ @@ -11896,10 +9708,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "fni" = ( /obj/effect/decal/warning_stripes{ @@ -11927,19 +9736,13 @@ pixel_x = 9; pixel_y = 17 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "fol" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/filt) "fop" = ( /turf/open/floor/corsat, @@ -11953,10 +9756,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "foT" = ( /obj/effect/decal/warning_stripes{ @@ -11965,9 +9765,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "foX" = ( /obj/effect/decal/cleanable/dirt, @@ -11977,22 +9775,15 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "fpl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "fpm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "fpn" = ( /obj/item/device/analyzer, @@ -12000,18 +9791,13 @@ /area/lv522/atmos/east_reactor) "fpr" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "fps" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "fpB" = ( /obj/structure/stairs/perspective{ @@ -12024,27 +9810,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/north_command_centre) "fpW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/lv522/indoors/b_block/bar) "fqD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) "fqU" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -12052,9 +9831,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "frH" = ( /obj/item/clothing/head/hardhat/dblue{ @@ -12069,34 +9846,26 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "frZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "fsf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "fsj" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fss" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -12119,9 +9888,7 @@ /area/lv522/indoors/c_block/garage) "fsC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "fsQ" = ( /obj/structure/machinery/iv_drip, @@ -12130,9 +9897,7 @@ "fsV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "ftd" = ( /obj/structure/bed/chair{ @@ -12172,17 +9937,13 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ftD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) "ftK" = ( /obj/structure/bed/chair, @@ -12200,9 +9961,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "ful" = ( /obj/structure/stairs/perspective{ @@ -12227,17 +9986,12 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "fvk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "fvn" = ( /obj/structure/platform{ @@ -12247,12 +10001,10 @@ dir = 8 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "fvo" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "fvx" = ( /obj/structure/prop/vehicles/crawler{ @@ -12270,9 +10022,7 @@ /area/lv522/indoors/c_block/cargo) "fvQ" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "fvV" = ( /obj/effect/decal/warning_stripes{ @@ -12286,9 +10036,7 @@ dir = 1; name = "\improper Executive Suite" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/executive) "fwh" = ( /obj/structure/barricade/deployable, @@ -12296,9 +10044,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "fwj" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "fwo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -12309,10 +10055,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "fwT" = ( /obj/item/tool/lighter/random{ @@ -12343,16 +10086,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "fwX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "fxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -12362,26 +10100,16 @@ /area/lv522/atmos/east_reactor/south) "fxl" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "fxq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) -"fxZ" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "fyl" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "fyC" = ( /obj/structure/surface/table/almayer, @@ -12406,9 +10134,7 @@ "fyD" = ( /obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "fzf" = ( /obj/structure/stairs/perspective{ @@ -12429,10 +10155,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "fzl" = ( /obj/structure/stairs/perspective{ @@ -12443,10 +10166,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "fzp" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -12454,10 +10174,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) "fzu" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/reactor_garage) "fzC" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -12476,15 +10193,10 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "fzL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/west_reactor) "fzV" = ( /obj/structure/stairs/perspective{ @@ -12502,9 +10214,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "fAt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "fAx" = ( /obj/structure/filingcabinet{ @@ -12517,23 +10227,17 @@ pixel_x = 6; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "fAA" = ( /obj/structure/largecrate/random/barrel{ layer = 2.9 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "fAG" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fAH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -12542,37 +10246,24 @@ /obj/item/prop/colony/usedbandage{ dir = 9 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "fAY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "fBg" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "fBp" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/east_central_street) "fBL" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "fBP" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -12580,9 +10271,7 @@ pixel_x = -11; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "fBR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -12595,34 +10284,26 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "fBY" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "fCb" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "fCl" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen/glass) "fCE" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "fCN" = ( /obj/structure/surface/table/woodentable/fancy, @@ -12631,31 +10312,23 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "fCP" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "fCU" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; icon_state = "gib6" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "fCW" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "fDg" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -12675,9 +10348,7 @@ pixel_y = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "fDj" = ( /obj/structure/surface/table/almayer, @@ -12688,24 +10359,15 @@ /obj/item/tool/pen/blue/clicky, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "fDn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor) "fDv" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_street) "fDz" = ( /obj/structure/surface/table/almayer, @@ -12714,17 +10376,12 @@ pixel_y = 6 }, /obj/item/seeds/potatoseed, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "fDC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/static_tank/water, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "fDF" = ( /obj/structure/surface/rack, @@ -12734,18 +10391,11 @@ pixel_x = 5; registered_name = "John Forklift" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "fDH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) "fDS" = ( /obj/structure/machinery/conveyor{ @@ -12756,9 +10406,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "fEe" = ( /obj/structure/platform, @@ -12767,9 +10415,7 @@ /area/lv522/indoors/c_block/garage) "fEF" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "fEW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -12779,16 +10425,12 @@ layer = 4.3; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "fEY" = ( /obj/structure/surface/rack, /obj/item/explosive/plastic, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "fFp" = ( /obj/item/clothing/gloves/yellow, @@ -12812,28 +10454,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) "fFS" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "fGh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/west_reactor) "fGv" = ( /obj/structure/window_frame/strata, @@ -12843,9 +10477,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "fGw" = ( /obj/effect/spawner/gibspawner/xeno, @@ -12855,28 +10487,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/west_reactor) "fGJ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/west_reactor) "fGN" = ( /obj/structure/cargo_container/arious/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fGU" = ( /obj/structure/closet/crate, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "fHf" = ( /obj/structure/platform, @@ -12884,33 +10506,21 @@ layer = 2.9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "fHy" = ( /obj/structure/barricade/wooden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"fHB" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) "fHC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/executive) "fHH" = ( /obj/effect/decal/cleanable/dirt, @@ -12918,9 +10528,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "fIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -12930,21 +10538,15 @@ /area/lv522/indoors/b_block/bridge) "fIe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "fIr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "fIx" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "fII" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -12957,22 +10559,16 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "fIQ" = ( /obj/structure/blocker/forcefield/vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "fJe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "fJg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -12990,27 +10586,20 @@ dir = 1 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "fKf" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "fKt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "fKu" = ( /obj/structure/largecrate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "fLa" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -13024,10 +10613,7 @@ /obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "fLi" = ( /obj/item/tool/warning_cone{ @@ -13035,9 +10621,7 @@ pixel_y = 11 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "fLz" = ( /obj/structure/machinery{ @@ -13062,9 +10646,7 @@ /area/lv522/oob) "fLA" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "fLF" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -13072,10 +10654,7 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1) "fLK" = ( /obj/structure/cryofeed, @@ -13090,15 +10669,11 @@ pixel_x = 8; pixel_y = 12 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "fLP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "fLS" = ( /obj/structure/prop/dam/crane, @@ -13110,9 +10685,7 @@ name = "\improper B-Block Bar" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "fMd" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -13122,9 +10695,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "fMx" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -13135,9 +10706,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "fMN" = ( /obj/structure/surface/table/almayer, @@ -13180,26 +10749,19 @@ pixel_x = -9; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "fMT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "fNk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/reactor_garage) "fNm" = ( /obj/effect/landmark/monkey_spawn, @@ -13207,17 +10769,12 @@ /area/lv522/atmos/east_reactor/east) "fNp" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "fNq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "fOc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -13229,17 +10786,12 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "fOy" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "fOM" = ( /obj/structure/bed/chair/comfy{ @@ -13249,9 +10801,7 @@ /area/lv522/atmos/east_reactor/east) "fOX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "fPa" = ( /obj/structure/prop/server_equipment/yutani_server{ @@ -13262,18 +10812,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"fPt" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "fPB" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "fPH" = ( /obj/structure/closet/crate/miningcar, @@ -13290,18 +10832,14 @@ /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "fQb" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "fQi" = ( /obj/item/prop/colony/canister{ @@ -13309,38 +10847,27 @@ layer = 3.1; pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) "fQD" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "fRc" = ( /obj/structure/machinery/mill, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "fRd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "fRf" = ( /obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "fRk" = ( /obj/structure/window/framed/strata/reinforced, @@ -13348,9 +10875,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "fRP" = ( /obj/structure/prop/vehicles/crawler{ @@ -13374,9 +10899,7 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "fSf" = ( /obj/structure/blocker/invisible_wall, @@ -13386,24 +10909,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "fSo" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "fSq" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "fSv" = ( /obj/structure/surface/table/almayer, @@ -13427,9 +10942,7 @@ pixel_y = 12 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "fSX" = ( /obj/structure/surface/table/almayer, @@ -13438,9 +10951,7 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "fTi" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -13455,33 +10966,24 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) "fTs" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/west_reactor) "fTN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "fTO" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "fTP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) "fTS" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "fUf" = ( /obj/effect/decal{ @@ -13491,9 +10993,7 @@ name = "weak acid" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "fUx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -13510,16 +11010,12 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "fVB" = ( /obj/structure/closet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "fVC" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -13532,7 +11028,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "fVU" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -13541,9 +11037,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "fWD" = ( /obj/item/stack/folding_barricade, @@ -13551,9 +11045,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "fWG" = ( /turf/open/auto_turf/shale/layer1, @@ -13568,9 +11060,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "fWW" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -13589,9 +11079,7 @@ "fXa" = ( /obj/structure/machinery/vending/snack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "fXn" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -13601,30 +11089,21 @@ "fXs" = ( /obj/structure/blocker/forcefield/vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "fXv" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/command_centre) "fXx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "fXy" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "fXG" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -13638,15 +11117,10 @@ name = "\improper materials storage bin"; pixel_y = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "fXS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "fXU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -13657,10 +11131,7 @@ /area/lv522/atmos/east_reactor) "fXZ" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/east, /area/lv522/indoors/a_block/medical) "fYm" = ( /obj/effect/decal/cleanable/dirt, @@ -13668,10 +11139,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "fYw" = ( /obj/structure/surface/table/almayer, @@ -13681,9 +11149,7 @@ }, /obj/item/clothing/glasses/meson, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "fYD" = ( /obj/structure/stairs/perspective{ @@ -13693,24 +11159,17 @@ dir = 4 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "fYP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/west) "fYZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) "fZd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/t_comm) "fZl" = ( /obj/structure/surface/table/almayer, @@ -13722,10 +11181,7 @@ pixel_x = -3; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "fZo" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -13735,7 +11191,7 @@ }, /obj/structure/closet/firecloset/full, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "fZy" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -13752,17 +11208,11 @@ /area/lv522/indoors/c_block/mining) "fZS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/mining) "gat" = ( /obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "gaw" = ( /obj/structure/barricade/deployable{ @@ -13773,10 +11223,7 @@ "gaI" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "gaS" = ( /obj/item/bananapeel{ @@ -13799,9 +11246,7 @@ "gbh" = ( /obj/structure/machinery/recharge_station, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "gbk" = ( /obj/structure/surface/table/almayer, @@ -13827,29 +11272,14 @@ /area/lv522/indoors/c_block/casino) "gbo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/reactor_garage) -"gbq" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "gbz" = ( /obj/item/prop/colony/used_flare, /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/lv522/indoors/a_block/admin) "gbB" = ( /obj/structure/machinery/colony_floodlight{ @@ -13870,10 +11300,7 @@ /area/lv522/atmos/east_reactor) "gbR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "gbW" = ( /obj/effect/decal{ @@ -13884,15 +11311,11 @@ pixel_x = -2; pixel_y = 16 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "gck" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "gcn" = ( /obj/item/xeno_egg/alpha{ @@ -13904,22 +11327,16 @@ pixel_y = 7 }, /obj/structure/closet/crate, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "gcr" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "gcv" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) "gcO" = ( /obj/effect/decal/cleanable/dirt, @@ -13931,9 +11348,7 @@ /area/lv522/indoors/a_block/executive) "gcX" = ( /obj/structure/window_frame/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "gcY" = ( /obj/structure/cargo_container/ferret/left, @@ -13944,10 +11359,7 @@ /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gdr" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -13957,7 +11369,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "gdt" = ( /obj/item/tool/kitchen/knife, @@ -13967,16 +11379,11 @@ "gdA" = ( /obj/structure/barricade/deployable, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "gdJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/west) "gdO" = ( /turf/closed/wall/strata_outpost, @@ -13987,24 +11394,16 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gdX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "gej" = ( /obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/landing_zone_1) "gek" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -14017,16 +11416,12 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/central_streets) "gem" = ( /obj/structure/surface/rack, /obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "geq" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -14036,9 +11431,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "get" = ( /turf/open/floor/carpet, @@ -14055,17 +11448,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "geB" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "geH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14084,9 +11473,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "geT" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -14097,7 +11484,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/platform, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "gfi" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/item/prop/alien/hugger{ @@ -14110,21 +11497,17 @@ dir = 2; name = "\improper A-Block - Colony Operations Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "gfs" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "gfu" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "gfL" = ( /obj/effect/decal/warning_stripes{ @@ -14138,10 +11521,7 @@ "gfU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/sofa/vert/white/top, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "gge" = ( /obj/item/storage/belt/medical/lifesaver, @@ -14149,28 +11529,19 @@ /area/lv522/atmos/cargo_intake) "ggj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "ggp" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "ggH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "ggM" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "ggO" = ( /obj/structure/surface/table/almayer, @@ -14179,17 +11550,10 @@ pixel_y = 4 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "ggS" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "ggZ" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -14198,31 +11562,22 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "gha" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) "ghr" = ( /obj/structure/machinery/door/airlock/almayer/engineering, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/east) "ghu" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "ghw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "ghy" = ( /obj/structure/surface/table/almayer, @@ -14237,9 +11592,7 @@ pixel_y = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "ghY" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -14256,15 +11609,11 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "gif" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "gij" = ( /obj/item/tool/wirecutters, @@ -14273,9 +11622,7 @@ /area/lv522/indoors/c_block/casino) "giF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "giV" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -14283,9 +11630,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "giX" = ( /obj/structure/curtain/red, @@ -14293,9 +11638,7 @@ /area/lv522/indoors/a_block/executive) "gjm" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "gjt" = ( /obj/structure/machinery/colony_floodlight{ @@ -14319,25 +11662,18 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "gjF" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "gjQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/t_comm) "gjV" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -14362,27 +11698,20 @@ /obj/structure/window{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "gkl" = ( /obj/structure/barricade/wooden, /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gkF" = ( /obj/structure/machinery/computer/arcade, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "gkH" = ( /obj/structure/tunnel/maint_tunnel{ @@ -14391,16 +11720,14 @@ /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "gkY" = ( /obj/structure/closet/bombcloset, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) "glj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "gll" = ( /obj/structure/bed/chair{ @@ -14409,9 +11736,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "glO" = ( /obj/item/stack/sheet/wood, @@ -14433,17 +11758,13 @@ icon_state = "p_stair_full" }, /obj/item/stack/sheet/wood, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "gmb" = ( /obj/structure/prop/vehicles/crawler{ layer = 2.9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "gme" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14455,9 +11776,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "gmu" = ( /obj/structure/platform{ @@ -14467,9 +11786,7 @@ /area/lv522/outdoors/colony_streets/south_street) "gnd" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "gnf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -14479,40 +11796,29 @@ /area/lv522/landing_zone_1) "gnk" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "gnl" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/airlock, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "gnx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "gny" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges) "gnA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "gok" = ( /obj/effect/decal/cleanable/dirt, @@ -14526,25 +11832,19 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) "gou" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/lv522/indoors/a_block/dorms) "goC" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "goK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/north_command_centre) "goO" = ( /obj/structure/window/reinforced{ @@ -14572,9 +11872,7 @@ layer = 3.1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "goT" = ( /obj/structure/stairs/perspective{ @@ -14590,33 +11888,25 @@ "gpi" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "gpp" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "gpr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Cargo Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "gpB" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_west_street) "gpN" = ( /obj/effect/spawner/gibspawner/xeno, @@ -14632,17 +11922,11 @@ /area/lv522/indoors/a_block/security/glass) "gqg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) "gqh" = ( /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "gqG" = ( /obj/structure/platform, @@ -14658,10 +11942,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "grq" = ( /obj/structure/barricade/wooden{ @@ -14718,10 +11999,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "gsP" = ( /obj/effect/decal/warning_stripes{ @@ -14744,10 +12022,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "gts" = ( /obj/structure/tunnel, @@ -14764,18 +12039,14 @@ pixel_x = 8; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "gtH" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "gtS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -14790,38 +12061,30 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "gug" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "guh" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "guj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Dormitories" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorm_north) "gul" = ( /obj/structure/tunnel/maint_tunnel{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "guB" = ( /obj/structure/bed/chair/comfy{ @@ -14833,9 +12096,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "guE" = ( /obj/structure/platform{ @@ -14855,9 +12116,7 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "guR" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -14876,17 +12135,12 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "gvr" = ( /obj/structure/closet/bodybag, /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "gvs" = ( /obj/structure/machinery/space_heater, @@ -14894,9 +12148,7 @@ pixel_x = 5; pixel_y = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "gvG" = ( /obj/item/toy/beach_ball/holoball, @@ -14907,9 +12159,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "gvT" = ( /obj/effect/decal/cleanable/dirt, @@ -14921,9 +12171,7 @@ /area/lv522/indoors/a_block/bridges/corpo) "gwk" = ( /obj/structure/prop/static_tank/water, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "gwt" = ( /obj/structure/cargo_container/wy/right, @@ -14942,10 +12190,7 @@ /area/lv522/outdoors/colony_streets/north_street) "gwK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "gwP" = ( /obj/structure/cargo_container/kelland/left, @@ -14963,9 +12208,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "gxb" = ( /obj/structure/surface/table/almayer, @@ -14974,23 +12217,17 @@ pixel_y = 3 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "gxc" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gxl" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gxp" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -15005,17 +12242,13 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "gxE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_east_street) "gxM" = ( /obj/structure/surface/table/almayer, @@ -15023,9 +12256,7 @@ pixel_y = 5 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gxN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15043,40 +12274,29 @@ /area/lv522/indoors/c_block/casino) "gyn" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gyB" = ( /obj/item/prop/colony/used_flare, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "gyC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/south) "gyK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "gzk" = ( /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gzu" = ( /obj/structure/barricade/deployable{ @@ -15087,19 +12307,14 @@ /area/lv522/atmos/cargo_intake) "gzD" = ( /obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gzS" = ( /obj/structure/pipes/unary/freezer{ dir = 1; icon_state = "freezer_1" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "gzT" = ( /obj/structure/cargo_container/kelland/right{ @@ -15109,15 +12324,11 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "gzY" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "gAa" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -15132,9 +12343,7 @@ "gAJ" = ( /obj/structure/surface/table/almayer, /obj/structure/prop/server_equipment/laptop, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gAO" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -15145,9 +12354,7 @@ "gAS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "gAU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15157,10 +12364,7 @@ pixel_x = -37; pixel_y = 17 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/lv522/indoors/a_block/hallway) "gBe" = ( /obj/item/stack/sheet/metal, @@ -15178,9 +12382,7 @@ /obj/item/seeds/riceseed, /obj/structure/closet/crate, /obj/item/seeds/riceseed, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "gBy" = ( /obj/effect/decal/warning_stripes{ @@ -15196,9 +12398,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "gCE" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -15210,9 +12410,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "gCO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15235,24 +12433,18 @@ id = "cargo_container" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "gDz" = ( /obj/structure/barricade/wooden{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen/glass) "gDA" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "gDL" = ( /obj/structure/surface/table/reinforced/prison, @@ -15275,9 +12467,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "gEx" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15302,16 +12492,11 @@ pixel_y = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "gES" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "gFi" = ( /obj/structure/filingcabinet/seeds{ @@ -15324,10 +12509,7 @@ pixel_x = 7; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "gFp" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -15352,88 +12534,60 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "gFD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gFG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/west_reactor) "gFM" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/east_central_street) "gGa" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "gGe" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random{ pixel_y = 18 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "gGg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "gGk" = ( /obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gGq" = ( /obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gGx" = ( /obj/item/weapon/gun/pistol/m1911{ current_mag = null }, /obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/n_rockies) "gGM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_street) "gGP" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_west_street) "gGW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15455,31 +12609,22 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "gHz" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_west_street) "gHD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "gHF" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "gHN" = ( /obj/structure/prop/vehicles/crawler{ @@ -15490,9 +12635,7 @@ "gHX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "gIa" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15510,15 +12653,11 @@ /area/lv522/outdoors/colony_streets/east_central_street) "gIh" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "gIr" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_east_street) "gIv" = ( /obj/structure/cargo_container/ferret/left, @@ -15528,19 +12667,14 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) "gIZ" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "gJm" = ( /obj/structure/cargo_container/ferret/mid, @@ -15557,28 +12691,22 @@ }, /obj/structure/platform, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "gJD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/nw_rockies) "gJK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "gJL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "gJM" = ( /obj/structure/reagent_dispensers/watertank, @@ -15586,15 +12714,11 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "gKa" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/south_east_street) "gKg" = ( /obj/structure/platform, @@ -15603,19 +12727,14 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1) "gKM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor) "gKO" = ( /obj/structure/machinery/colony_floodlight{ @@ -15636,9 +12755,7 @@ /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "gLd" = ( /obj/structure/machinery/power/apc/weak{ @@ -15660,10 +12777,7 @@ icon_state = "p_stair_full" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "gLV" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ @@ -15672,9 +12786,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "gMb" = ( /obj/structure/bed/chair/comfy{ @@ -15693,48 +12805,35 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/cargo_intake) "gMG" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "gMQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_west_street) "gMV" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "gNb" = ( /obj/structure/machinery/light, /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "gNe" = ( /obj/structure/prop/server_equipment/yutani_server/off, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gNn" = ( /obj/structure/largecrate/supply/medicine/medkits{ @@ -15754,10 +12853,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/reactor_garage) "gNJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15772,10 +12868,7 @@ "gOb" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "gOj" = ( /obj/structure/cargo_container/horizontal/blue/middle, @@ -15789,9 +12882,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/shotgun/beanbag/empty, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "gOE" = ( /obj/structure/surface/table/almayer, @@ -15805,16 +12896,12 @@ pixel_y = 5 }, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "gOG" = ( /obj/structure/surface/table/almayer, /obj/item/frame/fire_alarm, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "gOJ" = ( /obj/item/tool/wirecutters{ @@ -15843,18 +12930,13 @@ "gPp" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gPq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "gPv" = ( /obj/structure/platform{ @@ -15872,10 +12954,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "gPQ" = ( /obj/structure/machinery/conveyor{ @@ -15883,10 +12962,7 @@ id = "cargo_container" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) "gQu" = ( /mob/living/simple_animal/cat/kitten{ @@ -15900,11 +12976,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "gQV" = ( /obj/structure/platform{ @@ -15925,9 +12997,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "gRp" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "gRs" = ( /obj/structure/cargo_container/watatsumi/leftmid, @@ -15949,37 +13019,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "gRK" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "gRU" = ( /obj/item/paper_bin/uscm{ pixel_x = -7; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "gRV" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "gSn" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "gSw" = ( /obj/item/prop/colony/used_flare, @@ -15991,23 +13051,16 @@ /obj/structure/foamed_metal{ layer = 3.1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "gTc" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "gTw" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/north_command_centre) "gTM" = ( /obj/structure/girder, @@ -16015,16 +13068,12 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "gTX" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "gUe" = ( /obj/structure/ore_box, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "gUi" = ( /obj/structure/flora/jungle/planttop1, @@ -16038,9 +13087,7 @@ /area/lv522/outdoors/colony_streets/south_street) "gUm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "gUv" = ( /obj/structure/surface/table/woodentable/fancy, @@ -16056,31 +13103,21 @@ pixel_x = 9; pixel_y = 2 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "gUA" = ( /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "gUQ" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "gUY" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "gVd" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, @@ -16109,9 +13146,7 @@ /area/lv522/landing_zone_1) "gVr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) "gVv" = ( /obj/item/lightstick/red/spoke/planted{ @@ -16124,10 +13159,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "gVA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) "gWb" = ( /obj/structure/surface/table/almayer, @@ -16147,43 +13179,30 @@ dir = 4 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "gWg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "gWh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "gWq" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "gWu" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/way_in_command_centre) "gWx" = ( /obj/structure/closet/secure_closet/miner{ pixel_x = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "gWI" = ( /turf/open/asphalt/cement, @@ -16194,15 +13213,12 @@ name = "Bathroom" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "gXb" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "gXc" = ( @@ -16220,10 +13236,7 @@ /area/lv522/indoors/a_block/kitchen/glass) "gXA" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "gXB" = ( /obj/structure/surface/table/woodentable/fancy, @@ -16231,9 +13244,7 @@ /obj/item/clothing/mask/cigarette/pipe{ pixel_y = 5 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) "gXE" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -16246,22 +13257,16 @@ "gXI" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/lv522/atmos/reactor_garage) "gXL" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "gXR" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "gXT" = ( /obj/item/shard{ @@ -16278,10 +13283,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gYc" = ( /obj/structure/reagent_dispensers/watertank, @@ -16295,24 +13297,18 @@ pixel_y = 3 }, /obj/item/paper/janitor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gYF" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "gYH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Security Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) "gYK" = ( /obj/effect/decal/cleanable/dirt, @@ -16320,9 +13316,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "gYM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16331,9 +13325,7 @@ /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/cargo_intake) "gYO" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "gYT" = ( /obj/structure/bed/chair/comfy{ @@ -16346,56 +13338,38 @@ flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "gZd" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "gZg" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "gZh" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gZp" = ( /obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "gZv" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper A-Block Shared Dorms Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorm_north) "gZJ" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "gZL" = ( /obj/effect/decal/cleanable/blood/drip, @@ -16408,37 +13382,26 @@ icon_state = "p_stair_full" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "haf" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/plating, /area/lv522/landing_zone_1) "hag" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "hai" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "ham" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/reactor_garage) "han" = ( /obj/structure/cargo_container/horizontal/blue/bottom, @@ -16449,9 +13412,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) "haq" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) "har" = ( /obj/effect/decal/cleanable/dirt, @@ -16462,9 +13423,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "hau" = ( /obj/structure/sink{ @@ -16472,10 +13431,7 @@ pixel_x = 11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "haF" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -16497,17 +13453,13 @@ icon_state = "xgib3" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "haR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "haY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -16516,15 +13468,11 @@ /area/lv522/indoors/c_block/cargo) "hbj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "hbk" = ( /obj/effect/spawner/gibspawner/robot, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "hbp" = ( /obj/structure/surface/table/almayer, @@ -16545,9 +13493,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "hbu" = ( /obj/item/clothing/mask/facehugger{ @@ -16557,10 +13503,7 @@ name = "????"; stat = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "hbw" = ( /obj/item/explosive/grenade/high_explosive/m15{ @@ -16577,31 +13520,20 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/command_centre) "hbG" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "hbH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/command_centre) "hbN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "hcd" = ( /obj/effect/decal/warning_stripes{ @@ -16611,9 +13543,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "hcv" = ( /obj/structure/fence, @@ -16624,16 +13554,10 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) "hcx" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/command_centre) "hcE" = ( /obj/item/stack/sheet/metal, @@ -16646,38 +13570,26 @@ /area/lv522/indoors/c_block/mining) "hcV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "hcZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hdd" = ( /obj/item/prop/alien/hugger, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hdk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/lv522/indoors/a_block/admin) "hdq" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "hds" = ( /obj/structure/surface/table/woodentable, @@ -16685,9 +13597,7 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "hdu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16708,30 +13618,21 @@ pixel_y = 24 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hdQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "hdR" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "hef" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "heB" = ( /obj/structure/cargo_container/ferret/right, @@ -16739,16 +13640,12 @@ /area/lv522/atmos/cargo_intake) "heC" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "heF" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "heO" = ( /obj/structure/machinery/camera/autoname{ @@ -16757,10 +13654,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "heU" = ( /obj/structure/blocker/invisible_wall, @@ -16780,10 +13674,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "hfi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -16791,10 +13682,7 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "hft" = ( /obj/structure/largecrate/random, @@ -16813,9 +13701,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "hfS" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -16833,10 +13719,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hgo" = ( /obj/item/storage/backpack/marine/satchel{ @@ -16872,16 +13755,11 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) "hgM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "hgQ" = ( /obj/effect/decal/cleanable/dirt, @@ -16894,9 +13772,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/landing_zone_2) "hhu" = ( /obj/structure/machinery/conveyor{ @@ -16904,27 +13780,18 @@ id = "cargo_container" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "hhD" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "hhI" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "hhJ" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "hhK" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -16934,34 +13801,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "hhQ" = ( /obj/structure/closet/radiation, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "hig" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/east) "hij" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/reactor_garage) "hip" = ( /obj/structure/pipes/vents/pump, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "hix" = ( /obj/structure/platform{ @@ -16970,20 +13826,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "hiB" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hiK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/north_west_street) "hiL" = ( /obj/structure/platform{ @@ -16993,16 +13843,13 @@ dir = 4 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "hiV" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/command_centre) "hiZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17011,19 +13858,14 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Mining Control" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "hjB" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/command_centre) "hjE" = ( /obj/effect/decal/cleanable/blood/oil, @@ -17057,15 +13899,11 @@ /obj/item/clothing/head/welding{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "hkr" = ( /obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "hku" = ( /obj/structure/surface/table/almayer, @@ -17086,9 +13924,7 @@ layer = 2.9; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "hkw" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17098,9 +13934,7 @@ /obj/item/clothing/head/hardhat{ pixel_x = 17 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/command_centre) "hky" = ( /obj/effect/landmark/monkey_spawn, @@ -17108,10 +13942,7 @@ dir = 4 }, /obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/command_centre) "hkC" = ( /obj/structure/surface/table/almayer, @@ -17125,27 +13956,19 @@ /obj/item/tool/pen/red/clicky{ pixel_x = -6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "hkD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/command_centre) "hkE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) "hkO" = ( /obj/structure/surface/rack, @@ -17156,18 +13979,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "hkY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "hlf" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -17180,16 +13998,12 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "hll" = ( /obj/structure/surface/table/almayer, /obj/item/device/binoculars, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "hlp" = ( /obj/structure/machinery/conveyor{ @@ -17199,9 +14013,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "hlH" = ( /obj/structure/surface/table/reinforced/prison, @@ -17209,19 +14021,13 @@ /obj/item/restraint/adjustable/cable/white{ pixel_y = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "hlJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/command_centre) "hmz" = ( /obj/structure/largecrate/random/barrel/white, @@ -17232,10 +14038,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/command_centre) "hmJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17252,22 +14055,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hmV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/south) "hna" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "hnk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17281,15 +14076,10 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "hnD" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/west_reactor) "hoq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -17320,9 +14110,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "hoy" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -17339,9 +14127,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) "hoZ" = ( /obj/structure/surface/table/almayer, @@ -17357,55 +14143,37 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "hpq" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_west_street) "hpy" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/command_centre) "hpH" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "hpI" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "hqp" = ( /obj/structure/coatrack{ pixel_x = 11 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "hqB" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "hqD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/command_centre) "hqZ" = ( /obj/structure/bed/chair/wheelchair, @@ -17421,16 +14189,12 @@ /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) "hrk" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/east_central_street) "hrl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "hrw" = ( /obj/effect/decal/cleanable/dirt, @@ -17438,9 +14202,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "hrx" = ( /obj/structure/surface/table/almayer, @@ -17448,9 +14210,7 @@ dir = 4; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "hry" = ( /obj/structure/machinery/conveyor{ @@ -17458,25 +14218,18 @@ id = "cargo_container" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) "hrH" = ( /obj/structure/platform_decoration, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "hrU" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "hsh" = ( /obj/structure/bed/chair{ @@ -17486,10 +14239,7 @@ /area/lv522/indoors/b_block/hydro) "hsz" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "hsA" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -17503,10 +14253,7 @@ layer = 2; name = "weak acid" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/admin) "htu" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -17535,31 +14282,22 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "htX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/command_centre) "hup" = ( /obj/item/tool/crowbar, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) "huq" = ( /obj/structure/barricade/wooden{ dir = 8 }, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "huu" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -17567,16 +14305,11 @@ /area/lv522/indoors/b_block/bridge) "huF" = ( /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "huN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/hallway) "huX" = ( /obj/structure/surface/table/almayer, @@ -17588,9 +14321,7 @@ phone_id = "Colony Kitchen"; pixel_y = -6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "hvh" = ( /obj/structure/platform, @@ -17615,9 +14346,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "hwa" = ( /obj/structure/platform/stair_cut{ @@ -17630,34 +14359,23 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hwf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "hwr" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/command_centre) "hwt" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "hwF" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -17676,9 +14394,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "hxn" = ( /obj/effect/decal/warning_stripes{ @@ -17698,9 +14414,7 @@ /area/lv522/outdoors/colony_streets/north_street) "hxV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/command_centre) "hxY" = ( /obj/item/storage/backpack/marine/satchel{ @@ -17714,24 +14428,17 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "hye" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/command_centre) "hyf" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "hyA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "hyE" = ( /obj/effect/decal/cleanable/blood, @@ -17740,9 +14447,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "hyZ" = ( /obj/structure/fence{ @@ -17755,15 +14460,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "hzc" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "hzk" = ( /obj/effect/decal/cleanable/dirt, @@ -17773,26 +14474,19 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) "hzu" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "hzw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) "hzA" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -17811,9 +14505,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) "hzO" = ( /obj/structure/surface/rack, @@ -17826,9 +14518,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "hzV" = ( /obj/effect/decal/cleanable/dirt, @@ -17840,9 +14530,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "hAd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -17850,9 +14538,7 @@ name = "\improper A-Block Dorms And Office Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "hAg" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -17869,24 +14555,17 @@ pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "hAk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "hAr" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "hAs" = ( /obj/structure/bed/chair{ @@ -17898,9 +14577,7 @@ /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "hAy" = ( /obj/structure/machinery/light{ @@ -17913,17 +14590,11 @@ /obj/structure/bed/bedroll{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "hAD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/reactor_garage) "hAE" = ( /obj/structure/fence{ @@ -17936,27 +14607,18 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "hAK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/command_centre) "hAX" = ( /obj/item/weapon/gun/boltaction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "hBf" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/command_centre) "hBg" = ( /obj/structure/cryofeed, @@ -17966,54 +14628,37 @@ "hBp" = ( /obj/structure/dispenser/oxygen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "hBB" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) "hBC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/autopsy_scanner, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "hBD" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) "hCi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "hCq" = ( /obj/structure/bed/bedroll{ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "hCv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/command_centre) "hCH" = ( /obj/structure/surface/table/almayer, @@ -18022,15 +14667,11 @@ "hCU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/east) "hCV" = ( /obj/item/stool, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "hDa" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -18043,15 +14684,11 @@ }, /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "hDh" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) "hDy" = ( /turf/closed/wall/strata_outpost, @@ -18084,24 +14721,17 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "hEJ" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "hES" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "hFg" = ( /obj/structure/prop/almayer/computers/sensor_computer2, @@ -18109,28 +14739,19 @@ pixel_x = -7; pixel_y = 19 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "hFu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/command_centre) "hFA" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "hFG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "hFL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18139,15 +14760,10 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "hFS" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/command_centre) "hFX" = ( /turf/open/auto_turf/shale/layer2, @@ -18155,16 +14771,11 @@ "hGg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/sofa/vert/white, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "hGm" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "hGJ" = ( /obj/structure/platform_decoration/strata{ @@ -18174,9 +14785,7 @@ /area/lv522/oob) "hGU" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hGX" = ( /obj/structure/bed/chair/comfy{ @@ -18193,6 +14802,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) +"hHe" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "hHh" = ( /obj/structure/platform{ dir = 4 @@ -18201,27 +14816,18 @@ /area/lv522/outdoors/colony_streets/central_streets) "hHj" = ( /obj/structure/largecrate, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "hHN" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hHY" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/command_centre) "hIf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "hIp" = ( /obj/item/weapon/gun/rifle/m41a{ @@ -18247,25 +14853,19 @@ }, /obj/item/restraint/handcuffs, /obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "hIA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "hID" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) "hIP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -18288,9 +14888,7 @@ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "hJq" = ( /obj/structure/platform/strata, @@ -18300,9 +14898,7 @@ /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) "hJB" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/west) "hJG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -18314,9 +14910,7 @@ /obj/structure/surface/rack, /obj/item/explosive/plastic, /obj/item/explosive/plastic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "hJZ" = ( /turf/open/auto_turf/sand_white/layer0, @@ -18326,23 +14920,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "hKu" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "hKy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/outdoor_bot) "hKE" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -18356,15 +14943,10 @@ /area/lv522/outdoors/nw_rockies) "hKI" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "hKJ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/lv522/indoors/a_block/admin) "hKK" = ( /obj/item/clothing/mask/facehugger{ @@ -18390,35 +14972,24 @@ pixel_x = -2; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/hallway) "hKS" = ( /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "hLl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/indoors/lone_buildings/storage_blocks) "hLm" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "hLo" = ( /turf/open/floor/wood, @@ -18426,40 +14997,28 @@ "hLx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hLF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "hLK" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "hLR" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_top_left, /area/lv522/landing_zone_forecon/UD6_Tornado) "hLT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "hLY" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "hMb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18472,15 +15031,10 @@ /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, /obj/item/clothing/glasses/kutjevo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "hMz" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "hME" = ( /obj/effect/decal/warning_stripes{ @@ -18488,9 +15042,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "hMI" = ( /obj/effect/decal/cleanable/dirt, @@ -18509,10 +15061,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "hMR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "hMT" = ( /obj/structure/surface/table/gamblingtable, @@ -18524,9 +15073,7 @@ "hNf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "hNj" = ( /obj/structure/machinery/door_control{ @@ -18542,10 +15089,7 @@ name = "Weyland classified intelligence folder"; pixel_y = -2 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "hNk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18556,17 +15100,13 @@ "hNt" = ( /obj/item/trash/uscm_mre, /obj/structure/surface/table/almayer, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "hNz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "hNF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18577,9 +15117,7 @@ dir = 1; name = "\improper Family Dormitories" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "hNP" = ( /obj/structure/platform{ @@ -18614,10 +15152,7 @@ /area/lv522/atmos/sewer) "hNZ" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "hOl" = ( /obj/structure/bed/bedroll{ @@ -18625,10 +15160,7 @@ }, /obj/item/trash/uscm_mre, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "hOy" = ( /obj/effect/decal{ @@ -18641,54 +15173,38 @@ /area/lv522/oob) "hOB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "hOG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/filt) "hOH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "hOI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/blocker/forcefield/vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) "hOK" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "hOL" = ( /obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "hON" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hPd" = ( /obj/structure/prop/vehicles/crawler{ @@ -18706,21 +15222,15 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hPz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) "hPI" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "hPM" = ( /obj/item/stack/sheet/metal, @@ -18753,9 +15263,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "hQE" = ( /obj/structure/machinery/power/apc/weak{ @@ -18764,10 +15272,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hQU" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -18777,19 +15282,13 @@ /area/lv522/outdoors/nw_rockies) "hRd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/command_centre) "hRj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "hRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18806,23 +15305,16 @@ "hRz" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "hRG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "hRW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) "hSi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -18834,24 +15326,15 @@ /obj/structure/cargo_container/kelland/left{ layer = 4.13 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/outdoors/colony_streets/north_east_street) "hSO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/command_centre) "hSQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) "hTd" = ( /obj/structure/window/reinforced{ @@ -18859,36 +15342,26 @@ layer = 3 }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/lv522/atmos/command_centre) "hTe" = ( /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) "hTg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hTh" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/west_reactor) "hTk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "hTo" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "hTA" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -18898,9 +15371,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "hTI" = ( /obj/effect/decal/warning_stripes{ @@ -18911,7 +15382,6 @@ /area/lv522/atmos/sewer) "hTW" = ( /obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "hTX" = ( @@ -18922,10 +15392,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hTY" = ( /obj/structure/machinery/light{ @@ -18933,18 +15400,14 @@ }, /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "hUq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "hUM" = ( /obj/structure/surface/table/almayer, @@ -18960,15 +15423,12 @@ pixel_x = 7; pixel_y = 7 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "hUY" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "hUZ" = ( /obj/structure/barricade/deployable, @@ -18983,25 +15443,18 @@ /area/lv522/atmos/sewer) "hVu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "hVw" = ( /obj/structure/window/framed/shiva, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/chunk) "hWs" = ( /obj/structure/stairs/perspective{ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hWz" = ( /obj/structure/platform, @@ -19019,16 +15472,11 @@ /obj/structure/prop/almayer/computers/sensor_computer2{ layer = 2.0 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "hWD" = ( /obj/structure/barricade/deployable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "hWI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19041,9 +15489,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/casino) "hWV" = ( /obj/structure/barricade/deployable, @@ -19065,9 +15511,7 @@ "hXA" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "hXO" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -19077,44 +15521,29 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "hXP" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob/w_y_vault) "hXW" = ( /obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "hXZ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" - }, +/turf/open/floor/almayer/w_y1/north, /area/lv522/oob/w_y_vault) "hYf" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "hYg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "hYk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, +/turf/open/floor/almayer/w_y2/north, /area/lv522/oob/w_y_vault) "hYn" = ( /obj/item/tool/pen/blue/clicky{ @@ -19128,16 +15557,11 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "hYL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "hYV" = ( /obj/effect/decal/cleanable/dirt, @@ -19152,18 +15576,13 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/prop/server_equipment/laptop/closed, /obj/structure/surface/table/almayer, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "hZn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "hZC" = ( /obj/structure/closet/crate, @@ -19194,17 +15613,12 @@ "hZO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "hZR" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "hZZ" = ( /obj/structure/barricade/deployable, @@ -19214,28 +15628,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "ial" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "sedimentation" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) "iam" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "iaM" = ( /obj/effect/decal/cleanable/dirt, @@ -19251,10 +15657,7 @@ /area/lv522/indoors/a_block/bridges) "ibk" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "ibu" = ( /obj/effect/spawner/gibspawner/xeno, @@ -19268,9 +15671,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "ibE" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -19279,9 +15680,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "ibT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "ibW" = ( /obj/structure/window/framed/strata/reinforced, @@ -19290,15 +15689,13 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "ica" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/alien/hugger, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "ici" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_4" @@ -19306,17 +15703,11 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "ick" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "icr" = ( /obj/structure/stairs/perspective{ @@ -19349,21 +15740,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "idk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/reactor_garage) "idn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/west) "idq" = ( /obj/structure/platform{ @@ -19379,10 +15763,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "idH" = ( /obj/item/device/flashlight/flare/on, @@ -19408,9 +15789,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "iel" = ( /obj/structure/blocker/invisible_wall, @@ -19425,9 +15804,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "ieE" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -19441,9 +15818,7 @@ pixel_x = -10; pixel_y = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "ieW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -19478,25 +15853,18 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "ifi" = ( /obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "ifw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "ifx" = ( /obj/structure/surface/rack, @@ -19524,10 +15892,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "igv" = ( /obj/structure/desertdam/decals/road_edge{ @@ -19549,22 +15914,14 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "igL" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "igT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/east_central_street) "iha" = ( /obj/structure/surface/table/almayer, @@ -19576,30 +15933,20 @@ pixel_y = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "ihd" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "ihf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "ihs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "ihy" = ( /obj/structure/barricade/deployable, @@ -19614,9 +15961,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "iiC" = ( /obj/structure/surface/table/almayer, @@ -19636,9 +15981,7 @@ pixel_x = -7; pixel_y = -2 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "iiE" = ( /obj/structure/stairs/perspective{ @@ -19651,9 +15994,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "iiV" = ( /obj/effect/decal/warning_stripes{ @@ -19678,10 +16019,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "ijE" = ( /obj/structure/barricade/wooden{ @@ -19689,26 +16027,18 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "ijJ" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "ijO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "ijR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19718,7 +16048,6 @@ /area/lv522/indoors/c_block/mining) "ikb" = ( /obj/structure/surface/rack, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "ike" = ( @@ -19730,23 +16059,17 @@ phone_id = "Colony Bar & Grill"; pixel_x = -16 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "ikr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "ikw" = ( /obj/item/stack/sheet/metal, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "ikT" = ( /obj/structure/window_frame/strata, @@ -19754,9 +16077,7 @@ icon_state = "medium" }, /obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) "ikZ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19776,9 +16097,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "ilK" = ( /obj/item/stack/sheet/metal, @@ -19786,10 +16105,7 @@ /area/lv522/outdoors/nw_rockies) "ilR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "ilU" = ( /obj/structure/prop/invuln{ @@ -19807,34 +16123,25 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "img" = ( /obj/effect/landmark/objective_landmark/medium, /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "imh" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "imJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "imT" = ( /obj/structure/stairs/perspective{ @@ -19850,11 +16157,7 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "inp" = ( /obj/item/prop/colony/used_flare, @@ -19869,9 +16172,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "inU" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/n_rockies) "iod" = ( /obj/structure/cargo_container/ferret/mid, @@ -19887,24 +16188,17 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "ioT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "ipf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/tool/weldingtool/simple, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "ipw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -19936,20 +16230,14 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/toilet) "ipN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) "iqa" = ( /obj/structure/bed/chair/comfy{ @@ -19966,17 +16254,12 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges) "iqt" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "iqw" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -19988,9 +16271,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iqQ" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -20012,16 +16293,12 @@ /area/lv522/landing_zone_2) "iqZ" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "irs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "irH" = ( /obj/structure/surface/table/woodentable/fancy, @@ -20031,15 +16308,12 @@ pixel_y = 17 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "irR" = ( /obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) "isa" = ( @@ -20051,16 +16325,11 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "iso" = ( /obj/structure/cargo_container/lockmart/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "iss" = ( /obj/item/prop/alien/hugger, @@ -20072,18 +16341,14 @@ dir = 8; id = "cargo_container" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "isA" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "isF" = ( /obj/structure/machinery/conveyor{ @@ -20093,46 +16358,32 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "isL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "iti" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "itl" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "itp" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "its" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "itz" = ( /obj/structure/largecrate/random/barrel/white, @@ -20144,9 +16395,7 @@ /area/lv522/atmos/cargo_intake) "itE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) "itG" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20168,18 +16417,14 @@ /obj/structure/machinery/microwave{ pixel_y = 18 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "iup" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "iuv" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -20190,40 +16435,28 @@ "iuy" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "iuC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/reactor_garage) "iuK" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "iuW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "ivb" = ( /obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "ivj" = ( @@ -20231,9 +16464,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ivk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20262,19 +16493,14 @@ /obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "iwb" = ( /obj/structure/stairs/perspective{ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "iwt" = ( /obj/structure/barricade/deployable, @@ -20296,9 +16522,7 @@ /area/lv522/indoors/c_block/cargo) "iwJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) "iwV" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -20313,16 +16537,12 @@ /area/lv522/outdoors/colony_streets/south_east_street) "ixf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) "ixs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "ixD" = ( /turf/open/floor/corsat, @@ -20346,94 +16566,69 @@ "ixV" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "ixW" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "iyl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) "iyq" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "iyt" = ( /obj/structure/stairs/perspective{ dir = 6; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "iyx" = ( /obj/item/stack/rods, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "iyC" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "iyE" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "iyQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "iyS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/reactor_garage) "iyT" = ( /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "izb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "izj" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -20442,17 +16637,12 @@ /obj/structure/flora/bush/ausbushes/reedbush{ pixel_y = 11 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "izn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "izp" = ( /obj/structure/surface/table/almayer, @@ -20462,10 +16652,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "izr" = ( /obj/structure/platform/stair_cut, @@ -20473,9 +16660,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/garage) "izz" = ( /obj/effect/decal/cleanable/greenglow, @@ -20487,16 +16672,11 @@ }, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "izY" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "iAv" = ( /turf/closed/wall/strata_outpost/reinforced, @@ -20513,9 +16693,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "iAZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -20526,16 +16704,12 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "iBl" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "iBo" = ( /obj/structure/surface/rack, @@ -20543,9 +16717,7 @@ /obj/item/clothing/under/overalls, /obj/item/clothing/under/overalls, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "iBr" = ( /obj/structure/bed/chair/comfy{ @@ -20556,25 +16728,19 @@ /area/lv522/indoors/a_block/admin) "iBs" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "iBI" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iBQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/t_comm) "iBY" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -20599,24 +16765,18 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iCC" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "iCR" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "iCS" = ( /obj/item/stack/sheet/metal, @@ -20627,15 +16787,11 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "iDg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iDC" = ( /obj/item/clothing/head/helmet/marine/grenadier{ @@ -20645,9 +16801,7 @@ pixel_x = 3; pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "iDD" = ( /obj/item/stack/tile/plasteel{ @@ -20665,47 +16819,31 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "iEn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/reactor_garage) "iEq" = ( /obj/structure/cargo_container/lockmart/mid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "iFk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "iFB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iFN" = ( /obj/item/explosive/mine/active, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "iFO" = ( /obj/structure/surface/rack, /obj/item/clothing/under/colonist, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "iFV" = ( /obj/structure/surface/table/almayer, @@ -20716,18 +16854,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iGc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "iGk" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, @@ -20744,10 +16878,7 @@ /obj/item/spacecash/c1000, /obj/item/spacecash/c1000, /obj/item/spacecash/c1000, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "iGn" = ( /obj/structure/largecrate/random/barrel{ @@ -20762,9 +16893,7 @@ /area/lv522/indoors/a_block/bridges/op_centre) "iGr" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "iGD" = ( /obj/structure/tunnel/maint_tunnel{ @@ -20772,16 +16901,13 @@ }, /obj/structure/machinery/light/small, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "iGF" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "iGK" = ( /obj/effect/decal/warning_stripes{ @@ -20791,19 +16917,14 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) "iGM" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "iGQ" = ( /obj/structure/surface/table/almayer, @@ -20811,15 +16932,11 @@ pixel_x = 7; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "iHg" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "iHl" = ( /obj/structure/surface/table/reinforced/prison, @@ -20834,9 +16951,7 @@ icon_state = "alert:2"; name = "inventory computer" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "iHw" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -20845,9 +16960,7 @@ /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "iHD" = ( /obj/item/prop/alien/hugger, @@ -20865,7 +16978,6 @@ pixel_x = -6; pixel_y = 6 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "iIs" = ( @@ -20874,9 +16986,7 @@ /area/lv522/indoors/a_block/admin) "iIt" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "iIw" = ( /obj/structure/stairs/perspective{ @@ -20890,10 +17000,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "iIK" = ( /obj/structure/foamed_metal, @@ -20915,10 +17022,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "iJu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20932,15 +17036,11 @@ dir = 8; req_one_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "iJA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "iJE" = ( /obj/effect/decal/cleanable/dirt, @@ -20961,17 +17061,11 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "iJW" = ( /obj/structure/bed/sofa/vert/white/top, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "iJZ" = ( /obj/effect/decal/cleanable/blood, @@ -20988,15 +17082,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) "iKC" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/command_centre) "iKF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21005,15 +17094,10 @@ "iKJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "iKN" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) "iKY" = ( /obj/effect/decal/warning_stripes{ @@ -21027,9 +17111,7 @@ /area/lv522/outdoors/colony_streets/south_west_street) "iLc" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "iLg" = ( /obj/structure/surface/table/reinforced/prison, @@ -21037,28 +17119,20 @@ pixel_y = 8 }, /obj/item/tool/pen/clicky, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "iLn" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/reactor_garage) "iLq" = ( /obj/structure/surface/table/almayer{ dir = 1; flipped = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "iLC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21083,9 +17157,7 @@ /area/lv522/indoors/a_block/executive) "iMx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "iMC" = ( /obj/effect/decal/warning_stripes{ @@ -21100,26 +17172,18 @@ "iMQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "iMS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) "iMU" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "iNb" = ( /obj/structure/barricade/wooden{ @@ -21131,23 +17195,15 @@ icon_state = "medium" }, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "iNs" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/outdoors/colony_streets/north_east_street) "iNX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security/glass) "iOi" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -21156,10 +17212,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) "iOl" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/cargo_intake) "iOt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21167,9 +17220,7 @@ }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "iOw" = ( /obj/item/storage/toolbox/electrical{ @@ -21179,29 +17230,18 @@ pixel_x = -11; pixel_y = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "iOx" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor) "iOG" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/cargo_intake) "iOO" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "iOY" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -21225,10 +17265,7 @@ /area/lv522/outdoors/nw_rockies) "iPb" = ( /obj/structure/cargo_container/lockmart/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "iPu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -21243,18 +17280,14 @@ welded = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "iPD" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ id = "West LZ Storage"; name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) "iPO" = ( /obj/structure/surface/table/almayer, @@ -21263,35 +17296,23 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "iPR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "iPV" = ( /obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "iPZ" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "iQb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/atmos/way_in_command_centre) "iQe" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/south) "iQo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21307,10 +17328,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "iQL" = ( /obj/structure/bed/bedroll{ @@ -21323,17 +17341,12 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "iRa" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "iRl" = ( /obj/item/prop/colony/used_flare, @@ -21352,24 +17365,17 @@ }, /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "iRY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "iSc" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "iSf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -21384,10 +17390,7 @@ /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "iTf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -21402,9 +17405,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "iTn" = ( /obj/structure/closet/crate/freezer{ @@ -21446,9 +17447,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "iTS" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -21470,23 +17469,16 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "iTY" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "iUj" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "iUk" = ( /obj/structure/prop/dam/drill{ @@ -21498,10 +17490,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "iUo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/lv522/indoors/a_block/dorms) "iUT" = ( /obj/structure/machinery/squeezer, @@ -21517,18 +17506,13 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "iVk" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_street) "iVm" = ( /obj/item/storage/backpack/marine/satchel{ @@ -21545,15 +17529,11 @@ /obj/structure/machinery/sensortower{ pixel_x = 6 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/lv522/indoors/a_block/admin) "iVU" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_street) "iVY" = ( /obj/effect/decal/cleanable/dirt, @@ -21563,32 +17543,23 @@ pixel_y = 26 }, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "iWc" = ( /obj/structure/filtration/machine_64x96{ icon_state = "filtration_machine_A_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) "iWg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "iWh" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) "iWo" = ( /obj/effect/spawner/gibspawner/xeno, @@ -21600,30 +17571,20 @@ }, /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "iWu" = ( /obj/structure/filtration/machine_64x96{ icon_state = "filtration_machine_B_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) "iWy" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "iWz" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "iWN" = ( /obj/structure/platform_decoration{ @@ -21636,10 +17597,7 @@ dir = 8; id = "cargo_container" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "iXy" = ( /obj/structure/largecrate/random/mini/med{ @@ -21673,17 +17631,12 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "iYc" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "iYf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21692,9 +17645,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_west_street) "iYm" = ( /obj/structure/barricade/deployable, @@ -21705,10 +17656,7 @@ dir = 8; id = "cargo_container" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) "iYt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -21722,15 +17670,11 @@ dir = 8; id = "cargo_container" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "iYG" = ( /obj/item/stack/sandbags_empty/small_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "iYL" = ( /obj/structure/machinery/conveyor{ @@ -21740,9 +17684,7 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "iYO" = ( /obj/structure/surface/table/almayer, @@ -21756,17 +17698,13 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "iZg" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "iZI" = ( /turf/open/floor/corsat, @@ -21777,9 +17715,7 @@ /area/lv522/atmos/way_in_command_centre) "jab" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "jaq" = ( /obj/structure/platform_decoration{ @@ -21803,9 +17739,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "jaO" = ( /obj/structure/surface/table/woodentable/fancy, @@ -21839,9 +17773,7 @@ }, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "jba" = ( /obj/structure/stairs/perspective{ @@ -21852,21 +17784,17 @@ dir = 8 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "jbd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "jbm" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "jbn" = ( /obj/effect/decal/cleanable/dirt, @@ -21877,10 +17805,7 @@ /area/lv522/atmos/way_in_command_centre) "jbs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "jbv" = ( /obj/structure/fence{ @@ -21893,10 +17818,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/central_streets) "jbI" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -21913,35 +17835,24 @@ /obj/structure/pipes/standard/simple/visible{ dir = 6 }, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) "jci" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/cargo_intake) "jcl" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "jcq" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jct" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges) "jcH" = ( /obj/effect/spawner/gibspawner/human, @@ -21949,25 +17860,17 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "jdf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/t_comm) "jdl" = ( /obj/structure/surface/table/almayer, /obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jdn" = ( /obj/effect/decal/cleanable/blood/drip, @@ -21977,61 +17880,43 @@ "jdo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/t_comm) "jdq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) "jds" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jdv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/outdoor) "jdD" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jeb" = ( /obj/vehicle/powerloader{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "jef" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor/south) "jey" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "jeD" = ( /obj/structure/stairs/perspective{ @@ -22047,28 +17932,19 @@ /obj/structure/machinery/light, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "jeI" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "jeJ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "jft" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "jfx" = ( /obj/structure/filingcabinet{ @@ -22084,9 +17960,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "jfG" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -22097,9 +17971,7 @@ pixel_x = -4; pixel_y = -7 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "jfH" = ( /obj/effect/decal/warning_stripes{ @@ -22109,9 +17981,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "jfK" = ( /obj/structure/stairs/perspective{ @@ -22146,25 +18016,18 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "jgI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "jgV" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/accessory/poncho, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "jhe" = ( /obj/effect/decal/warning_stripes{ @@ -22176,9 +18039,7 @@ /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "jhl" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -22193,10 +18054,7 @@ dir = 4 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "jhQ" = ( /obj/effect/decal/warning_stripes{ @@ -22208,10 +18066,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "jhS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor) "jhY" = ( /obj/structure/platform{ @@ -22236,28 +18091,20 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "jin" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "sedimentation_A_1"; layer = 3.1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) "jis" = ( /obj/structure/filtration/machine_64x128{ icon_state = "filtration_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) "jix" = ( /obj/structure/platform_decoration{ @@ -22269,9 +18116,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "jiF" = ( /obj/structure/stairs/perspective{ @@ -22279,10 +18124,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jiP" = ( /obj/structure/surface/table/almayer, @@ -22310,10 +18152,7 @@ icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/nw_rockies) "jiY" = ( /obj/effect/decal/cleanable/blood/oil, @@ -22324,27 +18163,19 @@ /area/lv522/atmos/cargo_intake) "jjg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "jjj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Reactor_garage_2" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "jjl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "jjo" = ( /obj/structure/surface/table/almayer, @@ -22359,18 +18190,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jjq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "jjt" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -22387,10 +18214,7 @@ icon_state = "medium" }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "jjG" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -22407,16 +18231,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jjV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jjW" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -22426,9 +18246,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "jkp" = ( /obj/structure/fence{ @@ -22441,10 +18259,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/south_west_street) "jkC" = ( /obj/structure/pipes/vents/pump, @@ -22462,10 +18277,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "jlc" = ( /obj/structure/surface/rack, @@ -22485,16 +18297,11 @@ pixel_y = -2 }, /obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jlh" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jll" = ( /obj/structure/machinery/light{ @@ -22506,14 +18313,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "jlr" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, +/turf/open/floor/coagulation/icon0_8, /area/lv522/oob) "jlu" = ( /obj/structure/surface/table/almayer, @@ -22521,31 +18324,21 @@ dir = 1; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "jmd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "jmi" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "jmv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jmz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22572,9 +18365,7 @@ /area/lv522/outdoors/w_rockies) "jmU" = ( /obj/structure/barricade/handrail, -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, +/turf/open/floor/coagulation/icon4_8, /area/lv522/oob) "jmW" = ( /obj/item/prop/colony/used_flare, @@ -22585,33 +18376,23 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) "jmX" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/reactor_garage) "jnb" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "jnd" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "jnk" = ( /obj/structure/bed/chair{ @@ -22620,19 +18401,14 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) "jnp" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, +/turf/open/floor/coagulation/icon8_8, /area/lv522/oob) "jnr" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "jnB" = ( /obj/structure/barricade/handrail{ @@ -22647,9 +18423,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/generic, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "jnF" = ( /obj/effect/decal/warning_stripes{ @@ -22661,10 +18435,7 @@ "joe" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "jom" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -22678,9 +18449,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "joJ" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "joK" = ( /obj/structure/window/reinforced{ @@ -22699,10 +18468,7 @@ pixel_x = -8; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/oob) "joL" = ( /obj/structure/platform{ @@ -22716,19 +18482,14 @@ phone_id = "Colony Garage"; pixel_x = -16 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "jpa" = ( /obj/structure/bedsheetbin{ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "jpc" = ( /obj/effect/spawner/gibspawner/xeno, @@ -22737,9 +18498,7 @@ "jpm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jpx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -22752,35 +18511,24 @@ dir = 4 }, /mob/living/simple_animal/corgi/puppy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "jqa" = ( /obj/structure/ore_box, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "jqr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_east_street) "jqz" = ( /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "jqF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_west_street) "jqL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "jqO" = ( /obj/structure/platform{ @@ -22797,16 +18545,12 @@ /area/lv522/outdoors/colony_streets/central_streets) "jri" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "jrn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "jro" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -22821,9 +18565,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "jru" = ( /obj/structure/platform{ @@ -22837,9 +18579,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "jrD" = ( /obj/structure/surface/table/almayer, @@ -22849,9 +18589,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "jrE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -22861,9 +18599,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "jrJ" = ( /obj/effect/decal/cleanable/dirt, @@ -22876,10 +18612,7 @@ pixel_x = 3; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "jrL" = ( /obj/item/stack/sheet/metal, @@ -22889,9 +18622,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "jrT" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -22902,9 +18633,7 @@ name = "\improper A-Block Dorms And Office Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "jsy" = ( /obj/structure/machinery/conveyor{ @@ -22912,9 +18641,7 @@ id = "cargo_container" }, /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "jsD" = ( /obj/effect/decal/warning_stripes{ @@ -22937,9 +18664,7 @@ /area/lv522/atmos/cargo_intake) "jtf" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jtg" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -22948,10 +18673,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "jth" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/west) "jtu" = ( /obj/structure/barricade/deployable, @@ -22962,25 +18684,18 @@ /area/lv522/atmos/cargo_intake) "jtQ" = ( /obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jtZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "jud" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/lv522/indoors/a_block/admin) "jue" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -22995,9 +18710,7 @@ pixel_x = -10; pixel_y = 11 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "jus" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -23011,18 +18724,12 @@ /area/lv522/outdoors/nw_rockies) "juw" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "juQ" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "juY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23040,9 +18747,7 @@ /area/lv522/atmos/cargo_intake) "jvh" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "jvk" = ( /obj/structure/surface/table/woodentable/fancy, @@ -23095,22 +18800,18 @@ pixel_x = -9; pixel_y = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "jvG" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "jwx" = ( /obj/structure/reagent_dispensers/fueltank/gas, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "jwM" = ( /obj/effect/decal/cleanable/dirt, @@ -23123,15 +18824,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) "jwT" = ( /obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jwV" = ( /obj/structure/filingcabinet{ @@ -23154,9 +18851,7 @@ /obj/item/tool/mop{ pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jxz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23167,9 +18862,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "jxD" = ( /obj/structure/platform, @@ -23183,7 +18876,6 @@ /area/lv522/landing_zone_2) "jxF" = ( /obj/structure/largecrate/guns/russian, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "jxI" = ( @@ -23200,9 +18892,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "jyf" = ( /obj/structure/machinery/colony_floodlight{ @@ -23214,17 +18904,11 @@ "jyw" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "jyx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "jyC" = ( /obj/structure/machinery/light{ @@ -23232,18 +18916,14 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "jyF" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "jyM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23260,9 +18940,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "jzB" = ( /obj/effect/decal/cleanable/dirt, @@ -23276,9 +18954,7 @@ pixel_x = 1 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "jzC" = ( /obj/effect/decal/cleanable/dirt, @@ -23363,14 +19039,11 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "jBm" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jBr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23382,28 +19055,20 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "jBs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "jBu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "jBw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23420,10 +19085,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "jBR" = ( /obj/structure/bed/chair{ @@ -23442,9 +19104,7 @@ /area/lv522/outdoors/colony_streets/north_street) "jBY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/lv522/atmos/way_in_command_centre) "jCb" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -23466,26 +19126,19 @@ /area/lv522/outdoors/nw_rockies) "jCh" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel) "jCq" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jCQ" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "jCS" = ( /obj/item/trash/wy_chips_pepper, @@ -23493,10 +19146,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "jCU" = ( /obj/structure/stairs/perspective{ @@ -23511,17 +19161,12 @@ pixel_y = 8 }, /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/admin) "jCY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "jDc" = ( /obj/structure/stairs/perspective{ @@ -23531,9 +19176,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "jDy" = ( /obj/structure/stairs/perspective{ @@ -23543,9 +19186,7 @@ /obj/structure/platform/stair_cut{ icon_state = "platform_stair_alt" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "jDA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -23580,9 +19221,7 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "jEk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23592,15 +19231,11 @@ }, /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jEq" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jEu" = ( /obj/structure/sign/safety/rad_haz, @@ -23617,9 +19252,7 @@ pixel_y = 26 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jEW" = ( /obj/structure/bed/chair{ @@ -23642,9 +19275,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "jFc" = ( /obj/item/tool/wrench, @@ -23657,7 +19288,7 @@ icon_state = "p_stair_full" }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "jFr" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/floor/prison, @@ -23666,17 +19297,11 @@ /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "jFC" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "jFG" = ( /obj/structure/cargo_container/arious/right, @@ -23712,18 +19337,13 @@ "jGj" = ( /obj/effect/decal/cleanable/dirt, /obj/item/maintenance_jack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "jGm" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/lv522/oob) "jGp" = ( /obj/structure/platform{ @@ -23756,9 +19376,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "jHm" = ( /obj/structure/surface/table/reinforced/prison, @@ -23767,10 +19385,7 @@ pixel_y = 6 }, /obj/item/clothing/suit/storage/jacket/marine/corporate, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "jHy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -23781,19 +19396,14 @@ dir = 8; name = "\improper Dormitories" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "jHR" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 1; pixel_y = 26 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "jIk" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -23805,9 +19415,7 @@ /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "jIG" = ( /obj/item/tool/wet_sign{ @@ -23820,16 +19428,11 @@ pixel_y = 21 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "jII" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/n_rockies) "jIQ" = ( /obj/structure/machinery/colony_floodlight{ @@ -23845,17 +19448,12 @@ /turf/open/gm/river, /area/lv522/oob) "jJa" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/north_command_centre) "jJc" = ( /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "jJh" = ( /obj/structure/surface/table/almayer, @@ -23870,25 +19468,18 @@ /obj/item/reagent_container/food/snacks/grilledcheese{ pixel_y = 27 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "jJi" = ( /obj/structure/machinery/iv_drip, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "jJj" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/lv522/oob) "jJF" = ( /obj/effect/decal/cleanable/dirt, @@ -23899,24 +19490,17 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) "jJO" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/filt) "jKa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "jKb" = ( /obj/structure/platform{ @@ -23925,39 +19509,29 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "jKm" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "jKo" = ( /obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "jKu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "jKB" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_east_street) "jLf" = ( /obj/item/shard{ @@ -23966,25 +19540,18 @@ /obj/item/stack/rods, /obj/item/stack/sheet/metal, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "jLk" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "jLD" = ( /obj/item/stack/sheet/wood, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "jLF" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24004,20 +19571,14 @@ name = "supply crate" }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "jMr" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "jMv" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -24048,10 +19609,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/reactor_garage) "jMZ" = ( /obj/structure/surface/table/almayer, @@ -24067,10 +19625,7 @@ /area/lv522/indoors/a_block/dorms) "jNv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "jNQ" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -24079,9 +19634,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "jNV" = ( /obj/structure/surface/table/almayer, @@ -24093,10 +19646,7 @@ pixel_x = -2; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "jNY" = ( /obj/structure/surface/table/reinforced/prison, @@ -24106,10 +19656,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "jOh" = ( /obj/structure/platform{ @@ -24128,9 +19675,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "jOw" = ( /obj/item/storage/backpack/marine/satchel{ @@ -24164,9 +19709,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "jOF" = ( /obj/effect/acid_hole, @@ -24187,7 +19730,6 @@ dir = 5; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "jPj" = ( @@ -24199,9 +19741,7 @@ pixel_x = 3 }, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "jPk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24209,15 +19749,10 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "jPv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/central_streets) "jPw" = ( /turf/open/floor/plating, @@ -24227,9 +19762,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "jPC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -24252,11 +19785,7 @@ "jQC" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "jRc" = ( /obj/structure/machinery/disposal, @@ -24272,9 +19801,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jRZ" = ( /obj/structure/largecrate/random, @@ -24288,32 +19815,23 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jSC" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "jSR" = ( /obj/structure/machinery/conveyor, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "jSU" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "jSW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -24323,10 +19841,7 @@ icon_state = "fernybush_2"; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jTb" = ( /obj/structure/bed/chair/comfy{ @@ -24335,33 +19850,24 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jTi" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jTl" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) "jTr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "jTx" = ( /obj/structure/cable/heavyduty{ @@ -24373,9 +19879,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "jTH" = ( /obj/effect/decal/warning_stripes{ @@ -24390,17 +19894,13 @@ /area/lv522/outdoors/colony_streets/south_west_street) "jTJ" = ( /obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "jTS" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/apc, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "jUc" = ( /obj/structure/largecrate/random, @@ -24411,9 +19911,7 @@ /obj/structure/barricade/metal{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "jUe" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -24426,10 +19924,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "jUk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "jUn" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -24442,32 +19937,23 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "jUy" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "jUI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "jUO" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 5; pixel_x = 15 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/east_central_street) "jUW" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -24480,9 +19966,7 @@ pixel_x = -10; pixel_y = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "jUY" = ( /obj/structure/machinery/door_control/brbutton{ @@ -24492,9 +19976,7 @@ /area/lv522/atmos/reactor_garage) "jVa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "jVq" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ @@ -24509,16 +19991,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "jVC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jVH" = ( /obj/item/paper{ @@ -24535,9 +20013,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "jVS" = ( /obj/structure/cargo_container/horizontal/blue/top, @@ -24560,50 +20036,33 @@ "jWr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) "jWB" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "jWV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "jWX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "jWZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "jXc" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "jXp" = ( /obj/structure/prop/invuln/rope{ @@ -24629,9 +20088,7 @@ /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "jYj" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -24642,9 +20099,7 @@ /obj/structure/tunnel/maint_tunnel{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "jYr" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -24667,31 +20122,23 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jYF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "jYK" = ( /obj/structure/stairs/perspective{ dir = 6; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "jYZ" = ( /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "jZc" = ( /obj/structure/flora/jungle/thickbush, @@ -24702,10 +20149,7 @@ dir = 8 }, /obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "jZo" = ( /obj/structure/desertdam/decals/road_edge{ @@ -24715,15 +20159,10 @@ /area/lv522/indoors/a_block/fitness/glass) "jZA" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "jZD" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "jZE" = ( /obj/structure/platform_decoration{ @@ -24736,9 +20175,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "jZS" = ( /obj/structure/filtration/collector_pipes{ @@ -24747,23 +20184,15 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/lv522/oob) "kaD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "kaQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "kaV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -24776,9 +20205,7 @@ "kaX" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "kba" = ( /obj/structure/filtration/collector_pipes{ @@ -24796,22 +20223,15 @@ "kbg" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/filt) "kbn" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/outdoors/colony_streets/north_east_street) "kbo" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "kbq" = ( @@ -24822,20 +20242,16 @@ dir = 8; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "kbu" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "kbF" = ( /obj/structure/surface/table/almayer, /obj/item/cpr_dummy, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "kbH" = ( /obj/effect/decal/cleanable/dirt, @@ -24846,10 +20262,7 @@ /area/lv522/outdoors/colony_streets/windbreaker/observation) "kbJ" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/filt) "kbM" = ( /obj/structure/filtration/collector_pipes{ @@ -24860,9 +20273,7 @@ dir = 4 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, +/turf/open/floor/coagulation/icon0_5, /area/lv522/oob) "kbS" = ( /obj/item/shard{ @@ -24871,14 +20282,10 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) "kbV" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "kca" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/east) "kcb" = ( /turf/closed/wall/mineral/bone_resin, @@ -24897,9 +20304,7 @@ "kck" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "kco" = ( /obj/structure/platform{ @@ -24911,9 +20316,7 @@ "kcv" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "kcw" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -24922,10 +20325,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "kcC" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -24955,9 +20355,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "kcS" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kcY" = ( /obj/structure/surface/table/almayer, @@ -24965,10 +20363,7 @@ /area/lv522/indoors/a_block/admin) "kda" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "kdf" = ( /obj/structure/stairs/perspective{ @@ -24988,9 +20383,7 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "kdm" = ( /obj/structure/cargo_container/wy/right, @@ -25014,9 +20407,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "kdw" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -25028,9 +20419,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "kdx" = ( /obj/structure/largecrate/random/barrel/green, @@ -25060,9 +20449,7 @@ dir = 8 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, +/turf/open/floor/coagulation/icon8_3, /area/lv522/oob) "keq" = ( /obj/structure/platform_decoration{ @@ -25080,10 +20467,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "kfq" = ( /obj/item/lightstick/red/spoke/planted{ @@ -25097,9 +20481,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "kfu" = ( /obj/structure/machinery/conveyor{ @@ -25107,17 +20489,12 @@ id = "cargo_container" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "kfv" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "kfw" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -25126,29 +20503,20 @@ /obj/structure/flora/bush{ pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "kfA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "kfD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/kitchen) "kfF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kfG" = ( /obj/structure/prop/dam/crane/cargo{ @@ -25163,9 +20531,7 @@ /area/lv522/landing_zone_2) "kgb" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kgm" = ( /obj/structure/surface/table/almayer, @@ -25174,9 +20540,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "kgC" = ( /obj/structure/machinery/conveyor{ @@ -25187,56 +20551,39 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "kgQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "kgR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "khf" = ( /obj/structure/prop/server_equipment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/outdoor_bot) "khm" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "kho" = ( /obj/structure/dispenser, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "khx" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "khz" = ( /obj/item/trash/uscm_mre, @@ -25268,9 +20615,7 @@ pixel_x = -1; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "kib" = ( /obj/item/clothing/head/hardhat/white, @@ -25278,9 +20623,7 @@ pixel_x = 11; pixel_y = -9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kie" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25292,9 +20635,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "kih" = ( /obj/structure/machinery/conveyor{ @@ -25304,10 +20645,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "kiD" = ( /obj/structure/machinery/conveyor{ @@ -25315,10 +20653,7 @@ id = "cargo_container" }, /obj/structure/largecrate/random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/cargo_intake) "kiE" = ( /obj/structure/barricade/wooden{ @@ -25327,23 +20662,16 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "kiG" = ( /obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "kiO" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "kiQ" = ( /obj/structure/bed{ @@ -25355,9 +20683,7 @@ pixel_y = 25 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kiT" = ( /obj/item/stack/medical/bruise_pack, @@ -25372,10 +20698,7 @@ pixel_x = -11; pixel_y = 23 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "kjj" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -25404,37 +20727,27 @@ dir = 1 }, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "kjU" = ( /obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kkc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "kkq" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "kkr" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kky" = ( /obj/structure/cable/heavyduty{ @@ -25452,43 +20765,29 @@ pixel_y = 14 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kkP" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "kkR" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "kkS" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/cash_register/off/open{ pixel_y = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "kkZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/north_command_centre) "klj" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/outdoor) "kll" = ( /obj/structure/cable/heavyduty{ @@ -25501,25 +20800,18 @@ dir = 8 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "klx" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "klz" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "klL" = ( /obj/structure/machinery/microwave, @@ -25529,9 +20821,7 @@ /obj/item/trash/ceramic_plate{ pixel_y = 21 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "klW" = ( /obj/effect/decal/cleanable/blood/oil, @@ -25547,9 +20837,7 @@ /area/lv522/atmos/west_reactor) "kmg" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kmq" = ( /obj/structure/machinery/colony_floodlight{ @@ -25560,10 +20848,7 @@ "kms" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "kmw" = ( /obj/effect/decal/warning_stripes{ @@ -25574,16 +20859,11 @@ pixel_x = -12; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "kmz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/north_command_centre) "kmE" = ( /obj/structure/desertdam/decals/road_edge{ @@ -25606,25 +20886,19 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "kmH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "kmP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "kmY" = ( /obj/structure/surface/table/almayer, @@ -25642,32 +20916,23 @@ pixel_x = -7 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kne" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "kni" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "knt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "knN" = ( /obj/structure/stairs/perspective{ @@ -25675,18 +20940,13 @@ icon_state = "p_stair_full" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "knS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "knT" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ @@ -25704,10 +20964,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "koj" = ( /obj/structure/pipes/vents/pump, @@ -25729,17 +20986,13 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "koG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/corpo) "koM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25748,19 +21001,13 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "kpo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/east_reactor/south) "kpu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "kpB" = ( /obj/structure/barricade/handrail{ @@ -25778,16 +21025,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "kpG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) "kpN" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -25801,18 +21043,13 @@ "kqa" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/full, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/filt) "kqb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen) "kqp" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_east_street) "kqJ" = ( /obj/structure/barricade/wooden{ @@ -25829,18 +21066,13 @@ /area/lv522/outdoors/colony_streets/north_east_street) "kqX" = ( /obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kri" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/reactor_garage) "krj" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -25849,9 +21081,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "krm" = ( /obj/structure/surface/table/almayer{ @@ -25869,10 +21099,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) "krH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/outdoors/colony_streets/north_east_street) "krK" = ( /obj/effect/decal/cleanable/dirt, @@ -25881,16 +21108,11 @@ /area/lv522/indoors/a_block/admin) "krN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "krP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/northeast, /area/lv522/indoors/a_block/medical/glass) "ksa" = ( /obj/structure/surface/table/almayer, @@ -25898,9 +21120,7 @@ pixel_y = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ksf" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -25916,23 +21136,16 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ksm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/north_command_centre) "kss" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "ksA" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "ksO" = ( /obj/effect/decal/warning_stripes{ @@ -25949,9 +21162,7 @@ /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "kti" = ( /obj/structure/platform, @@ -25978,9 +21189,7 @@ /obj/effect/landmark/objective_landmark/close, /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/large_stack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "kug" = ( /obj/structure/closet/crate/trashcart, @@ -26003,24 +21212,16 @@ pixel_y = -3 }, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "kun" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "kup" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "kuD" = ( /obj/effect/decal/cleanable/blood, @@ -26032,9 +21233,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "kvc" = ( /obj/structure/cargo_container/horizontal/blue/middle, @@ -26050,9 +21249,7 @@ "kvq" = ( /obj/structure/window_frame/strata/reinforced, /obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "kvJ" = ( /obj/structure/surface/table/almayer, @@ -26063,26 +21260,19 @@ pixel_x = 3; pixel_y = 11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "kvM" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "kwc" = ( /obj/structure/stairs/perspective{ dir = 6; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "kwg" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -26093,9 +21283,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "kwo" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "kwt" = ( /obj/structure/platform, @@ -26124,15 +21312,11 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "kxm" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "kxq" = ( /obj/structure/surface/table/reinforced/prison, @@ -26147,28 +21331,18 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "kxH" = ( /obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "kxW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/lv522/indoors/a_block/dorms) "kyb" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/cargo_intake) "kyo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26182,9 +21356,7 @@ pixel_x = -14; pixel_y = -2 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kyB" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26208,40 +21380,28 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "kyK" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/cargo_intake) "kzc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kzd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "kze" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "kzk" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -26270,18 +21430,13 @@ /area/lv522/outdoors/colony_streets/east_central_street) "kzG" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "kzR" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Bathroom" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "kzT" = ( /turf/open/floor/prison, @@ -26289,9 +21444,7 @@ "kAf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "kAj" = ( /obj/structure/bed/chair/comfy, @@ -26302,22 +21455,16 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "kAG" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) "kAI" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "kBj" = ( /obj/structure/cargo_container/horizontal/blue/top, @@ -26333,10 +21480,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) "kBq" = ( /obj/structure/girder, @@ -26371,9 +21515,7 @@ /area/lv522/outdoors/w_rockies) "kBJ" = ( /obj/item/prop/colony/canister, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kBK" = ( /obj/structure/stairs/perspective{ @@ -26385,9 +21527,7 @@ "kBL" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kBT" = ( /obj/structure/cargo_container/horizontal/blue/bottom, @@ -26398,9 +21538,7 @@ /obj/item/tool/pen/blue/clicky, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "kCf" = ( /obj/item/prop/colony/proptag{ @@ -26409,10 +21547,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "kCC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26422,17 +21557,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "kCD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) "kCF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -26444,16 +21575,12 @@ /area/lv522/outdoors/colony_streets/north_west_street) "kCJ" = ( /obj/structure/cargo_container/ferret/left, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_west_street) "kCM" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kCN" = ( /obj/structure/surface/table/almayer, @@ -26465,32 +21592,23 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kDH" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kDQ" = ( /obj/item/prop/colony/usedbandage{ dir = 9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "kDU" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "kDY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26514,9 +21632,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "kEj" = ( /obj/effect/decal/cleanable/dirt, @@ -26527,35 +21643,27 @@ dir = 4 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "kEo" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/east_central_street) "kEx" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" }, /obj/structure/platform/stair_cut/alt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "kEA" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "kEL" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "kEN" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -26577,29 +21685,20 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "kEQ" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/bridge) "kEW" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "kEZ" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/central_streets) "kFd" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -26619,10 +21718,7 @@ /area/lv522/oob) "kFx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 6; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southeast, /area/lv522/indoors/a_block/medical) "kFB" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, @@ -26632,9 +21728,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) "kFP" = ( /obj/structure/platform/strata{ @@ -26661,10 +21755,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "kGX" = ( /obj/structure/tunnel, @@ -26674,10 +21765,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" - }, +/turf/open/floor/almayer/w_y0/north, /area/lv522/atmos/way_in_command_centre) "kHy" = ( /obj/structure/surface/table/almayer, @@ -26685,9 +21773,7 @@ pixel_x = -5; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "kHP" = ( /obj/effect/decal/cleanable/dirt, @@ -26699,17 +21785,22 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"kHW" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "kHX" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_street) "kHZ" = ( /obj/structure/surface/table/almayer, @@ -26723,18 +21814,13 @@ layer = 3.1 }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "kId" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "kIj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26747,10 +21833,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "kIs" = ( /obj/effect/decal/warning_stripes{ @@ -26764,10 +21847,7 @@ /obj/item/ammo_magazine/rifle/m4ra/ap{ current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) "kIV" = ( /obj/effect/decal/warning_stripes{ @@ -26782,9 +21862,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "kJb" = ( /obj/structure/surface/table/almayer, @@ -26796,9 +21874,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kJc" = ( /obj/structure/surface/table/almayer, @@ -26807,22 +21883,16 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "kJh" = ( /obj/item/stack/rods, /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "kJv" = ( /obj/structure/largecrate/random/mini, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "kJO" = ( /obj/effect/decal/cleanable/blood/oil, @@ -26832,10 +21902,7 @@ /obj/structure/filtration/machine_96x96{ icon_state = "disinfection" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) "kKc" = ( /obj/structure/toilet{ @@ -26846,50 +21913,35 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "kKh" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, +/turf/open/floor/coagulation/icon2_0, /area/lv522/oob) "kKj" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/north_east_street) "kKD" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "kKR" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/dorms) "kLc" = ( /obj/item/clothing/head/hardhat, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "kLe" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kLs" = ( /obj/item/clothing/mask/facehugger{ @@ -26899,17 +21951,13 @@ name = "????"; stat = 2 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "kLO" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "kMi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -26940,10 +21988,7 @@ pixel_x = 8; pixel_y = 11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "kMN" = ( /obj/item/reagent_container/food/drinks/flask/marine, @@ -26951,10 +21996,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "kNe" = ( /obj/item/shard{ @@ -26967,24 +22009,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "kNL" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/gloves/yellow, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "kNR" = ( /obj/structure/closet/crate/explosives, /obj/item/storage/box/explosive_mines, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "kNY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -26992,9 +22027,7 @@ name = "\improper A-Block Dorms And Office Airlock"; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "kOa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27008,16 +22041,12 @@ pixel_x = -13; pixel_y = -9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/t_comm) "kOz" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "kOE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27030,9 +22059,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "kOJ" = ( /obj/structure/machinery/conveyor{ @@ -27042,9 +22069,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "kOQ" = ( /obj/structure/machinery/conveyor{ @@ -27066,18 +22091,13 @@ /area/lv522/atmos/cargo_intake) "kOV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "kPG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "kPJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -27087,10 +22107,7 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "kPO" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -27104,29 +22121,21 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "kPV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kQc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "kQw" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/cargo_intake) "kQJ" = ( /obj/item/explosive/mine/active{ @@ -27144,10 +22153,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/cargo_intake) "kQS" = ( /obj/item/stack/tile/plasteel{ @@ -27168,10 +22174,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/cargo_intake) "kRb" = ( /obj/item/weapon/telebaton, @@ -27198,25 +22201,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "kRp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "kRw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/cargo_intake) "kRB" = ( /obj/structure/machinery/light, @@ -27224,20 +22221,14 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "kRJ" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/cargo_intake) "kRQ" = ( /turf/open/floor/wood, @@ -27252,9 +22243,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "kRZ" = ( /obj/structure/bed/chair/comfy{ @@ -27270,9 +22259,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "kSm" = ( /obj/structure/machinery/light{ @@ -27319,18 +22306,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "kSZ" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "kTd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27338,9 +22321,7 @@ }, /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "kTm" = ( /obj/structure/barricade/wooden{ @@ -27349,9 +22330,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security/glass) "kTn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -27367,9 +22346,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "kTF" = ( /obj/structure/surface/table/almayer, @@ -27378,25 +22355,17 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "kTJ" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "kUf" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "kUo" = ( /obj/structure/machinery/vending/snack, @@ -27406,9 +22375,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "kUF" = ( /obj/effect/decal/cleanable/dirt, @@ -27417,15 +22384,11 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "kUH" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "kUJ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -27440,27 +22403,21 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Corporate Office Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "kUP" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "kVa" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "kVh" = ( /obj/item/prop/colony/used_flare, @@ -27475,9 +22432,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "kVG" = ( /obj/structure/cargo_container/kelland/left, @@ -27494,17 +22449,11 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "kVT" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "kVV" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -27517,40 +22466,24 @@ /obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/cargo_intake) "kWi" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"kWp" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) "kWH" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "kWZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kXa" = ( /obj/structure/window/reinforced{ @@ -27558,9 +22491,7 @@ layer = 3 }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/lv522/atmos/east_reactor/south) "kXc" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, @@ -27574,9 +22505,7 @@ "kXf" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "kXg" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -27587,9 +22516,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "kXk" = ( /obj/structure/bed, @@ -27599,9 +22526,7 @@ /obj/item/clothing/under/suit_jacket/stowaway, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "kXo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27611,9 +22536,7 @@ /area/lv522/outdoors/w_rockies) "kXB" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "kXY" = ( /turf/open/floor/prison, @@ -27629,10 +22552,7 @@ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "kYH" = ( /obj/structure/barricade/wooden{ @@ -27647,25 +22567,19 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "kYM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "kZe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "kZj" = ( /obj/item/ammo_magazine/rifle/m4ra/ap{ @@ -27678,7 +22592,6 @@ /obj/structure/platform_decoration{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "kZs" = ( @@ -27690,18 +22603,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kZJ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) "kZX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal{ @@ -27712,36 +22613,27 @@ pixel_x = 23; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "lag" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "lao" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "lau" = ( /obj/item/stack/sheet/metal, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "laX" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -27767,24 +22659,18 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lbo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "lbt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Reactor_entry_1" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "lbA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27800,9 +22686,7 @@ /area/lv522/indoors/a_block/admin) "lbH" = ( /obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "lbI" = ( /obj/structure/surface/table/almayer, @@ -27814,51 +22698,36 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "lbK" = ( /obj/structure/barricade/deployable{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lbX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/outdoor) "lcK" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lcM" = ( /obj/item/prop/alien/hugger, /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "lcP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/west_reactor) "lcT" = ( /obj/structure/surface/table/almayer, @@ -27868,23 +22737,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ldg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "ldi" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "ldr" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -27905,9 +22768,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/lv522/atmos/reactor_garage) "ldC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -27920,30 +22781,20 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "leg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness/glass) "leh" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "lek" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/lv522/indoors/a_block/dorms) "lel" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "lep" = ( /obj/effect/decal/cleanable/dirt, @@ -27958,9 +22809,7 @@ dir = 4; id = "Reactor_entry_2" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "leH" = ( /obj/structure/barricade/deployable{ @@ -27969,37 +22818,28 @@ /obj/item/clothing/suit/storage/marine/medium/rto, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "leI" = ( /obj/structure/barricade/wooden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "leO" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ icon_state = "hydrotray4" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "leP" = ( /obj/item/reagent_container/glass/bucket/janibucket{ pixel_x = 7; pixel_y = -12 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "leV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28009,45 +22849,32 @@ /area/lv522/indoors/a_block/admin) "lfe" = ( /obj/structure/window_frame/strata, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "lfj" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "lfA" = ( /obj/structure/closet/crate, /obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "lfS" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/nw_rockies) "lfU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "lgf" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "lgY" = ( /obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "lhb" = ( @@ -28063,9 +22890,7 @@ "lhd" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "lhp" = ( /obj/effect/decal/warning_stripes{ @@ -28075,33 +22900,24 @@ /obj/item/weapon/gun/rifle/m41a{ current_mag = null }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "lhD" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "lhE" = ( /obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "lhI" = ( /obj/structure/closet/secure_closet/miner, /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "lhK" = ( /obj/structure/closet/secure_closet{ @@ -28112,35 +22928,23 @@ /area/lv522/indoors/a_block/security/glass) "lhP" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "lhT" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "lit" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "liD" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/cargo_intake) "liK" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "liN" = ( /obj/structure/pipes/vents/pump, @@ -28152,9 +22956,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "ljm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -28162,9 +22964,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "ljq" = ( /obj/structure/girder/displaced, @@ -28188,16 +22988,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "ljW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "lkj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28210,9 +23005,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lko" = ( /obj/item/stack/sheet/metal, @@ -28223,10 +23016,7 @@ pixel_x = -8; pixel_y = -2 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor) "lkH" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -28237,31 +23027,22 @@ "llA" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen) "llG" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "llJ" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "llM" = ( /obj/item/tool/kitchen/knife/butcher, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "llU" = ( /obj/structure/prop/invuln/ice_prefab, @@ -28285,45 +23066,33 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lmp" = ( /obj/structure/bed, /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "lmu" = ( /obj/structure/barricade/deployable{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "lmz" = ( /obj/item/weapon/gun/rifle/m41a{ current_mag = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lmA" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lmF" = ( /obj/effect/decal/cleanable/dirt, @@ -28340,18 +23109,14 @@ pixel_y = -6; stat = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/outdoor_bot) "lmI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper A-Block Dorms And Office Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "lmJ" = ( /obj/structure/prop/dam/crane/cargo, @@ -28368,9 +23133,7 @@ icon_state = "W" }, /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "lmY" = ( /turf/closed/wall/strata_outpost, @@ -28380,39 +23143,28 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/lv522/atmos/east_reactor/south) "lnj" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "lnC" = ( /obj/structure/largecrate/supply/supplies/water, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "lnF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/filt) "lnH" = ( /obj/structure/surface/table/almayer, /obj/item/ore/gold, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lnK" = ( /obj/structure/stairs/perspective{ @@ -28422,9 +23174,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "lnL" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -28442,18 +23192,13 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "lnU" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/filt) "lot" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) "loB" = ( /obj/structure/surface/table/almayer, @@ -28462,36 +23207,27 @@ pixel_x = -4; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "loD" = ( /obj/structure/machinery/conveyor{ dir = 5; id = "cargo_container" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) "loS" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/item/prop/alien/hugger, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "lpi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/east_central_street) "lpq" = ( /obj/structure/bed/stool, @@ -28500,10 +23236,7 @@ /area/lv522/indoors/b_block/bar) "lpt" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "lpy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -28540,32 +23273,23 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/garden_bridge) "lqY" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "lrd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "lrh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/cargo_intake) "lrm" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -28581,53 +23305,37 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "lrt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "lrG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "lrJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "lrM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/reactor_garage) "lrQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lsf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) "lsD" = ( /obj/structure/bed/chair/comfy{ @@ -28654,9 +23362,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "ltf" = ( /obj/structure/platform{ @@ -28674,9 +23380,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "ltC" = ( /obj/structure/bed/chair/comfy, @@ -28694,9 +23398,7 @@ /area/lv522/indoors/a_block/security) "lul" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "lum" = ( /obj/structure/platform, @@ -28722,16 +23424,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "lvF" = ( /obj/item/tool/surgery/circular_saw, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "lvH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -28746,50 +23443,36 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "lvX" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "lwc" = ( /obj/structure/prop/vehicles{ icon_state = "truck_damaged" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "lwm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor/south) "lwr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "lwv" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "lwH" = ( /obj/structure/surface/rack, @@ -28803,9 +23486,7 @@ /obj/item/frame/table/almayer{ pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lwW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -28824,23 +23505,16 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "lxG" = ( /obj/structure/surface/table/almayer, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "lxI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "lxL" = ( /turf/open/floor/prison, @@ -28851,9 +23525,7 @@ /area/lv522/indoors/a_block/corpo/glass) "lxW" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "lxZ" = ( /obj/structure/bed/chair/comfy{ @@ -28870,24 +23542,17 @@ "lyu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lyD" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_street) "lyP" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) "lyQ" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "lzb" = ( /obj/effect/decal/cleanable/dirt, @@ -28895,18 +23560,14 @@ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "lze" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "lzk" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -28914,9 +23575,7 @@ name = "\improper Post Office" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "lzw" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -28933,9 +23592,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "lzB" = ( /obj/structure/surface/rack, @@ -28948,10 +23605,7 @@ }, /obj/structure/machinery/faxmachine, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "lzU" = ( /obj/structure/platform{ @@ -28968,9 +23622,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "lAa" = ( /obj/effect/decal/cleanable/dirt, @@ -28982,19 +23634,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "lAk" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "lAm" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29002,72 +23649,49 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) "lAn" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "lAA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "lAD" = ( /obj/structure/foamed_metal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lAK" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lAS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lBd" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "lBj" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"lBl" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "lBu" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) "lBw" = ( /obj/structure/stairs/perspective{ @@ -29080,9 +23704,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "lBE" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -29101,16 +23723,11 @@ "lCj" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lCx" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "lCD" = ( /obj/effect/decal/cleanable/dirt, @@ -29118,10 +23735,7 @@ pixel_y = 30 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "lCH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29133,10 +23747,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "lDc" = ( /obj/structure/barricade/deployable{ @@ -29145,50 +23756,37 @@ /obj/structure/machinery/m56d_hmg{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "lDk" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "lDr" = ( /obj/item/prop/colony/proptag{ desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "lDC" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "lDE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/east_central_street) "lDN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "lDU" = ( /obj/structure/surface/table/almayer, @@ -29198,9 +23796,7 @@ pixel_x = 26 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "lEb" = ( /obj/structure/pipes/vents/pump, @@ -29210,17 +23806,12 @@ pixel_x = -16; req_access = null }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/filt) "lEd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "lEk" = ( /obj/structure/surface/table/almayer, @@ -29232,56 +23823,37 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lEF" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges/dorms_fitness) "lER" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "lEZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/reactor_garage) "lFa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/reactor_garage) "lFd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "lFk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "lFt" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/filt) "lFO" = ( /obj/item/storage/backpack/marine/satchel{ @@ -29308,20 +23880,14 @@ /obj/item/stack/sheet/mineral/uranium/small_stack{ pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "lGx" = ( /obj/item/trash/uscm_mre, /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lGA" = ( /obj/effect/decal/cleanable/dirt, @@ -29331,24 +23897,16 @@ layer = 3.1; pixel_y = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "lGW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/bridge) "lHa" = ( /obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lHd" = ( /obj/structure/reagent_dispensers/watertank, @@ -29368,18 +23926,13 @@ pixel_y = 7 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lHh" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "lHk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29399,9 +23952,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "lHu" = ( /obj/effect/decal/cleanable/dirt, @@ -29418,9 +23969,7 @@ /area/lv522/indoors/lone_buildings/engineering) "lHH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2/ceiling) "lHL" = ( /obj/structure/bed/chair{ @@ -29432,9 +23981,7 @@ /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) "lHS" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "lHV" = ( /obj/item/stack/sheet/metal, @@ -29448,9 +23995,7 @@ /area/lv522/indoors/a_block/admin) "lId" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "lIy" = ( /obj/effect/decal/cleanable/dirt, @@ -29461,19 +24006,14 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "lIB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "lIR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -29490,7 +24030,6 @@ /area/lv522/atmos/filt) "lJq" = ( /obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) "lJU" = ( @@ -29500,11 +24039,7 @@ pixel_y = 6 }, /obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "lKi" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29516,15 +24051,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "lKl" = ( /obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lKu" = ( /obj/structure/machinery/power/smes/buildable{ @@ -29539,20 +24070,14 @@ /area/lv522/indoors/lone_buildings/engineering) "lKC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/filt) "lKF" = ( /obj/structure/barricade/deployable{ dir = 4 }, /obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/admin) "lLl" = ( /obj/structure/foamed_metal, @@ -29567,17 +24092,11 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "lMF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor/south) "lMH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29587,10 +24106,7 @@ /area/lv522/outdoors/nw_rockies) "lML" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "lMN" = ( /obj/structure/barricade/deployable{ @@ -29599,25 +24115,18 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lMT" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "lMZ" = ( /obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) "lNb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -29626,9 +24135,7 @@ panel_open = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "lNf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -29646,10 +24153,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "lNs" = ( /obj/structure/surface/table/almayer, @@ -29670,24 +24174,18 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lNT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/indoors/c_block/mining) "lNU" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "lOi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -29698,10 +24196,7 @@ /area/lv522/indoors/a_block/dorms/glass) "lOk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "lOq" = ( /obj/structure/bed/chair/comfy{ @@ -29717,10 +24212,7 @@ }, /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "lPf" = ( /obj/structure/stairs/perspective{ @@ -29744,24 +24236,18 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "lPM" = ( /obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_street) "lPT" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "lPY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -29799,9 +24285,7 @@ layer = 2.9; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lRF" = ( /obj/structure/girder, @@ -29826,25 +24310,17 @@ "lSl" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "lSq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "lSs" = ( /obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "lSF" = ( /obj/structure/stairs/perspective{ @@ -29878,9 +24354,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/indoors/c_block/mining) "lTl" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -29889,10 +24363,7 @@ /obj/structure/flora/bush/ausbushes/reedbush{ pixel_y = 11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/dorms) "lTQ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, @@ -29909,10 +24380,7 @@ "lUf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/outdoor_bot) "lUh" = ( /obj/effect/decal/warning_stripes{ @@ -29950,9 +24418,7 @@ /obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "lUU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -29960,9 +24426,7 @@ name = "\improper A-Block Corporate Office Airlock"; req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "lUV" = ( /obj/effect/decal/warning_stripes{ @@ -29994,32 +24458,23 @@ /area/lv522/landing_zone_2/ceiling) "lVD" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/corpo) "lVK" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "lVV" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "lVY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "lVZ" = ( /obj/structure/stairs/perspective{ @@ -30029,17 +24484,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "lWa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "lWf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30051,21 +24502,16 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "lWj" = ( /obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "lWm" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "lWW" = ( /obj/item/trash/crushed_cup{ @@ -30075,9 +24521,7 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "lXC" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "lXO" = ( /obj/effect/decal/cleanable/blood/drip, @@ -30087,9 +24531,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "lXY" = ( /obj/structure/bed/chair/comfy{ @@ -30105,9 +24547,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "lYG" = ( /obj/structure/platform_decoration{ @@ -30129,9 +24569,7 @@ "lYL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "lYR" = ( /obj/structure/surface/table/woodentable/fancy, @@ -30149,16 +24587,12 @@ /area/lv522/outdoors/colony_streets/north_west_street) "lZq" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "lZI" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "lZO" = ( /obj/structure/coatrack{ @@ -30173,27 +24607,18 @@ pixel_x = -7; pixel_y = 5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "lZY" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "mad" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "maj" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "mam" = ( /obj/effect/decal/warning_stripes{ @@ -30204,10 +24629,7 @@ pixel_y = 1 }, /obj/structure/fence, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) "max" = ( /turf/open/auto_turf/sand_white/layer0, @@ -30218,20 +24640,14 @@ pixel_x = -11 }, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "maE" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "maF" = ( /obj/effect/spawner/gibspawner/xeno, @@ -30244,9 +24660,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "mbr" = ( /obj/effect/decal/cleanable/dirt, @@ -30268,10 +24682,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "mbw" = ( /obj/effect/decal/cleanable/blood, @@ -30282,9 +24693,7 @@ phone_id = "Colony Dining"; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "mbx" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -30294,15 +24703,11 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mbG" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "mbH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30312,9 +24717,7 @@ /area/lv522/indoors/a_block/dorms) "mbM" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "mbO" = ( /obj/structure/cargo_container/horizontal/blue/bottom{ @@ -30332,9 +24735,7 @@ "mcf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "mco" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -30346,27 +24747,20 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "mcE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "mcG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "mcO" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ @@ -30374,9 +24768,7 @@ pixel_x = 13; pixel_y = 19 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_street) "mdp" = ( /obj/effect/decal/cleanable/blood/oil, @@ -30389,9 +24781,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "mdD" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30410,29 +24800,21 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) "men" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/atmos/way_in_command_centre) "meq" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) "mev" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo) "meK" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper C-Block - Cargo Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) "meM" = ( /obj/item/clothing/accessory/red, @@ -30451,10 +24833,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) "mfF" = ( /obj/effect/decal/cleanable/dirt, @@ -30467,18 +24846,13 @@ pixel_x = 5; pixel_y = -6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "mfV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mgb" = ( /obj/structure/largecrate/random/mini{ @@ -30491,9 +24865,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "mgB" = ( /obj/structure/surface/table/almayer, @@ -30510,17 +24882,12 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "mhs" = ( /obj/item/prop/colony/used_flare, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "mhT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30543,30 +24910,21 @@ /area/lv522/outdoors/colony_streets/north_east_street) "mis" = ( /obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/east_reactor/south) "miz" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "miH" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/bcircuit, /area/lv522/atmos/east_reactor/south) "miW" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "miZ" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -30577,10 +24935,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "mjq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/west_reactor) "mjs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30594,19 +24949,14 @@ /area/lv522/outdoors/colony_streets/south_street) "mjC" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "mjE" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "mjF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -30614,26 +24964,18 @@ /area/lv522/atmos/reactor_garage) "mjR" = ( /obj/item/stack/sheet/metal, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/n_rockies) "mjT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) "mjW" = ( /obj/structure/machinery/vending/walkman{ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "mjY" = ( /obj/item/shard{ @@ -30642,36 +24984,26 @@ pixel_y = -8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "mkb" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/east_reactor/south) "mkd" = ( /obj/item/stack/folding_barricade, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mkh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "mkm" = ( /obj/structure/closet/crate, @@ -30683,9 +25015,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "mkJ" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mkW" = ( /obj/structure/bed/chair{ @@ -30707,11 +25037,12 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/east_reactor/south) +"mlv" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "mly" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, @@ -30721,9 +25052,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mlE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30748,25 +25077,18 @@ pixel_x = 2; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mlQ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/gun/smartgunner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mlR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "mlZ" = ( /obj/structure/surface/table/almayer, @@ -30775,10 +25097,7 @@ pixel_y = 4 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mmh" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -30788,18 +25107,14 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "mmj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "mmv" = ( /obj/structure/machinery/light{ @@ -30807,9 +25122,7 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mmw" = ( /obj/structure/machinery/camera/autoname{ @@ -30818,10 +25131,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_west_street) "mmE" = ( /obj/structure/machinery/colony_floodlight{ @@ -30830,14 +25140,10 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "mnb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) "mnr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30852,10 +25158,7 @@ dir = 8; pixel_x = -11 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "mnw" = ( /obj/item/clothing/suit/storage/marine/M3S, @@ -30865,9 +25168,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "mnz" = ( /obj/structure/platform_decoration{ @@ -30879,24 +25180,18 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "mnN" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mnQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "mnU" = ( /obj/effect/decal/cleanable/dirt, @@ -30910,9 +25205,7 @@ dir = 9 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "moe" = ( /obj/structure/stairs/perspective{ @@ -30927,11 +25220,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "moI" = ( /obj/effect/decal/cleanable/dirt, @@ -30945,11 +25234,7 @@ pixel_x = 8; pixel_y = 20 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "moO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30961,22 +25246,15 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper A-Block Shared Dorms Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) "moZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/west) "mpr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "mpF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -30988,25 +25266,19 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "mpI" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mpL" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mpN" = ( /obj/structure/prop/vehicles/crawler{ @@ -31020,17 +25292,12 @@ dir = 1; pixel_y = 3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "mpU" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mqc" = ( /obj/effect/decal/cleanable/blood, @@ -31038,9 +25305,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "mqi" = ( /obj/structure/surface/table/almayer{ @@ -31048,10 +25313,7 @@ flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mqk" = ( /obj/structure/desertdam/decals/road_edge{ @@ -31068,26 +25330,19 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "mqu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "mqv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "mqx" = ( /turf/open/gm/river, @@ -31112,22 +25367,15 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "mrD" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "mrL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "mrM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31140,10 +25388,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "mse" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31151,10 +25396,7 @@ /area/lv522/outdoors/colony_streets/south_west_street) "msf" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/east_reactor) "msj" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31169,15 +25411,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "msr" = ( /obj/structure/barricade/deployable, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "msB" = ( /obj/item/reagent_container/food/snacks/stewedsoymeat{ @@ -31196,15 +25434,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/n_rockies) "mto" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "mtt" = ( /obj/effect/decal/cleanable/vomit{ @@ -31243,9 +25477,7 @@ /area/lv522/indoors/a_block/dorms) "muB" = ( /obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "muO" = ( /obj/structure/surface/table/almayer, @@ -31266,22 +25498,16 @@ pixel_x = -8; pixel_y = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) "muP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "muV" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "mvd" = ( /obj/structure/stairs/perspective{ @@ -31292,10 +25518,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mvB" = ( /obj/item/prop/alien/hugger, @@ -31303,34 +25526,23 @@ /area/lv522/indoors/a_block/security) "mvI" = ( /obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "mvP" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) "mvR" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "mwf" = ( /obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "mwh" = ( /obj/structure/surface/table/almayer, /obj/item/trash/cheesie, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mwk" = ( /obj/effect/decal/warning_stripes{ @@ -31341,9 +25553,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "mwp" = ( /obj/effect/spawner/random/tool, @@ -31362,9 +25572,7 @@ dir = 1; name = "\improper A-Block Corporate Office Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "mwT" = ( /obj/structure/prop/dam/truck, @@ -31373,9 +25581,7 @@ pixel_x = -1; pixel_y = 16 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "mwX" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -31385,9 +25591,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "mxg" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/garden) "mxo" = ( /obj/structure/surface/rack, @@ -31395,38 +25599,27 @@ /obj/item/clothing/head/hardhat, /obj/item/tool/pickaxe, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "mxp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "mxt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/c_block/cargo) "mxz" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "mxD" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) "mxO" = ( @@ -31440,25 +25633,18 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "myf" = ( /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "myz" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) "myC" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "myE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -31475,10 +25661,7 @@ /obj/structure/machinery/atm{ pixel_y = 11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "myQ" = ( /obj/structure/surface/table/almayer, @@ -31486,11 +25669,7 @@ dir = 8; pixel_y = 5 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "myV" = ( /obj/item/clothing/suit/storage/marine/light, @@ -31506,11 +25685,7 @@ /obj/item/device/flashlight/lamp{ pixel_x = 6 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "mzi" = ( /obj/structure/largecrate/random/secure, @@ -31524,9 +25699,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "mzX" = ( /obj/structure/bed/chair{ @@ -31540,17 +25713,13 @@ /area/lv522/outdoors/colony_streets/north_west_street) "mAA" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "mAC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "mAD" = ( /obj/structure/closet/secure_closet/detective, @@ -31590,19 +25759,14 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mBy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/reactor_garage) "mBF" = ( /turf/closed/wall/strata_outpost, @@ -31612,20 +25776,14 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, +/turf/open/floor/almayer/w_y2/north, /area/lv522/atmos/way_in_command_centre) "mCm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness/glass) "mCq" = ( /obj/item/storage/beer_pack, @@ -31636,10 +25794,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/reactor_garage) "mCA" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31649,9 +25804,7 @@ "mCQ" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "mDw" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -31667,49 +25820,34 @@ pixel_y = 11 }, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "mDT" = ( /obj/structure/largecrate/random/mini, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "mDX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "mEg" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/filt) "mEi" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "mEp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/reactor_garage) "mEx" = ( /obj/item/stack/rods, @@ -31721,16 +25859,11 @@ /area/lv522/indoors/a_block/admin) "mEB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "mEG" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "mFg" = ( /obj/structure/surface/table/almayer, @@ -31739,9 +25872,7 @@ pixel_y = 14 }, /obj/item/clothing/accessory/armband/engine, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "mFm" = ( /obj/structure/surface/table/almayer, @@ -31756,11 +25887,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "mFA" = ( /obj/structure/stairs/perspective{ @@ -31774,9 +25901,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper C-Block - Radio Tower Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) "mFZ" = ( /obj/structure/barricade/handrail/strata{ @@ -31798,36 +25923,25 @@ /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mGH" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/nw_rockies) "mGN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "mGY" = ( /obj/structure/window/framed/shiva, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/outdoor_bot) "mHa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) "mHo" = ( /obj/structure/bed/chair/comfy{ @@ -31846,9 +25960,7 @@ /area/lv522/indoors/a_block/bridges/garden_bridge) "mHP" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "mHU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -31856,27 +25968,21 @@ /area/lv522/indoors/a_block/garden) "mHZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/corpo/glass) "mIa" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "mIq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "mIO" = ( /obj/structure/machinery/vending/coffee, @@ -31884,9 +25990,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "mIU" = ( /obj/item/clothing/mask/facehugger{ @@ -31897,18 +26001,12 @@ stat = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "mIV" = ( /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mJs" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -31918,7 +26016,7 @@ }, /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "mJt" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -31926,10 +26024,7 @@ }, /obj/structure/platform, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mJF" = ( /obj/structure/cargo_container/kelland/left{ @@ -31939,18 +26034,14 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "mJG" = ( /obj/structure/surface/rack, /obj/item/device/analyzer, /obj/effect/landmark/objective_landmark/close, /obj/item/stack/sheet/cardboard/full_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "mJQ" = ( /obj/item/storage/backpack/marine/satchel{ @@ -31977,16 +26068,11 @@ "mJZ" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "mKu" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) "mKA" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -31994,21 +26080,15 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "mKN" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "mKQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "mKZ" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -32024,14 +26104,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "mLp" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, +/turf/open/floor/coagulation/icon8_0, /area/lv522/oob) "mLI" = ( /obj/structure/barricade/deployable{ @@ -32041,9 +26117,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "mLO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32076,24 +26150,17 @@ /area/lv522/outdoors/colony_streets/north_west_street) "mLX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "mMj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "mMr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/corporate, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "mMv" = ( /obj/structure/bed/chair/comfy{ @@ -32107,25 +26174,17 @@ /area/lv522/indoors/a_block/dorms) "mMI" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "mMQ" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "mMU" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/filt) "mMX" = ( /obj/structure/powerloader_wreckage, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "mNc" = ( @@ -32141,9 +26200,7 @@ pixel_y = 12 }, /obj/item/clothing/mask/cigarette, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "mNm" = ( /turf/open/floor/corsat, @@ -32159,18 +26216,13 @@ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mNy" = ( /obj/structure/closet/bodybag, /obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "mNz" = ( /obj/structure/barricade/deployable, @@ -32182,10 +26234,7 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "mNR" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -32194,9 +26243,7 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers{ layer = 3 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "mNX" = ( /obj/structure/pipes/vents/pump, @@ -32213,33 +26260,23 @@ /obj/item/device/flashlight/lamp{ pixel_x = -8 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "mOh" = ( /obj/structure/machinery/space_heater/radiator/red{ pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "mOl" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "mOs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/security) "mOy" = ( /obj/vehicle/train/cargo/trolley, @@ -32258,9 +26295,7 @@ pixel_y = 14 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "mOI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32276,10 +26311,7 @@ pixel_y = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "mOO" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -32299,11 +26331,7 @@ name = "remote door-control"; pixel_y = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "mOQ" = ( /obj/structure/surface/table/almayer, @@ -32311,9 +26339,7 @@ dir = 8 }, /obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "mPc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32326,9 +26352,7 @@ id = "Reactor_garage_2" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "mPj" = ( /turf/closed/wall/strata_outpost, @@ -32341,20 +26365,14 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "mPy" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "mPz" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, +/turf/open/floor/coagulation/icon0_0, /area/lv522/oob) "mPB" = ( /obj/effect/decal/cleanable/dirt, @@ -32365,9 +26383,7 @@ /area/lv522/indoors/a_block/dorms/glass) "mPL" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mPR" = ( /obj/structure/machinery/light{ @@ -32395,18 +26411,14 @@ /obj/item/reagent_container/food/snacks/donut{ pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mQm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "mQq" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -32416,18 +26428,12 @@ /area/lv522/indoors/a_block/dorms/glass) "mQt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/reactor_garage) "mQv" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/lv522/indoors/a_block/dorms) "mQw" = ( /obj/structure/stairs/perspective{ @@ -32458,9 +26464,7 @@ }, /obj/item/reagent_container/food/snacks/sliceable/bread, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "mRh" = ( /obj/structure/stairs/perspective{ @@ -32492,9 +26496,7 @@ /area/lv522/indoors/a_block/executive) "mSc" = ( /obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "mSe" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -32522,21 +26524,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "mTd" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "mTo" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/outdoor) "mTx" = ( /obj/structure/machinery/light{ @@ -32544,10 +26539,7 @@ }, /obj/item/cpr_dummy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "mTE" = ( /obj/structure/platform/strata{ @@ -32592,10 +26584,7 @@ network = list("interrogation") }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "mUl" = ( /obj/structure/stairs/perspective{ @@ -32618,9 +26607,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "mUS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32631,9 +26618,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "mVi" = ( /obj/structure/platform, @@ -32641,9 +26626,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "mVj" = ( /obj/structure/machinery/light, @@ -32651,10 +26634,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "mVm" = ( /obj/effect/decal/cleanable/dirt, @@ -32676,9 +26656,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, +/turf/open/floor/wood/wood_broken2, /area/lv522/indoors/b_block/bar) "mVE" = ( /obj/structure/stairs/perspective{ @@ -32691,14 +26669,10 @@ /area/lv522/atmos/filt) "mVH" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "mWc" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) "mWd" = ( /obj/structure/largecrate/random/secure, @@ -32722,16 +26696,11 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "mXn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/cargo_intake) "mXy" = ( /obj/structure/surface/table/woodentable/fancy, @@ -32739,16 +26708,11 @@ pixel_x = 6; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "mXA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/cargo_intake) "mYo" = ( /obj/effect/decal/cleanable/blood/drip, @@ -32756,10 +26720,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "mYS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32773,9 +26734,7 @@ /area/lv522/indoors/c_block/mining) "mZj" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/garden_bridge) "mZs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -32788,9 +26747,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "mZE" = ( /obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "mZJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32800,9 +26757,7 @@ dir = 1; name = "\improper Family Dormitories" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "mZK" = ( /obj/structure/surface/table/almayer, @@ -32821,9 +26776,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "mZQ" = ( /obj/structure/barricade/deployable, @@ -32833,9 +26786,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "mZW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -32852,17 +26803,13 @@ /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "naw" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "nax" = ( /turf/open/auto_turf/sand_white/layer0, @@ -32877,9 +26824,7 @@ icon_state = "flammable_pipe_3"; pixel_x = -3 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "naH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -32893,13 +26838,9 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "naS" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/plating, /area/lv522/landing_zone_1) @@ -32911,9 +26852,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "nbj" = ( /obj/structure/platform{ @@ -32925,10 +26864,7 @@ /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/admin) "nbn" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -32954,15 +26890,11 @@ pixel_y = 22 }, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nbD" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "nbE" = ( /obj/structure/cargo_container/kelland/right, @@ -32975,37 +26907,28 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "nbT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/cargo_intake) "ncg" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_street) "ncp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper B-Block Bar" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "ncv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "ncz" = ( /obj/structure/platform, @@ -33013,9 +26936,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "ncA" = ( /obj/item/clothing/suit/storage/marine/medium, @@ -33031,9 +26952,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "ndb" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -33047,10 +26966,7 @@ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "ndP" = ( /obj/structure/platform{ @@ -33067,16 +26983,12 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "nee" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nel" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33092,27 +27004,19 @@ pixel_y = 26 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nez" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "neI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/way_in_command_centre) "neO" = ( /obj/structure/machinery/light{ @@ -33120,9 +27024,7 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/garden_bridge) "neX" = ( /obj/structure/bed/chair/comfy{ @@ -33130,9 +27032,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "nfe" = ( /obj/structure/window_frame/strata, @@ -33156,9 +27056,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "nfk" = ( /obj/item/lightstick/red/spoke/planted{ @@ -33175,10 +27073,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/garden_bridge) "nfq" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -33218,7 +27113,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "ngK" = ( /obj/structure/platform{ @@ -33227,17 +27122,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "ngL" = ( /obj/structure/cargo_container/horizontal/blue/bottom{ pixel_x = 6 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "ngY" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -33246,13 +27137,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nhi" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) "nhs" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, @@ -33270,9 +27154,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "nia" = ( /obj/structure/reagent_dispensers/beerkeg{ @@ -33289,9 +27171,7 @@ }, /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "niu" = ( /obj/structure/platform_decoration{ @@ -33301,16 +27181,11 @@ /area/lv522/atmos/filt) "niA" = ( /obj/structure/largecrate/random/barrel/green, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/landing_zone_1) "niE" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "niL" = ( /obj/structure/machinery/chem_dispenser/soda{ @@ -33318,15 +27193,11 @@ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv522/indoors/b_block/bar) "niT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "niU" = ( /obj/structure/foamed_metal, @@ -33337,9 +27208,7 @@ /area/lv522/atmos/cargo_intake) "njd" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_west_street) "njm" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -33356,27 +27225,20 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "njF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor) "njH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "njW" = ( /obj/structure/machinery/camera/autoname{ @@ -33384,10 +27246,7 @@ network = list("interrogation") }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "nkt" = ( /obj/structure/surface/table/almayer, @@ -33395,10 +27254,7 @@ /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nku" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -33410,39 +27266,27 @@ pixel_x = 4; pixel_y = -6 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/admin) "nkv" = ( /obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) "nky" = ( /obj/structure/machinery/power/apc/weak, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "nkX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_street) "nly" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "nlz" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ @@ -33479,9 +27323,7 @@ layer = 3.1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nlV" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ @@ -33500,9 +27342,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_street) "nmh" = ( /obj/structure/surface/table/reinforced/prison, @@ -33517,19 +27357,14 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "nmB" = ( /obj/structure/surface/table/almayer{ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nmK" = ( /obj/item/prop/alien/hugger, @@ -33539,9 +27374,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "nnj" = ( /obj/structure/barricade/handrail/strata{ @@ -33550,15 +27383,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "nno" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "nnv" = ( /obj/item/reagent_container/food/drinks/coffeecup/wy{ @@ -33566,7 +27395,6 @@ pixel_y = -8 }, /obj/effect/decal/strata_decals/grime/grime3, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) "nnz" = ( @@ -33595,29 +27423,22 @@ name = "\improper Secure Blast Door"; unacidable = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) "nnW" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) "noD" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "noH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Casino Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "noL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33638,25 +27459,18 @@ /area/lv522/outdoors/colony_streets/south_east_street) "noV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "npb" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "npd" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor) "npp" = ( /obj/structure/girder, @@ -33665,9 +27479,7 @@ pixel_x = 11; pixel_y = -8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) "npx" = ( /obj/structure/filtration/machine_96x96/indestructible{ @@ -33681,9 +27493,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "npD" = ( /obj/effect/decal/warning_stripes{ @@ -33719,9 +27529,7 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "npT" = ( /obj/structure/surface/table/almayer, @@ -33731,9 +27539,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "nqj" = ( /obj/structure/surface/table/gamblingtable, @@ -33752,18 +27558,14 @@ /area/lv522/indoors/a_block/dorms) "nqw" = ( /obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "nqy" = ( /obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo_fitness) "nqB" = ( /obj/structure/filtration/machine_96x96/indestructible{ @@ -33774,10 +27576,7 @@ /area/lv522/oob) "nqE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) "nqN" = ( /obj/structure/machinery/camera/autoname{ @@ -33786,16 +27585,11 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "nqQ" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "nqY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33810,17 +27604,12 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nrh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/outdoor) "nri" = ( /obj/structure/platform_decoration, @@ -33831,9 +27620,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nru" = ( /obj/effect/decal/warning_stripes{ @@ -33848,9 +27635,7 @@ "nrA" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "nrJ" = ( /obj/structure/surface/table/reinforced/prison, @@ -33860,10 +27645,7 @@ }, /obj/item/storage/firstaid/regular, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "nrL" = ( /obj/structure/surface/table/almayer{ @@ -33873,10 +27655,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nrP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33889,16 +27668,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/corpo/glass) "nsd" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "nsr" = ( /obj/structure/surface/table/almayer, @@ -33907,7 +27681,6 @@ pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) "nsv" = ( @@ -33921,24 +27694,17 @@ dir = 8; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "nti" = ( /obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "ntk" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper C-Block - Garage Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) "ntq" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -33950,10 +27716,7 @@ /area/lv522/atmos/east_reactor/south) "ntK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "ntL" = ( /obj/item/stack/sheet/metal, @@ -33974,9 +27737,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "ntS" = ( /obj/effect/decal/cleanable/dirt, @@ -33984,14 +27745,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/bridge) "ntT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "nud" = ( @@ -34002,9 +27760,7 @@ /area/lv522/indoors/a_block/security) "nuo" = ( /obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nuG" = ( /obj/structure/platform{ @@ -34033,10 +27789,7 @@ }, /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nuU" = ( /obj/structure/surface/table/almayer, @@ -34044,11 +27797,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "nvd" = ( /obj/structure/girder/reinforced, @@ -34057,9 +27806,7 @@ "nvt" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "nvB" = ( /obj/structure/cargo_container/kelland/right, @@ -34071,13 +27818,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"nvV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "nwj" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorms/glass) @@ -34086,42 +27826,30 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nwR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "nwZ" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "nxb" = ( /obj/structure/platform_decoration, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "nxj" = ( /obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "nxF" = ( /obj/structure/machinery/light/small, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "nxJ" = ( @@ -34133,9 +27861,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "nxO" = ( /obj/structure/barricade/wooden{ @@ -34146,10 +27872,7 @@ /obj/structure/machinery/vending/cola{ layer = 3.1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nxQ" = ( /obj/structure/bed/chair/comfy{ @@ -34159,17 +27882,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "nye" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "nyv" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -34189,23 +27908,15 @@ }, /obj/structure/surface/table/almayer, /obj/item/device/radio, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nzt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "nzK" = ( /obj/item/storage/backpack/marine/satchel/rto, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/oob) "nzR" = ( /obj/item/stack/sheet/metal, @@ -34213,9 +27924,7 @@ /area/lv522/atmos/cargo_intake) "nzU" = ( /obj/structure/barricade/deployable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "nzZ" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ @@ -34236,9 +27945,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "nAC" = ( /obj/structure/stairs/perspective{ @@ -34263,16 +27970,14 @@ pixel_x = 1; pixel_y = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "nBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "nBs" = ( /obj/structure/largecrate/random/barrel/green, @@ -34312,29 +28017,19 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "nCX" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "nCZ" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "nDl" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "nDn" = ( /obj/structure/bed/chair{ @@ -34354,10 +28049,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/west_reactor) "nDI" = ( /obj/structure/closet/crate/trashcart, @@ -34397,12 +28089,9 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "nEq" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) "nEX" = ( @@ -34428,17 +28117,12 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "nFM" = ( /obj/effect/landmark/objective_landmark/science, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/southwest, /area/lv522/indoors/a_block/medical) "nFN" = ( /obj/item/tool/weldingtool{ @@ -34461,24 +28145,18 @@ /area/lv522/atmos/filt) "nGe" = ( /obj/structure/cargo_container/kelland/left, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "nGq" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "nGx" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) "nGB" = ( /obj/structure/cargo_container/kelland/right, @@ -34497,7 +28175,6 @@ /area/lv522/atmos/filt) "nGJ" = ( /obj/structure/cargo_container/kelland/right, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) "nGU" = ( @@ -34506,32 +28183,21 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nHg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/atmos/way_in_command_centre) "nHi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "nHl" = ( /obj/structure/barricade/sandbags, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/north_street) "nHA" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "nHF" = ( /obj/item/clothing/mask/facehugger{ @@ -34549,9 +28215,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "nIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34570,9 +28234,7 @@ layer = 2.9 }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "nIJ" = ( /obj/structure/surface/rack, @@ -34580,9 +28242,7 @@ dir = 4 }, /obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "nJr" = ( /obj/structure/barricade/wooden{ @@ -34603,9 +28263,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "nJV" = ( /obj/structure/noticeboard, @@ -34625,9 +28283,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nKj" = ( /obj/effect/decal/cleanable/blood/oil, @@ -34639,9 +28295,7 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "nKm" = ( /obj/structure/platform_decoration, @@ -34669,24 +28323,17 @@ "nKS" = ( /obj/structure/closet/secure_closet/marshal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nLe" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nLi" = ( /obj/structure/surface/table/almayer, /obj/item/tool/soap, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nLm" = ( /turf/closed/wall/strata_outpost, @@ -34715,29 +28362,21 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nLW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nMc" = ( /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) "nMd" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "nMl" = ( /obj/effect/decal/cleanable/dirt, @@ -34747,18 +28386,14 @@ /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/item/ammo_box/magazine/l42a, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nMw" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/atmos/way_in_command_centre) "nMz" = ( /obj/item/prop/alien/hugger, @@ -34766,9 +28401,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nMB" = ( /obj/structure/bed/chair{ @@ -34784,18 +28417,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nMT" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3; pixel_y = 9 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/north_street) "nMX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -34809,9 +28438,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nNh" = ( /obj/effect/decal/cleanable/dirt, @@ -34821,10 +28448,7 @@ /obj/structure/toilet{ pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "nNi" = ( /obj/structure/platform_decoration{ @@ -34836,28 +28460,21 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nNA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "nNH" = ( /obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "nNL" = ( /obj/item/ammo_magazine/rifle, @@ -34887,9 +28504,7 @@ pixel_x = -6; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nOg" = ( /obj/structure/platform{ @@ -34898,9 +28513,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nOl" = ( /obj/effect/decal/cleanable/blood/drip, @@ -34911,9 +28524,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "nOB" = ( /obj/effect/decal/cleanable/dirt, @@ -34922,9 +28533,7 @@ "nOI" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "nOS" = ( /obj/structure/platform_decoration{ @@ -34937,9 +28546,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nOT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -34949,9 +28556,7 @@ dir = 8; name = "\improper Dormitories" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "nPb" = ( /obj/structure/platform, @@ -34991,9 +28596,7 @@ name = "synthethic potted plant"; pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nPL" = ( /obj/structure/stairs/perspective{ @@ -35001,10 +28604,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nPN" = ( /turf/closed/shuttle/dropship2/tornado, @@ -35017,9 +28617,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/north_east_street) "nQk" = ( /obj/structure/barricade/deployable{ @@ -35028,9 +28626,7 @@ /obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_street) "nQn" = ( /obj/item/stack/rods, @@ -35038,10 +28634,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nQu" = ( /turf/open/floor/plating, @@ -35072,16 +28665,11 @@ /area/lv522/outdoors/colony_streets/north_street) "nQM" = ( /obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "nQO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/reactor_garage) "nQQ" = ( /obj/item/storage/backpack/marine/satchel{ @@ -35107,9 +28695,7 @@ /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nRs" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -35132,18 +28718,13 @@ current_rounds = 0 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "nRJ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nRK" = ( /obj/structure/stairs/perspective{ @@ -35156,24 +28737,19 @@ "nRQ" = ( /obj/structure/window_frame/strata, /obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) "nRY" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "nSm" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/accessory/poncho, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nSq" = ( /obj/effect/decal/cleanable/dirt, @@ -35181,7 +28757,6 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "nSA" = ( @@ -35194,17 +28769,13 @@ pixel_y = -13 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nSC" = ( /obj/structure/machinery/shower{ pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "nSF" = ( /obj/structure/barricade/deployable{ @@ -35245,10 +28816,7 @@ /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/dorms_fitness) "nTx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "nTD" = ( /obj/structure/platform, @@ -35266,9 +28834,7 @@ /area/lv522/atmos/cargo_intake) "nTX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "nUd" = ( /obj/structure/cargo_container/wy/left, @@ -35278,10 +28844,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/filt) "nUO" = ( /obj/structure/closet/crate/trashcart, @@ -35289,9 +28852,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "nUV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "nVc" = ( /obj/structure/powerloader_wreckage, @@ -35302,10 +28863,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "nVh" = ( /obj/structure/machinery/conveyor{ @@ -35319,16 +28877,13 @@ pixel_x = -9; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "nVr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "nVN" = ( /obj/item/ammo_magazine/flamer_tank/empty, /obj/effect/decal/cleanable/liquid_fuel, @@ -35345,9 +28900,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "nVW" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -35355,33 +28908,25 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/outdoor) "nVX" = ( /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "nWl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/cargo_intake) "nWn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nWp" = ( /obj/structure/surface/table/almayer, @@ -35397,10 +28942,7 @@ pixel_x = 5; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "nWq" = ( /obj/item/storage/backpack/marine/satchel{ @@ -35421,9 +28963,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/executive) "nWG" = ( /obj/structure/machinery/vending/coffee{ @@ -35432,18 +28972,13 @@ pixel_y = 16 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "nWI" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_2" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "nWK" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ @@ -35453,9 +28988,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nXi" = ( /obj/effect/decal/warning_stripes{ @@ -35466,9 +28999,7 @@ icon_state = "W" }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "nXl" = ( /obj/item/clothing/shoes/jackboots{ @@ -35479,10 +29010,7 @@ pixel_x = -5; pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "nXC" = ( /obj/item/tool/wrench, @@ -35501,9 +29029,7 @@ pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "nXM" = ( /obj/structure/barricade/sandbags{ @@ -35513,9 +29039,7 @@ pixel_x = 13; pixel_y = -5 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "nXO" = ( /obj/item/ammo_box/magazine/misc/flares, @@ -35527,9 +29051,7 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "nXX" = ( /obj/effect/decal/warning_stripes{ @@ -35540,19 +29062,13 @@ /area/lv522/outdoors/colony_streets/south_street) "nXY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/c_block/cargo) "nYv" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/hallway) "nYF" = ( /obj/item/weapon/twohanded/folded_metal_chair, @@ -35576,14 +29092,12 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "nYU" = ( /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "nYW" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 1; @@ -35605,20 +29119,16 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "nZF" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) +"nZP" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "oaa" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/n_rockies) "oaj" = ( /obj/effect/decal/warning_stripes{ @@ -35632,10 +29142,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "oaq" = ( /obj/item/storage/backpack/marine/satchel{ @@ -35653,10 +29160,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "oaH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35669,9 +29173,7 @@ /obj/structure/cargo_container/kelland/left{ layer = 2.9 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_street) "oaN" = ( /obj/structure/cargo_container/kelland/right{ @@ -35685,10 +29187,7 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "obe" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -35698,10 +29197,7 @@ "obt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "oce" = ( /obj/item/stack/sheet/metal, @@ -35715,10 +29211,7 @@ /area/lv522/indoors/a_block/bridges) "ocw" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "oda" = ( /obj/structure/prop/invuln/minecart_tracks, @@ -35742,9 +29235,7 @@ }, /obj/item/reagent_container/food/snacks/plaincakeslice, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "odt" = ( /obj/structure/window_frame/strata, @@ -35753,9 +29244,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "odQ" = ( /obj/structure/machinery/light{ @@ -35766,9 +29255,7 @@ /obj/item/weapon/baseballbat/metal{ pixel_x = 5 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "odT" = ( /obj/effect/decal/cleanable/dirt, @@ -35778,31 +29265,22 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo) "odX" = ( /obj/structure/prop/invuln/minecart_tracks, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "odZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "oem" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/east_reactor/south) "oet" = ( /obj/structure/prop/dam/crane/cargo{ @@ -35822,10 +29300,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "oeL" = ( /obj/structure/bed/chair{ @@ -35845,9 +29320,7 @@ pixel_y = 6 }, /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oeN" = ( /obj/structure/stairs/perspective{ @@ -35857,17 +29330,14 @@ dir = 8 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "oeT" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "oeU" = ( /obj/structure/bed/chair/comfy{ @@ -35884,9 +29354,7 @@ /area/lv522/outdoors/n_rockies) "ofd" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges) "ofi" = ( /turf/open/auto_turf/shale/layer1, @@ -35900,10 +29368,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "ofS" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "ofX" = ( /obj/structure/surface/table/almayer, @@ -35916,29 +29381,22 @@ pixel_x = -9; pixel_y = 12 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "ofZ" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "oga" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "ogf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "ogA" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -35967,9 +29425,7 @@ }, /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "ogK" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -35979,15 +29435,11 @@ icon_state = "fernybush_2"; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "ogT" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "ogX" = ( /obj/structure/platform{ @@ -35998,31 +29450,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "ogZ" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "oht" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "ohw" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "ohL" = ( /obj/effect/decal/cleanable/dirt, @@ -36030,17 +29472,12 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "ohP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "ohX" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -36048,9 +29485,7 @@ pixel_x = 9; pixel_y = 3 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/kitchen/damage) "oig" = ( /obj/structure/barricade/wooden{ @@ -36084,7 +29519,6 @@ dir = 9; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "oiD" = ( @@ -36093,9 +29527,7 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "oiP" = ( /obj/structure/platform_decoration{ @@ -36109,25 +29541,17 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "oiW" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) "oiY" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/landing_zone_1) "oiZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "ojb" = ( /obj/structure/coatrack{ @@ -36137,17 +29561,11 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "ojn" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "ojp" = ( /turf/closed/wall/strata_outpost, @@ -36163,9 +29581,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "ojx" = ( /obj/item/prop/alien/hugger, @@ -36173,9 +29589,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ojy" = ( /obj/structure/closet/crate/trashcart{ @@ -36188,16 +29602,12 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Cargo Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) "ojW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "okA" = ( /obj/structure/surface/rack, @@ -36214,10 +29624,7 @@ pixel_y = 29 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "ols" = ( /obj/structure/bed/chair/comfy{ @@ -36225,17 +29632,12 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "olz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "olI" = ( /obj/item/prop/colony/usedbandage{ @@ -36244,10 +29646,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "oml" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "omG" = ( /obj/structure/surface/table/almayer, @@ -36259,11 +29658,7 @@ pixel_x = 9; pixel_y = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "omT" = ( /obj/structure/sign/safety/radio_rad{ @@ -36282,25 +29677,18 @@ /area/lv522/indoors/c_block/garage) "onj" = ( /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "onM" = ( /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/atmos/way_in_command_centre) "onT" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "onX" = ( /obj/effect/decal/cleanable/blood/oil, @@ -36316,15 +29704,10 @@ name = "\improper Generator Room"; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "oot" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "oox" = ( /obj/structure/stairs/perspective{ @@ -36333,14 +29716,12 @@ }, /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "ooG" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "opl" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -36372,11 +29753,7 @@ }, /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "opO" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -36396,9 +29773,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "oqp" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36418,10 +29793,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/central_streets) "oqD" = ( /obj/structure/coatrack{ @@ -36442,9 +29814,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "oqQ" = ( /obj/structure/fence, @@ -36455,9 +29825,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "ora" = ( /obj/structure/flora/pottedplant{ @@ -36474,7 +29842,7 @@ /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "orm" = ( /obj/structure/platform/strata{ @@ -36484,17 +29852,18 @@ /area/lv522/oob) "ort" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "ory" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) +"orA" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "orE" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, @@ -36505,10 +29874,7 @@ dir = 8; pixel_y = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "orP" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -36522,10 +29888,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "orS" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "orU" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -36545,64 +29908,45 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "osE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Corporate Office Airlock"; req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "osN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_west_street) "osU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "osV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "ote" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/north_command_centre) "otj" = ( /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "otq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "otx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "otH" = ( /obj/structure/surface/table/almayer, @@ -36610,48 +29954,33 @@ desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "otM" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "otQ" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "otS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "otT" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "otY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical/glass) "oud" = ( /obj/structure/platform{ @@ -36675,9 +30004,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "ouG" = ( /obj/structure/barricade/deployable{ @@ -36694,9 +30021,7 @@ /area/lv522/indoors/a_block/kitchen) "ouI" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "ouO" = ( /obj/structure/reagent_dispensers/fueltank{ @@ -36729,9 +30054,7 @@ icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "ovT" = ( /obj/structure/stairs/perspective{ @@ -36745,9 +30068,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_street) "owg" = ( /obj/effect/decal/cleanable/dirt, @@ -36762,14 +30083,10 @@ unacidable = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/oob) "owQ" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) "owX" = ( /obj/structure/machinery/light{ @@ -36801,18 +30118,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/north_street) "oxH" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "oxT" = ( /obj/structure/platform{ @@ -36822,9 +30134,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "oyf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -36839,44 +30149,31 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) "oyB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "oyC" = ( /obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "oyK" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "oyM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "oyN" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "oyY" = ( /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "ozk" = ( @@ -36884,10 +30181,7 @@ icon_state = "lattice3"; pixel_x = -5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/hallway) "ozn" = ( /turf/open/floor/prison, @@ -36897,16 +30191,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "ozw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "ozF" = ( /obj/item/shard{ @@ -36918,9 +30207,7 @@ "ozJ" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "ozQ" = ( /obj/structure/stairs/perspective{ @@ -36930,16 +30217,11 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "ozR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "oAd" = ( /obj/structure/surface/table/almayer, @@ -36949,10 +30231,7 @@ "oAp" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "oAu" = ( /obj/structure/platform{ @@ -36973,9 +30252,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oAY" = ( /obj/effect/decal/cleanable/dirt, @@ -36992,9 +30269,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "oBf" = ( /obj/structure/bed/chair/wheelchair, @@ -37006,7 +30281,6 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "oBx" = ( @@ -37027,9 +30301,7 @@ pixel_x = -1; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "oCn" = ( /obj/structure/blocker/invisible_wall, @@ -37045,9 +30317,7 @@ /obj/item/tank/emergency_oxygen/double, /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "oCt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37060,55 +30330,39 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4, /area/lv522/indoors/a_block/medical) "oDj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "oDu" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "oDU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "oDZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "oEc" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) "oEw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "oFr" = ( /obj/structure/machinery/light{ @@ -37126,10 +30380,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "oFG" = ( /obj/item/reagent_container/food/drinks/drinkingglass{ @@ -37145,31 +30396,22 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges) "oFU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "oGl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/kitchen/damage) "oGp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "oGE" = ( /obj/item/prop/alien/hugger, @@ -37189,18 +30431,14 @@ pixel_x = 7; pixel_y = -7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oGY" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "oGZ" = ( /obj/item/stack/sheet/wood, @@ -37213,9 +30451,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "oHl" = ( /obj/structure/filingcabinet{ @@ -37232,9 +30468,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "oHB" = ( /obj/structure/machinery/optable{ @@ -37242,16 +30476,10 @@ pixel_x = 16; pixel_y = -6 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "oHQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "oHR" = ( /obj/structure/transmitter/colony_net{ @@ -37261,27 +30489,19 @@ phone_id = "Colony Security"; pixel_x = -16 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "oHW" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "oIr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) "oIu" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_street) "oIE" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -37290,15 +30510,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "oIP" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "oJj" = ( /obj/effect/decal/cleanable/dirt, @@ -37332,9 +30548,7 @@ pixel_x = 4; pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oJQ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -37344,9 +30558,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "oJS" = ( /turf/closed/wall/mineral/bone_resin, @@ -37379,9 +30591,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "oKG" = ( /obj/structure/platform, @@ -37391,7 +30601,6 @@ /obj/structure/platform_decoration{ dir = 10 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "oKI" = ( @@ -37401,15 +30610,10 @@ }, /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "oKK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/east_reactor/south) "oKN" = ( /obj/structure/transmitter/colony_net{ @@ -37418,24 +30622,17 @@ phone_id = "Reactor Central Office"; pixel_y = 26 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "oKP" = ( /obj/structure/machinery/autolathe, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "oKQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "oLa" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -37457,10 +30654,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/east_central_street) "oLo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37479,10 +30673,7 @@ "oLu" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "oLz" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -37493,29 +30684,20 @@ pixel_x = 6; pixel_y = -1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "oLG" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "oLK" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "oLW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "oMi" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -37528,9 +30710,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "oMo" = ( /obj/structure/surface/table/woodentable/fancy, @@ -37549,14 +30729,10 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "oML" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/north_command_centre) "oMX" = ( /obj/item/storage/belt/grenade, @@ -37570,10 +30746,7 @@ dir = 1; pixel_y = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "oNe" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -37592,20 +30765,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "oNM" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "oNQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "oOe" = ( /obj/effect/decal/cleanable/dirt, @@ -37617,9 +30784,7 @@ name = "Emergency Lockdown" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) "oOD" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -37646,9 +30811,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "oPu" = ( /obj/effect/spawner/gibspawner/xeno, @@ -37659,40 +30822,27 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "oPR" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "oPW" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "oQs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "oQt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/athletic_mixed, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "oQC" = ( /obj/structure/platform_decoration, @@ -37707,15 +30857,11 @@ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "oRr" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "oRt" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37724,15 +30870,10 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oRG" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/west, /area/lv522/indoors/a_block/medical/glass) "oRS" = ( /obj/structure/surface/table/almayer, @@ -37740,11 +30881,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "oRU" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ @@ -37774,16 +30911,12 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) "oSH" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges) "oSX" = ( /obj/structure/blocker/forcefield/vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "oTc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -37798,22 +30931,16 @@ /area/lv522/indoors/a_block/bridges/dorms_fitness) "oTd" = ( /obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "oTg" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "oTl" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/cobweb2/dynamic, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oTp" = ( /obj/structure/surface/table/almayer, @@ -37842,30 +30969,21 @@ "oTG" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "oTI" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/hydro) "oTJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "oTL" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "oTX" = ( /obj/effect/spawner/gibspawner/xeno, @@ -37880,9 +30998,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "oUq" = ( /turf/closed/wall/strata_outpost/reinforced, @@ -37893,22 +31009,16 @@ pixel_x = -1; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "oUZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "oVb" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "oVk" = ( /obj/structure/largecrate/random{ @@ -37925,9 +31035,7 @@ "oVA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "oVD" = ( /obj/structure/pipes/vents/pump, @@ -37941,11 +31049,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "oVL" = ( /obj/structure/surface/table/reinforced/prison, @@ -37958,9 +31062,7 @@ pixel_y = 17 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "oVO" = ( /obj/structure/fence{ @@ -37974,30 +31076,21 @@ icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/north_street) "oVS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "oWq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "oWy" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oWK" = ( /obj/structure/machinery/door/airlock/almayer/maint, @@ -38007,25 +31100,18 @@ name = "High Pressure Door"; unacidable = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel) "oWS" = ( /obj/item/prop/colony/used_flare, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "oWV" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "oXa" = ( /obj/item/shard{ @@ -38035,17 +31121,12 @@ /area/lv522/indoors/a_block/kitchen/glass) "oXd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "oXk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/reactor_garage) "oXp" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38055,19 +31136,14 @@ /area/lv522/outdoors/colony_streets/central_streets) "oXB" = ( /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) "oXF" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "oXQ" = ( /obj/structure/machinery/light{ @@ -38090,9 +31166,7 @@ id = "East_Lock"; name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "oXZ" = ( /obj/structure/cargo_container/kelland/left, @@ -38112,15 +31186,8 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"oYM" = ( -/obj/structure/platform_decoration, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "oYO" = ( /obj/structure/platform{ dir = 1 @@ -38133,17 +31200,12 @@ /area/lv522/landing_zone_2) "oYZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "oZC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "oZN" = ( /obj/structure/platform, @@ -38168,19 +31230,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "paK" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "paT" = ( /obj/structure/cargo_container/kelland/right, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "pbi" = ( @@ -38199,10 +31256,7 @@ /area/lv522/indoors/a_block/hallway) "pbO" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "pco" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -38220,17 +31274,11 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "pcz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/outdoor_bot) "pcH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -38241,10 +31289,7 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "pcQ" = ( /obj/effect/decal/cleanable/blood, @@ -38272,7 +31317,7 @@ dir = 8 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "pdq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper B-Block - Hydroponics Airlock"; @@ -38282,9 +31327,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "pdr" = ( /obj/structure/curtain/red, @@ -38296,9 +31339,7 @@ name = "????"; stat = 2 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pdv" = ( /obj/structure/platform_decoration{ @@ -38310,18 +31351,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "pdB" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pdF" = ( /obj/effect/decal/cleanable/dirt, @@ -38329,9 +31366,7 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "pdO" = ( /obj/structure/pipes/vents/pump, @@ -38339,10 +31374,7 @@ /obj/structure/machinery/shower{ pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "pdR" = ( /obj/effect/landmark/objective_landmark/close, @@ -38369,14 +31401,10 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) "pez" = ( /obj/structure/cargo_container/horizontal/blue/top, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "peM" = ( @@ -38384,17 +31412,14 @@ dir = 1 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "peS" = ( /obj/structure/surface/table/almayer{ dir = 1; flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "pfe" = ( /obj/structure/bed/chair{ @@ -38416,15 +31441,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pfj" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) "pfq" = ( /obj/structure/machinery/camera/autoname{ @@ -38432,10 +31452,7 @@ network = list("interrogation") }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "pfv" = ( /obj/structure/surface/table/almayer, @@ -38454,14 +31471,10 @@ pixel_x = -4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "pfD" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "pfE" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -38470,10 +31483,7 @@ flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/garden_bridge) "pfN" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -38486,16 +31496,12 @@ dir = 4; id = "Reactor_e_entry_3" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "pfV" = ( /obj/item/prop/alien/hugger, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pfX" = ( /obj/effect/landmark/survivor_spawner, @@ -38505,10 +31511,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "pgm" = ( /obj/item/lightstick/red/spoke/planted{ @@ -38522,10 +31525,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "pgp" = ( /obj/structure/platform{ @@ -38534,9 +31534,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "pgs" = ( /obj/effect/spawner/gibspawner/xeno, @@ -38544,22 +31542,16 @@ dir = 1 }, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "pgt" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "pgy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "pgG" = ( /obj/structure/platform_decoration{ @@ -38572,9 +31564,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "pha" = ( /obj/structure/bed/chair{ @@ -38596,38 +31586,24 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "phn" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) "phq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "phu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "phZ" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pid" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) "pit" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, @@ -38655,9 +31631,7 @@ pixel_y = 7 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "piY" = ( /obj/structure/platform{ @@ -38666,10 +31640,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pjl" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "pjm" = ( /obj/structure/platform{ dir = 8 @@ -38683,10 +31653,7 @@ /area/lv522/outdoors/n_rockies) "pjM" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "pjT" = ( /obj/structure/surface/table/almayer, @@ -38713,15 +31680,11 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "pka" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "pkB" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -38734,17 +31697,8 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) -"pkH" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) "plb" = ( /obj/structure/machinery/door_display/research_cell{ dir = 4; @@ -38752,10 +31706,7 @@ pixel_x = -16; req_access = null }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/filt) "pli" = ( /obj/effect/decal/cleanable/dirt, @@ -38768,36 +31719,26 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "pme" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "pmg" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "png" = ( /obj/structure/cargo_container/wy/mid{ health = 5000 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "pni" = ( /obj/item/weapon/gun/revolver/cmb, @@ -38805,22 +31746,14 @@ /area/lv522/indoors/a_block/kitchen/glass) "pnj" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "pnx" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "pnz" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/hallway) "pnE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38844,9 +31777,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "poQ" = ( /obj/effect/decal/cleanable/dirt, @@ -38866,9 +31797,7 @@ dir = 1; flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ppD" = ( /obj/effect/decal/warning_stripes{ @@ -38897,38 +31826,28 @@ dir = 1; req_one_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "ppX" = ( /obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "pqj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/spacecash/c1000, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "pqA" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "pqB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "pqI" = ( /obj/structure/surface/table/reinforced/prison, @@ -38944,10 +31863,7 @@ pixel_y = 15 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "pqQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38960,9 +31876,7 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) "pqU" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "pqZ" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -39002,9 +31916,7 @@ current_rounds = 4 }, /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "prW" = ( /obj/structure/surface/table/almayer, @@ -39039,10 +31951,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "psq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/filt) "psF" = ( /obj/effect/decal/cleanable/dirt, @@ -39058,30 +31967,21 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) "psT" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "ptc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/filt) "ptp" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "ptU" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "pul" = ( /obj/item/ammo_magazine/pistol/m1911{ @@ -39089,33 +31989,22 @@ pixel_y = 12 }, /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "puu" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "puC" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "puJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "puV" = ( /obj/structure/cargo_container/kelland/right, @@ -39128,22 +32017,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pvd" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) "pvz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "pvW" = ( /obj/item/lightstick/red/spoke/planted{ @@ -39160,10 +32037,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "pwu" = ( /obj/structure/platform_decoration{ @@ -39181,9 +32055,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "pwB" = ( /obj/effect/decal/warning_stripes{ @@ -39191,9 +32063,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "pwC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -39208,32 +32078,17 @@ pixel_y = -6 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pwH" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) +/area/lv522/landing_zone_1/tunnel/far) "pwJ" = ( /obj/structure/prop/dam/crane/damaged, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/lone_buildings/storage_blocks) "pwR" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack{ pixel_y = 2 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "pwT" = ( /obj/effect/decal/cleanable/dirt, @@ -39244,10 +32099,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "pwX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -39262,15 +32114,11 @@ /area/lv522/outdoors/colony_streets/central_streets) "pxN" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "pxS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "pxY" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -39279,19 +32127,14 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "pyc" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) "pyo" = ( /obj/structure/machinery/conveyor{ dir = 10; id = "cargo_container" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "pys" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -39300,10 +32143,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "pyA" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "pyO" = ( /obj/structure/prop/invuln/fire{ @@ -39356,9 +32196,7 @@ pixel_x = -8; pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "pzo" = ( /obj/item/weapon/twohanded/folded_metal_chair, @@ -39367,16 +32205,11 @@ "pzs" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "pzH" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "pAd" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -39384,9 +32217,7 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "pAj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_west_street) "pAp" = ( /obj/structure/largecrate, @@ -39397,10 +32228,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) "pAN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/east_reactor/south) "pAW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39413,30 +32241,23 @@ /obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "pBn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "pBz" = ( /obj/structure/machinery/door/airlock/hatch/cockpit/two, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "pBF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pBK" = ( /obj/structure/surface/table/gamblingtable, @@ -39455,15 +32276,10 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "pBT" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southeast, /area/lv522/indoors/a_block/dorms) "pCb" = ( /obj/structure/filingcabinet/seeds{ @@ -39479,10 +32295,7 @@ /obj/structure/pipes/vents/pump, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "pCg" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39510,9 +32323,7 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "pCv" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39526,10 +32337,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "pCP" = ( /obj/item/tool/hatchet, @@ -39547,58 +32355,40 @@ /obj/item/ammo_magazine/smg/nailgun{ current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "pCW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "pCZ" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "pDe" = ( /obj/structure/machinery/squeezer, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "pDh" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "pDA" = ( /obj/structure/machinery/light, /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "pDM" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "pDU" = ( /obj/structure/barricade/wooden{ @@ -39621,24 +32411,18 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pEk" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "pEm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "pEp" = ( /obj/structure/surface/table/almayer, @@ -39646,9 +32430,7 @@ dir = 8; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "pEs" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -39658,26 +32440,19 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "pEv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; id = "Reactor_e_entry_4" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "pEw" = ( /obj/structure/blocker/forcefield/vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) "pEA" = ( /obj/item/lightstick/red/spoke/planted{ @@ -39694,12 +32469,10 @@ /obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "pFw" = ( /obj/structure/cargo_container/horizontal/blue/middle, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "pFF" = ( @@ -39714,9 +32487,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "pFH" = ( /obj/structure/stairs/perspective{ @@ -39728,9 +32499,7 @@ "pFQ" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "pGe" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -39740,9 +32509,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "pGg" = ( /obj/structure/bed/chair{ @@ -39782,9 +32549,7 @@ pixel_x = -9; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "pGQ" = ( /obj/item/prop/alien/hugger, @@ -39813,7 +32578,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "pHT" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, @@ -39821,9 +32586,7 @@ "pIa" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges/dorms_fitness) "pIu" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -39832,26 +32595,19 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "pIx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "pJb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "pJd" = ( /obj/effect/decal/cleanable/cobweb2, /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "pJh" = ( /obj/structure/surface/table/almayer{ @@ -39861,17 +32617,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "pJj" = ( /obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "pJt" = ( /obj/structure/largecrate/random/mini{ @@ -39887,26 +32637,19 @@ pixel_x = -6; pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "pJG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "pJV" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pJW" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -39927,10 +32670,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "pKo" = ( /obj/effect/decal/cleanable/dirt, @@ -39941,19 +32681,14 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "pKv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; id = "Reactor_e_entry_3" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "pKX" = ( /turf/closed/wall/strata_outpost, @@ -39967,17 +32702,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"pLm" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "pLs" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -39998,9 +32722,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "pLT" = ( /obj/item/reagent_container/glass/bucket/janibucket{ @@ -40013,15 +32735,11 @@ /area/lv522/indoors/a_block/security) "pMd" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "pMg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "pMs" = ( /obj/structure/surface/table/gamblingtable, @@ -40057,18 +32775,14 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel) "pNc" = ( /obj/structure/prop/server_equipment/yutani_server/broken, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40078,16 +32792,12 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "pNo" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/filt) "pNq" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/medical, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "pNs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40097,16 +32807,12 @@ /area/lv522/indoors/a_block/kitchen) "pNv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "pNF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) "pNJ" = ( /obj/structure/stairs/perspective{ @@ -40117,10 +32823,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "pNY" = ( /obj/effect/decal/cleanable/dirt, @@ -40128,9 +32831,7 @@ /area/lv522/indoors/c_block/t_comm) "pOa" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/east_central_street) "pOb" = ( /obj/item/prop/colony/used_flare, @@ -40152,9 +32853,7 @@ pixel_x = 4; pixel_y = 21 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "pOs" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -40176,9 +32875,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pOK" = ( /obj/structure/platform/strata{ @@ -40200,16 +32897,11 @@ pixel_x = 7; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "pPm" = ( /obj/structure/largecrate, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "pPt" = ( /obj/structure/largecrate/random, @@ -40226,9 +32918,7 @@ /obj/item/weapon/gun/rifle/m41a{ current_mag = null }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "pPC" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -40239,21 +32929,16 @@ }, /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "pQq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "pQx" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "pQA" = ( /obj/item/prop/alien/hugger, @@ -40269,11 +32954,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "pQN" = ( /obj/item/cell/apc{ @@ -40284,37 +32965,27 @@ pixel_y = -2 }, /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "pQQ" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 }, /obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "pQR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "pRf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "pRg" = ( /obj/structure/machinery/camera/autoname/lz_camera, @@ -40326,10 +32997,7 @@ "pRi" = ( /obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "pRv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -40355,15 +33023,10 @@ "pRR" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "pRT" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/cargo_intake) "pSs" = ( /obj/structure/machinery/light{ @@ -40373,46 +33036,32 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "pSK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" - }, +/turf/open/floor/almayer/w_y1/north, /area/lv522/atmos/way_in_command_centre) "pTa" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "pTj" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "pTl" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "pTB" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pTO" = ( /obj/effect/decal/cleanable/dirt, @@ -40441,9 +33090,7 @@ pixel_y = 13 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pTW" = ( /obj/item/explosive/mine/active{ @@ -40463,15 +33110,11 @@ "pUd" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "pUf" = ( /obj/structure/tent/big, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "pUo" = ( /obj/structure/pipes/vents/pump, @@ -40479,9 +33122,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "pUv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) "pUR" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -40492,9 +33133,7 @@ /area/lv522/outdoors/w_rockies) "pVb" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "pVn" = ( /obj/structure/platform_decoration, @@ -40519,16 +33158,10 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "pVx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "pVy" = ( /obj/structure/closet/crate, @@ -40536,9 +33169,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "pVA" = ( /obj/structure/bed/chair{ @@ -40551,10 +33182,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) "pVX" = ( /obj/structure/machinery/light{ @@ -40565,17 +33193,12 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "pWk" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "pWx" = ( /obj/structure/machinery/power/apc/weak{ @@ -40585,9 +33208,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "pWR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40600,17 +33221,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "pWX" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "pXh" = ( /obj/effect/decal/cleanable/dirt, @@ -40621,28 +33236,20 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "pXk" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "pXq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "pXu" = ( /obj/structure/cargo_container/kelland/right, @@ -40651,15 +33258,12 @@ "pXv" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "pXx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "pXz" = ( /obj/structure/platform{ @@ -40671,10 +33275,7 @@ /obj/structure/flora/bush/ausbushes/grassybush{ pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "pXR" = ( /obj/structure/barricade/sandbags, @@ -40689,17 +33290,13 @@ dir = 8 }, /obj/vehicle/train/cargo/engine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "pYj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "pYu" = ( @@ -40709,10 +33306,7 @@ "pYG" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "pYN" = ( /obj/structure/platform_decoration{ @@ -40728,17 +33322,12 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "pYP" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/oob) "pYY" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "pZb" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -40747,9 +33336,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "pZi" = ( /obj/structure/prop/invuln/ice_prefab, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "pZo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -40768,9 +33355,7 @@ name = "\improper UA Prepared Meal (cornbread)"; pixel_y = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "pZA" = ( /obj/item/storage/secure/safe{ @@ -40799,26 +33384,21 @@ pixel_x = 8; pixel_y = 3 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "qal" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qaT" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "qbf" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "qbi" = ( @@ -40827,15 +33407,11 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "qbu" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_street) "qbB" = ( /obj/effect/decal/cleanable/dirt, @@ -40845,17 +33421,13 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "qbD" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_east_street) "qbG" = ( /obj/effect/decal{ @@ -40891,7 +33463,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "qbW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -40915,10 +33487,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "qcd" = ( /obj/item/tool/wirecutters, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "qce" = ( /obj/structure/pipes/vents/pump, @@ -40935,39 +33504,28 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "qcw" = ( /obj/effect/spawner/gibspawner/human, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "qcy" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "qcA" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "qcO" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "qda" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "qdc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -40986,9 +33544,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "qdS" = ( /obj/structure/bed/sofa/south/grey/left, @@ -41000,23 +33556,17 @@ layer = 2.6 }, /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "qeJ" = ( /obj/structure/prop/vehicles/crawler, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "qeK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qfm" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -41042,16 +33592,11 @@ /area/lv522/indoors/a_block/dorms/glass) "qfz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "qfD" = ( /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "qfK" = ( /obj/structure/machinery/light{ @@ -41074,9 +33619,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "qgj" = ( /obj/structure/barricade/wooden{ @@ -41102,9 +33645,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "qhO" = ( /obj/structure/bed/chair/comfy{ @@ -41128,10 +33669,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "qiw" = ( /obj/effect/decal/cleanable/dirt, @@ -41142,17 +33680,12 @@ }, /obj/structure/machinery/light, /obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "qix" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "qiC" = ( /obj/structure/machinery/camera/autoname{ @@ -41161,24 +33694,18 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "qiG" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorm_north) "qiJ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qiN" = ( /obj/effect/decal/cleanable/dirt, @@ -41188,18 +33715,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "qjq" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ icon_state = "hydrotray4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "qjr" = ( /obj/item/prop/alien/hugger, @@ -41219,9 +33741,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) "qjC" = ( /obj/item/stack/rods, @@ -41234,9 +33754,7 @@ /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) "qjO" = ( /obj/effect/decal/warning_stripes{ @@ -41261,9 +33779,7 @@ "qlr" = ( /obj/item/trash/barcardine, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "qly" = ( /obj/structure/surface/table/almayer, @@ -41308,18 +33824,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "qmp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger{ pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qmr" = ( /obj/structure/surface/table/almayer, @@ -41328,10 +33840,7 @@ pixel_y = 15 }, /obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "qmA" = ( /turf/open/floor/plating, @@ -41345,9 +33854,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) "qmM" = ( /obj/structure/prop/invuln/fire{ @@ -41387,10 +33894,7 @@ /obj/item/clothing/head/headset{ pixel_x = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qnn" = ( /obj/structure/surface/table/almayer, @@ -41402,9 +33906,7 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "qnG" = ( /obj/structure/surface/table/almayer, @@ -41420,9 +33922,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "qnM" = ( /obj/effect/decal/cleanable/dirt, @@ -41439,33 +33939,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "qnU" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "qnY" = ( /obj/structure/surface/table/almayer, /obj/item/prop/alien/hugger, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qoj" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "qot" = ( /obj/structure/surface/table/almayer, @@ -41477,16 +33968,10 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "qpc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/lone_buildings/storage_blocks) "qpd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/sewer) "qpq" = ( /obj/structure/surface/table/almayer, @@ -41505,9 +33990,7 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "qpz" = ( /obj/structure/cable/heavyduty{ @@ -41534,10 +34017,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "qpE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) "qpJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -41549,30 +34029,19 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "qqc" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "qqk" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "qqq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/filt) "qqx" = ( /obj/structure/barricade/wooden{ @@ -41599,9 +34068,7 @@ pixel_x = 9; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "qqG" = ( /obj/structure/platform, @@ -41629,9 +34096,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/garage) "qqW" = ( /obj/structure/surface/rack, @@ -41642,10 +34107,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "qrf" = ( /obj/structure/prop/almayer/computers/sensor_computer3, @@ -41654,22 +34116,15 @@ health = 80; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "qrj" = ( /obj/structure/machinery/optable, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/outdoors/w_rockies) "qro" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "qrG" = ( /obj/structure/surface/table/almayer, @@ -41681,9 +34136,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) "qsi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -41717,10 +34170,7 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers{ layer = 3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "qsN" = ( /obj/structure/window_frame/strata, @@ -41731,9 +34181,7 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "qsU" = ( /obj/structure/platform{ @@ -41743,9 +34191,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "qsW" = ( /obj/structure/platform{ @@ -41768,9 +34214,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "qts" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -41811,10 +34255,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "qtN" = ( /obj/effect/decal/warning_stripes{ @@ -41846,10 +34287,7 @@ /area/lv522/indoors/c_block/cargo) "quL" = ( /obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "qvb" = ( /obj/structure/stairs/perspective{ @@ -41857,15 +34295,10 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "qvA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "qvJ" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -41890,9 +34323,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "qvY" = ( /obj/structure/pipes/vents/pump, @@ -41917,14 +34348,12 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qxf" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "qxg" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -41942,10 +34371,7 @@ }, /obj/item/toy/deck, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "qxk" = ( /obj/structure/platform_decoration{ @@ -41959,10 +34385,7 @@ /area/lv522/indoors/c_block/cargo) "qxp" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "qxB" = ( /obj/item/ammo_magazine/sniper{ @@ -41980,26 +34403,18 @@ /area/lv522/outdoors/colony_streets/north_east_street) "qxD" = ( /obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "qxF" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bedroom" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "qxL" = ( /obj/structure/closet/secure_closet/medical2, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "qxO" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -42007,7 +34422,7 @@ }, /obj/item/stack/sheet/metal, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "qxX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -42031,9 +34446,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qyG" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -42042,19 +34455,13 @@ "qyI" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "qyM" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "qyS" = ( /obj/structure/desertdam/decals/road_edge{ @@ -42074,9 +34481,7 @@ id = "sh_dropship2"; name = "\improper Typhoon crew hatch" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qzw" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -42109,19 +34514,14 @@ pixel_x = -11; pixel_y = 16 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "qzD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/north, /area/lv522/indoors/a_block/medical) "qzE" = ( /obj/structure/platform{ @@ -42151,33 +34551,25 @@ /area/lv522/indoors/c_block/casino) "qAy" = ( /obj/item/toy/beach_ball, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "qAF" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "qAS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/reactor_garage) "qAX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "qBb" = ( /obj/structure/barricade/wooden, @@ -42212,9 +34604,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "qBE" = ( /obj/structure/surface/table/almayer, @@ -42237,15 +34627,11 @@ name = "\improper Northlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/corpo) "qBW" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "qCd" = ( /obj/structure/machinery/power/apc/weak{ @@ -42255,20 +34641,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "qCe" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/corpo) -"qCs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "qCB" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/blue{ @@ -42285,9 +34662,7 @@ name = "blue slippers"; pixel_y = -8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "qCE" = ( /obj/item/clothing/mask/facehugger{ @@ -42297,18 +34672,13 @@ name = "????"; stat = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) "qCL" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "qCY" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -42329,10 +34699,7 @@ name = "Suit Storage Unit"; pixel_x = 3 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "qDl" = ( /obj/effect/decal/warning_stripes{ @@ -42356,7 +34723,6 @@ dir = 1; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "qDw" = ( @@ -42368,7 +34734,6 @@ dir = 5; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "qDL" = ( @@ -42410,18 +34775,14 @@ name = "\improper C-Block - Casino Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "qEu" = ( /obj/structure/stairs/perspective{ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qEQ" = ( /obj/effect/decal/cleanable/dirt, @@ -42432,18 +34793,14 @@ /area/lv522/atmos/sewer) "qET" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "qEU" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "qFc" = ( /obj/effect/decal/warning_stripes{ @@ -42456,9 +34813,7 @@ /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "qFs" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -42466,15 +34821,11 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qFE" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) "qFW" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "qGf" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -42487,19 +34838,14 @@ phone_id = "Colony Fitness"; pixel_y = 26 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "qGq" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qGC" = ( /turf/open/floor/prison, @@ -42509,9 +34855,7 @@ /obj/structure/machinery/portable_atmospherics/hydroponics{ icon_state = "hydrotray4" }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "qGI" = ( /obj/structure/ore_box{ @@ -42529,9 +34873,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "qHa" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qHg" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -42552,9 +34894,7 @@ dir = 4; id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "qHr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -42577,10 +34917,7 @@ pixel_x = 5; pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qHD" = ( /obj/effect/decal/cleanable/dirt, @@ -42612,32 +34949,24 @@ /area/lv522/oob) "qIy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "qIE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "qIJ" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "qJl" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qJp" = ( /obj/structure/pipes/vents/pump, @@ -42645,10 +34974,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "qJv" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -42657,10 +34983,7 @@ /obj/structure/flora/bush/ausbushes/pointybush{ pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "qJy" = ( /obj/structure/largecrate/random, @@ -42668,15 +34991,10 @@ /area/lv522/outdoors/colony_streets/south_west_street) "qJE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "qJH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "qJK" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -42701,9 +35019,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "qKk" = ( /obj/effect/landmark/survivor_spawner, @@ -42729,9 +35045,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "qKO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "qKV" = ( /obj/structure/platform_decoration{ @@ -42739,15 +35053,12 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "qLa" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "qLd" = ( /obj/structure/surface/table/almayer, @@ -42757,26 +35068,19 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/outdoors/w_rockies) "qLk" = ( /obj/structure/closet/firecloset/full, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "qLu" = ( /obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) "qLy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "qLz" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -42788,9 +35092,7 @@ pixel_y = 26 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "qLQ" = ( /obj/item/storage/backpack/marine/satchel{ @@ -42834,20 +35136,11 @@ icon_state = "70" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"qMJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "qNg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bedroom" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "qNh" = ( /obj/effect/landmark/yautja_teleport, @@ -42868,23 +35161,16 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "qNG" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "qNI" = ( /obj/structure/cargo_container/grant/right, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "qNK" = ( /obj/structure/surface/table/almayer, @@ -42916,10 +35202,7 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "qNQ" = ( /obj/structure/surface/table/almayer, @@ -42929,10 +35212,7 @@ }, /obj/item/seeds/potatoseed, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "qNR" = ( /obj/structure/barricade/handrail/strata{ @@ -42946,15 +35226,10 @@ name = "blue slippers" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "qOa" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "qOi" = ( /obj/structure/prop/invuln/fire{ @@ -42971,51 +35246,35 @@ }, /obj/structure/surface/table/almayer, /obj/item/prop/colony/game, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) "qOQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "qOS" = ( /obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "qPm" = ( /obj/item/ammo_box/magazine/misc/mre/empty, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "qPq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/command_centre) "qPu" = ( /obj/item/weapon/gun/revolver/cmb, /obj/item/clothing/head/soft/sec, /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "qPA" = ( /obj/structure/barricade/handrail/strata{ @@ -43043,16 +35302,13 @@ pixel_y = 6 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "qPT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "qPU" = ( /obj/structure/bed/chair{ @@ -43068,9 +35324,7 @@ /area/lv522/indoors/c_block/garage) "qQh" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "qQi" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -43080,9 +35334,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "qQo" = ( /obj/structure/closet/bodybag, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "qQp" = ( /obj/structure/bed/chair{ @@ -43092,10 +35344,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "qQr" = ( /obj/item/trash/candle{ @@ -43109,9 +35358,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "qQB" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -43123,9 +35370,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "qQN" = ( /obj/structure/machinery/light{ @@ -43134,10 +35379,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "qQQ" = ( /obj/structure/largecrate/random, @@ -43155,18 +35397,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "qRw" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "qRB" = ( /obj/structure/closet/crate, @@ -43185,10 +35422,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "qRH" = ( /obj/structure/platform{ @@ -43201,28 +35435,20 @@ /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "qSj" = ( /obj/structure/surface/rack, /obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "qSk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "qSu" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "qSw" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -43246,9 +35472,7 @@ pixel_y = 10 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "qSP" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -43262,10 +35486,7 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush{ pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "qSW" = ( /obj/structure/platform{ @@ -43275,9 +35496,7 @@ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "qTh" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -43292,17 +35511,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "qTu" = ( /obj/structure/girder, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "qTx" = ( /obj/structure/window/framed/strata/reinforced, @@ -43311,15 +35524,11 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "qTE" = ( /obj/item/clothing/suit/storage/marine/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/east_reactor/south) "qTG" = ( /obj/structure/window/framed/strata/reinforced, @@ -43327,19 +35536,14 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "qTH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/command_centre) "qTI" = ( /obj/item/lightstick/red/spoke/planted{ @@ -43375,9 +35579,7 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qUh" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -43387,32 +35589,24 @@ /area/lv522/outdoors/colony_streets/south_east_street) "qUq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "qUs" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) "qUz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "qUL" = ( /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) "qUQ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "qVb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -43423,18 +35617,14 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "qVf" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qVl" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -43445,9 +35635,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Electronics Storage" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/outdoor_bot) "qVN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -43457,9 +35645,7 @@ dir = 4; id = "Reactor_e_entry_4" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "qVQ" = ( /obj/structure/machinery/camera/autoname{ @@ -43468,7 +35654,6 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "qWf" = ( @@ -43490,7 +35675,7 @@ layer = 3.1; pixel_y = -15 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qWt" = ( /obj/structure/window/framed/strata/reinforced, @@ -43498,9 +35683,7 @@ dir = 4; id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "qWX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -43508,9 +35691,7 @@ name = "\improper Human Resources Office" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "qWZ" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -43520,7 +35701,6 @@ "qXs" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "qXH" = ( @@ -43534,9 +35714,7 @@ dir = 1 }, /obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qXY" = ( /obj/structure/platform{ @@ -43547,26 +35725,20 @@ "qYc" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door/window/eastleft, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) "qYk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "qYl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "qYo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -43575,18 +35747,14 @@ "qYp" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "qYq" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "qYt" = ( /obj/item/stack/sheet/metal, @@ -43597,16 +35765,11 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "qYv" = ( /obj/structure/closet/basketball, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "qYy" = ( /obj/structure/stairs/perspective{ @@ -43616,9 +35779,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "qYG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -43629,9 +35790,7 @@ /area/lv522/indoors/b_block/hydro) "qYM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) "qYP" = ( /obj/structure/platform{ @@ -43648,18 +35807,14 @@ "qYX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "qZd" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "qZf" = ( /obj/item/storage/belt/marine{ @@ -43673,26 +35828,18 @@ /obj/item/storage/fancy/egg_box, /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qZu" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "qZB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "qZC" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "qZJ" = ( /obj/structure/machinery/light{ @@ -43702,10 +35849,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "qZT" = ( /obj/item/prop/colony/usedbandage{ @@ -43720,9 +35864,7 @@ pixel_y = 4 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "qZY" = ( /obj/item/weapon/gun/rifle/m41a{ @@ -43738,37 +35880,26 @@ icon_state = "W" }, /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "raj" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "ran" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "rar" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "ras" = ( /obj/structure/powerloader_wreckage/jd, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "raH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -43784,10 +35915,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "raS" = ( /obj/structure/desertdam/decals/road_edge{ @@ -43867,9 +35995,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "rbV" = ( /obj/structure/prop/vehicles/crawler{ @@ -43883,9 +36009,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "rbX" = ( /obj/effect/landmark/yautja_teleport, @@ -43945,32 +36069,23 @@ /area/lv522/indoors/a_block/fitness/glass) "rcR" = ( /obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "rcV" = ( /obj/structure/machinery/bioprinter, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "rdc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "rdf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/reactor_garage) "rdq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -43989,10 +36104,7 @@ /obj/item/tool/wrench{ pixel_y = -6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "rdF" = ( /obj/structure/closet/crate/medical, @@ -44014,19 +36126,14 @@ icon_state = "crawler_crate_alt2"; layer = 3.1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) "rdT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway/damage) "rej" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "reo" = ( /turf/open/floor/carpet, @@ -44041,15 +36148,10 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2/ceiling) "rex" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "reB" = ( /obj/item/tool/surgery/WYautopsy, @@ -44058,10 +36160,7 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "reQ" = ( /obj/structure/bed/chair{ @@ -44070,9 +36169,7 @@ /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) "rfe" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/corpo) "rfg" = ( /obj/structure/platform{ @@ -44081,9 +36178,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "rfi" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -44106,10 +36201,7 @@ pixel_y = 5 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "rfB" = ( /obj/structure/prop/ice_colony/flamingo{ @@ -44118,9 +36210,7 @@ pixel_x = -7; pixel_y = 10 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/east_central_street) "rfK" = ( /obj/structure/surface/table/almayer, @@ -44135,9 +36225,7 @@ registered_name = "John Forklift" }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "rfW" = ( /obj/structure/surface/table/reinforced/prison, @@ -44148,18 +36236,14 @@ "rge" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "rgk" = ( /obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "rgn" = ( -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "rgA" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -44182,52 +36266,36 @@ dir = 1 }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "rhh" = ( /obj/structure/bed/chair/wheelchair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "rhk" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "rhz" = ( /obj/structure/pipes/standard/tank/oxygen{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "rhB" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "rhF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "rie" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "rii" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -44249,9 +36317,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "riZ" = ( /obj/structure/platform{ @@ -44263,10 +36329,7 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush{ pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "rjl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -44278,9 +36341,7 @@ pixel_y = 26 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "rjn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -44303,52 +36364,37 @@ /obj/structure/largecrate/random/barrel/green{ pixel_x = -2 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "rjJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/east_central_street) "rjP" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "rkd" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "rkV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "rla" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/filt) "rls" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "rlB" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -44356,9 +36402,7 @@ "rlI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "rlV" = ( /obj/effect/decal/cleanable/blood/oil, @@ -44372,10 +36416,7 @@ /obj/item/tool/surgery/scalpel, /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "rmi" = ( /obj/structure/machinery/camera/autoname{ @@ -44384,9 +36425,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "rmp" = ( /obj/structure/largecrate/random/barrel/red, @@ -44405,15 +36444,11 @@ /obj/structure/bed/chair{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "rmD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/hallway) "rmM" = ( /obj/structure/bed, @@ -44421,16 +36456,11 @@ layer = 3.1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "rmV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/south) "rmX" = ( /obj/effect/decal/warning_stripes{ @@ -44444,18 +36474,14 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "rnp" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "rnq" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, @@ -44471,9 +36497,7 @@ /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "rnB" = ( /turf/open/auto_turf/sand_white/layer0, @@ -44485,18 +36509,12 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "rnT" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/landing_zone_1) "rod" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "rot" = ( /obj/structure/cargo_container/kelland/right, @@ -44514,9 +36532,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "rox" = ( /obj/structure/bed/chair/comfy{ @@ -44530,32 +36546,21 @@ /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "roM" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/west) "roN" = ( /obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "roT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "rpe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44566,9 +36571,7 @@ dir = 4 }, /obj/effect/spawner/random/toy, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) "rpm" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -44582,35 +36585,23 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) "rpG" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/lv522/indoors/a_block/hallway) "rqd" = ( /obj/structure/pipes/vents/pump, /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "rqn" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2) "rqs" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges) "rqA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "rqE" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -44632,9 +36623,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "rrf" = ( /obj/structure/platform, @@ -44648,27 +36637,19 @@ "rro" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "rrI" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "rrN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "rrV" = ( /obj/structure/window_frame/strata, @@ -44678,9 +36659,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "rsa" = ( /obj/effect/decal/cleanable/dirt, @@ -44692,9 +36671,7 @@ "rsl" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "rsq" = ( /obj/item/toy/beach_ball, @@ -44707,7 +36684,7 @@ }, /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "rsF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -44740,9 +36717,7 @@ pixel_x = -4; pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rtr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44756,16 +36731,10 @@ dir = 4 }, /obj/structure/medical_supply_link/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "rtw" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/reactor_garage) "rtz" = ( /obj/item/stack/sheet/wood, @@ -44790,9 +36759,7 @@ /area/lv522/outdoors/nw_rockies) "rtX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ruc" = ( /obj/structure/cargo_container/kelland/left{ @@ -44814,9 +36781,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "rus" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "ruv" = ( /obj/structure/blocker/invisible_wall, @@ -44844,9 +36809,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "ruY" = ( /obj/structure/machinery/optable, @@ -44855,17 +36818,12 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "rvg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "rvh" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, @@ -44882,10 +36840,7 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush{ pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "rvv" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -44895,15 +36850,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "rvw" = ( /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "rvx" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -44912,9 +36863,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "rvI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_west_street) "rwo" = ( /obj/structure/surface/table/almayer, @@ -44933,9 +36882,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "rwx" = ( /obj/structure/desertdam/decals/road_edge{ @@ -44984,9 +36931,7 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) "rwM" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "rwR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -45006,25 +36951,18 @@ "rxl" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/tofukabob, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rxo" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "rxu" = ( /obj/structure/stairs/perspective{ dir = 5; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "rxI" = ( /turf/open/auto_turf/shale/layer2, @@ -45035,32 +36973,24 @@ /obj/item/tool/surgery/retractor, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "rxT" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ id = "East_Lock"; name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "ryj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "rys" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "ryu" = ( @@ -45071,49 +37001,33 @@ /obj/item/ore/silver, /obj/item/ore/silver, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "ryv" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "ryI" = ( /obj/structure/largecrate/random, /obj/item/explosive/plastic/breaching_charge{ pixel_y = -2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "ryO" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/executive) "ryT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/corpo/glass) "ryU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "rza" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/filt) "rzq" = ( /obj/structure/cargo_container/kelland/left, @@ -45121,18 +37035,12 @@ /area/lv522/outdoors/colony_streets/north_west_street) "rzz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "rzG" = ( /obj/structure/surface/table/almayer, /obj/item/storage/beer_pack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rzR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45153,45 +37061,32 @@ /area/lv522/indoors/b_block/bar) "rAg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "rAu" = ( /obj/structure/platform_decoration, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/landing_zone_1) "rAK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges) "rAL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "rAM" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "rAX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "rBd" = ( /obj/structure/platform{ @@ -45222,10 +37117,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "rCa" = ( /obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "rCi" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -45233,28 +37125,20 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "rCu" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/outdoors/n_rockies) "rCz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "rCE" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "rCI" = ( /obj/structure/prop/invuln/fire{ @@ -45269,9 +37153,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_east_street) "rCV" = ( /obj/item/prop/colony/used_flare, @@ -45290,9 +37172,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "rEc" = ( /obj/structure/surface/table/almayer{ @@ -45302,28 +37182,21 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "rEj" = ( /obj/structure/machinery/door/airlock/almayer/medical{ dir = 2; name = "\improper A-Block - Colony Medical Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "rEm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/t_comm) "rEP" = ( /obj/effect/spawner/gibspawner/human, @@ -45331,9 +37204,7 @@ /area/lv522/outdoors/w_rockies) "rEV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "rFh" = ( /obj/structure/platform_decoration{ @@ -45347,21 +37218,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "rFp" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ icon_state = "51" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"rFw" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "rFT" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/plating, @@ -45377,9 +37240,7 @@ /area/lv522/outdoors/w_rockies) "rGm" = ( /obj/item/tool/weldingtool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "rGD" = ( /obj/effect/decal/cleanable/dirt, @@ -45395,27 +37256,21 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rHl" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "rHu" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rHX" = ( /obj/structure/closet/crate/trashcart, @@ -45427,10 +37282,7 @@ /obj/structure/fence{ layer = 2.9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/outdoors/colony_streets/south_west_street) "rIn" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45444,16 +37296,11 @@ }, /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "rIB" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "rIH" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -45461,9 +37308,7 @@ pixel_x = 11; pixel_y = 24 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rIM" = ( /obj/structure/window/framed/strata/reinforced, @@ -45472,38 +37317,22 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "rIZ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rJf" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorm_north) "rJr" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) -"rJv" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "rJB" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -45527,17 +37356,12 @@ /area/lv522/indoors/a_block/dorms) "rJI" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/nw_rockies) "rKa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "rKe" = ( /obj/structure/platform{ @@ -45547,9 +37371,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "rKg" = ( /obj/structure/surface/table/almayer, @@ -45561,19 +37383,13 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "rKt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "rKz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45581,18 +37397,14 @@ }, /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "rKS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "rKW" = ( /obj/effect/decal/cleanable/blood, @@ -45610,9 +37422,7 @@ pixel_x = -8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "rLg" = ( /obj/structure/window/framed/strata/reinforced, @@ -45620,15 +37430,11 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "rLk" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "rLq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45637,10 +37443,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "rLt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -45650,10 +37453,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "rLx" = ( /obj/structure/surface/table/woodentable/fancy, @@ -45671,10 +37471,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "rLB" = ( /obj/effect/decal/warning_stripes{ @@ -45685,17 +37482,13 @@ icon_state = "W" }, /obj/structure/fence, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "rMb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "rMd" = ( /obj/item/weapon/gun/boltaction{ @@ -45707,18 +37500,12 @@ /area/lv522/indoors/c_block/t_comm) "rMg" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "rMi" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "rMr" = ( /obj/effect/decal/cleanable/dirt, @@ -45726,9 +37513,7 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/hallway) "rMz" = ( /obj/item/storage/backpack/marine/satchel{ @@ -45743,9 +37528,7 @@ /area/lv522/outdoors/colony_streets/east_central_street) "rMD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "rME" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, @@ -45763,9 +37546,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "rNs" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "rNv" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45783,9 +37564,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) "rNF" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "rNO" = ( /obj/structure/surface/table/almayer, @@ -45793,9 +37572,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "rOb" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "rOf" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45829,7 +37606,6 @@ dir = 6; layer = 3.51 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/landing_zone_1) "rOD" = ( @@ -45847,10 +37623,7 @@ pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "rOO" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -45861,27 +37634,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "rPu" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"rPQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "rQd" = ( /obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "rQg" = ( /obj/structure/window/framed/strata/reinforced, @@ -45889,9 +37651,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "rQB" = ( /obj/structure/closet/crate/miningcar/yellow, @@ -45915,9 +37675,7 @@ pixel_y = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "rRm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -45925,9 +37683,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rRr" = ( /obj/structure/filingcabinet/filingcabinet{ @@ -45940,10 +37696,7 @@ pixel_x = -8; pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "rRy" = ( /obj/structure/prop/server_equipment/yutani_server{ @@ -45952,16 +37705,12 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "rRA" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "rRJ" = ( /obj/effect/decal/cleanable/dirt, @@ -45977,9 +37726,7 @@ /obj/item/reagent_container/food/snacks/packaged_hdogs{ pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/t_comm) "rRP" = ( /obj/effect/decal/cleanable/blood/drip, @@ -45996,10 +37743,7 @@ /area/lv522/indoors/a_block/kitchen/damage) "rRY" = ( /obj/structure/closet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "rSd" = ( /obj/structure/desertdam/decals/road_edge{ @@ -46027,27 +37771,18 @@ "rSe" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "rSh" = ( /obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "rSs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "rSG" = ( /obj/item/clothing/shoes/jackboots{ @@ -46060,9 +37795,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "rSW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -46071,34 +37804,24 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush{ pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "rTf" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_east_street) "rTh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "rUe" = ( /obj/structure/largecrate/supply{ pixel_x = -4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "rUg" = ( /obj/structure/platform_decoration{ @@ -46111,18 +37834,14 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "rUl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "rUr" = ( /obj/structure/machinery/prop/almayer/computer/PC{ @@ -46138,7 +37857,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "rUX" = ( /obj/structure/shuttle/engine/heater{ @@ -46166,41 +37885,29 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/central_streets) "rVB" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "rVO" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) "rVR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "rVW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "rWu" = ( /obj/effect/decal/cleanable/dirt, @@ -46211,9 +37918,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "rWP" = ( /obj/structure/window/framed/strata/reinforced, @@ -46227,16 +37932,12 @@ dir = 1 }, /obj/structure/ore_box, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "rXa" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "rXb" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -46248,9 +37949,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "rXr" = ( /obj/structure/fence{ @@ -46263,16 +37962,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/nw_rockies) "rXE" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "rXH" = ( /obj/effect/decal/cleanable/blood, @@ -46281,9 +37975,7 @@ /area/lv522/indoors/b_block/hydro) "rYg" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "rYi" = ( /obj/structure/platform{ @@ -46302,26 +37994,20 @@ /obj/structure/platform_decoration{ dir = 10 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) "rYu" = ( /obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "rYD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) "rYE" = ( /obj/effect/decal/cleanable/vomit{ @@ -46360,24 +38046,16 @@ "rZi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/bridges/dorms_fitness) "rZE" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "rZF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/bridges/dorms_fitness) "rZK" = ( /obj/structure/stairs/perspective{ @@ -46389,9 +38067,7 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) "rZL" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2/ceiling) "sag" = ( /obj/structure/ore_box, @@ -46406,9 +38082,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "say" = ( /obj/structure/pipes/vents/pump, @@ -46424,9 +38098,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "saz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46440,7 +38112,6 @@ /area/lv522/oob) "saL" = ( /obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/landing_zone_1) "saQ" = ( @@ -46453,26 +38124,19 @@ icon_state = "flammable_pipe_3"; pixel_x = 2 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "saS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "saV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "saY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -46489,9 +38153,7 @@ dir = 1; name = "\improper Mining Overseers Office" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "sbh" = ( /obj/structure/platform_decoration, @@ -46502,7 +38164,7 @@ /area/lv522/landing_zone_2/ceiling) "sbj" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "sbm" = ( /obj/effect/decal/warning_stripes{ @@ -46513,9 +38175,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/n_rockies) "sbx" = ( /obj/structure/machinery/camera/autoname{ @@ -46524,9 +38184,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "sbG" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -46535,10 +38193,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "sbJ" = ( /obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "sbV" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -46552,9 +38207,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) "scd" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/kitchen/damage) "sci" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -46570,17 +38223,13 @@ /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "scM" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/cheeseburger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "sdC" = ( /obj/structure/largecrate/random/secure{ @@ -46597,22 +38246,17 @@ "sdM" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "sdN" = ( /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "sdR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "sec" = ( /obj/structure/prop/invuln/fire{ @@ -46638,9 +38282,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "seA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "seF" = ( /obj/structure/window/framed/corsat, @@ -46650,10 +38292,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "seJ" = ( /obj/structure/surface/table/almayer, @@ -46663,33 +38302,21 @@ /obj/item/toy/crossbow_ammo, /obj/item/toy/crossbow_ammo, /obj/item/toy/crossbow_ammo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "seX" = ( /obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_west_street) "sfc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/way_in_command_centre) "sfm" = ( /obj/structure/surface/table/almayer, /obj/item/toy/bikehorn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "sfI" = ( /obj/structure/platform{ @@ -46704,9 +38331,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "sfO" = ( /obj/structure/platform_decoration{ @@ -46731,9 +38356,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "sgG" = ( /obj/structure/surface/table/almayer, @@ -46744,9 +38367,7 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{ pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "sgT" = ( /turf/closed/wall/strata_outpost/reinforced/hull, @@ -46762,26 +38383,19 @@ /area/lv522/indoors/a_block/executive) "sha" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "shc" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "she" = ( /obj/structure/machinery/floodlight, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/lone_buildings/storage_blocks) "shh" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ @@ -46789,17 +38403,12 @@ id = "sh_dropship2"; name = "\improper Typhoon crew hatch" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "shm" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "shq" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -46814,18 +38423,13 @@ /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "shZ" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/east_central_street) "sid" = ( /obj/structure/stairs/perspective{ @@ -46837,32 +38441,22 @@ "sil" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "six" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "siB" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "siT" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "siX" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -46876,9 +38470,7 @@ /area/lv522/outdoors/colony_streets/south_street) "sjb" = ( /obj/item/stack/sandbags/small_stack, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "sjd" = ( /obj/effect/decal/cleanable/dirt, @@ -46886,11 +38478,7 @@ /obj/item/key/cargo_train{ icon_state = "keys" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "sje" = ( /obj/structure/bed/chair{ @@ -46898,10 +38486,7 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "sjp" = ( /obj/structure/bed/chair{ @@ -46909,20 +38494,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "sjx" = ( /obj/item/prop/colony/canister{ layer = 3.1; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/reactor_garage) "sjy" = ( /turf/closed/wall/strata_outpost, @@ -46952,9 +38531,7 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "sjQ" = ( /obj/effect/decal/cleanable/dirt, @@ -46965,9 +38542,7 @@ /obj/structure/closet/crate/green, /obj/item/device/sentry_computer, /obj/item/defenses/handheld/sentry, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "sjY" = ( /turf/open/auto_turf/shale/layer2, @@ -46980,24 +38555,17 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "skk" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "skC" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "skE" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -47010,19 +38578,14 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "skU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "slq" = ( /obj/structure/platform_decoration{ @@ -47041,9 +38604,7 @@ phone_id = "Reactor Control"; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "slD" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -47072,9 +38633,7 @@ pixel_x = -9; pixel_y = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "slO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47090,10 +38649,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "smr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/reactor_garage) "sms" = ( /obj/effect/decal/cleanable/blood/drip, @@ -47101,25 +38657,17 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "smF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical/glass) "smK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "smR" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -47127,18 +38675,14 @@ id = "West LZ Storage"; name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) "smY" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "snb" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -47151,9 +38695,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "sno" = ( /obj/structure/prop/invuln/ice_prefab, @@ -47164,26 +38706,19 @@ dir = 8 }, /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "snP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "snR" = ( /obj/structure/surface/rack, /obj/item/tank/oxygen, /obj/item/tank/oxygen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "snX" = ( /turf/closed/wall/strata_outpost, @@ -47205,10 +38740,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "spe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47216,10 +38748,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"spj" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/landing_zone_1/tunnel) "spm" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, @@ -47233,15 +38761,10 @@ pixel_y = -1 }, /obj/effect/landmark/corpsespawner/wy/manager, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "spo" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "sps" = ( /obj/effect/decal/warning_stripes{ @@ -47259,9 +38782,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "spz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -47269,24 +38790,17 @@ dir = 1; name = "\improper Mining Control" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "spB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "spI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/north) "spJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47297,9 +38811,7 @@ /area/lv522/indoors/b_block/bridge) "spM" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "spW" = ( /obj/structure/platform{ @@ -47308,19 +38820,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "sqd" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bridge) "sql" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/central_streets) "sqH" = ( /obj/structure/machinery/door_display/research_cell{ @@ -47337,9 +38843,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "sqQ" = ( /obj/effect/decal/cleanable/dirt, @@ -47348,9 +38852,7 @@ "srf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "srk" = ( /obj/effect/decal/cleanable/dirt, @@ -47359,9 +38861,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "srm" = ( /obj/structure/filingcabinet{ @@ -47370,9 +38870,7 @@ /obj/structure/filingcabinet{ pixel_x = 7 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "srE" = ( /obj/structure/stairs/perspective{ @@ -47387,16 +38885,11 @@ /area/lv522/indoors/a_block/kitchen) "srM" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "srQ" = ( /obj/structure/cargo_container/ferret/right, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "srS" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -47411,9 +38904,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "ssh" = ( /obj/structure/closet/crate/trashcart, @@ -47431,43 +38922,27 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "ssl" = ( /obj/structure/barricade/wooden{ dir = 4; layer = 5.3 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "ssn" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/west_reactor) "ssU" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "89" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"std" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "stG" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "suh" = ( /obj/effect/decal/cleanable/dirt, @@ -47480,16 +38955,12 @@ }, /obj/item/storage/toolbox/mechanical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "sus" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "suF" = ( /obj/structure/bed/chair{ @@ -47500,9 +38971,7 @@ "suG" = ( /obj/item/prop/colony/used_flare, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "suS" = ( /obj/effect/decal/cleanable/dirt, @@ -47515,9 +38984,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "suV" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -47537,9 +39004,7 @@ pixel_y = -6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv522/indoors/b_block/bar) "svf" = ( /obj/structure/window_frame/strata, @@ -47547,9 +39012,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "svo" = ( /obj/structure/surface/table/almayer, @@ -47586,15 +39049,11 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "swu" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "swD" = ( /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "swF" = ( /obj/structure/stairs/perspective{ @@ -47610,25 +39069,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "swY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/roller, /obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "sxg" = ( /obj/item/stack/rods, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "sxp" = ( /obj/structure/surface/table/almayer, @@ -47640,15 +39091,11 @@ /area/lv522/indoors/a_block/security/glass) "sxU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) "syg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "syl" = ( /obj/structure/bed/chair/comfy{ @@ -47656,25 +39103,19 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "syt" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "syy" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "syB" = ( /obj/structure/ore_box, @@ -47695,16 +39136,11 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "syV" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "syW" = ( /obj/item/explosive/mine/active{ @@ -47720,31 +39156,21 @@ icon_state = "W" }, /obj/structure/barricade/deployable, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "szo" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_west_street) "szJ" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "szT" = ( /obj/structure/ore_box, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_east_street) "szY" = ( /obj/structure/bed/chair/comfy{ @@ -47759,9 +39185,7 @@ layer = 3.1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "sAp" = ( /obj/structure/barricade/wooden{ @@ -47794,16 +39218,11 @@ name = "synthethic potted plant"; pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "sAT" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "sAU" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -47817,19 +39236,14 @@ "sBy" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "sBH" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "sBX" = ( /obj/structure/girder, @@ -47843,10 +39257,7 @@ dir = 9; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "sCi" = ( /obj/item/clothing/shoes/jackboots{ @@ -47858,17 +39269,8 @@ pixel_y = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"sCk" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) "sCp" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "75" @@ -47887,9 +39289,7 @@ pixel_y = 3 }, /obj/structure/closet/crate, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/north) "sCP" = ( /obj/structure/machinery/light{ @@ -47898,10 +39298,7 @@ /obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, /obj/item/storage/pouch/medkit/full_advanced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "sDa" = ( /obj/structure/machinery/light/small{ @@ -47913,15 +39310,10 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "sDf" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "sDq" = ( /obj/structure/barricade/wooden{ @@ -47938,10 +39330,7 @@ /obj/structure/largecrate/random{ layer = 2.9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "sDS" = ( /turf/open/floor/prison, @@ -47957,28 +39346,21 @@ dir = 8 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "sEk" = ( /obj/structure/barricade/wooden{ dir = 1 }, /obj/item/tool/weldingtool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen/glass) "sED" = ( /obj/effect/landmark/objective_landmark/close, /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "sES" = ( /obj/item/fuel_cell{ @@ -47997,17 +39379,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/reactor_garage) "sFf" = ( /obj/item/trash/burger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "sFp" = ( /obj/structure/machinery/colony_floodlight{ @@ -48015,18 +39392,14 @@ layer = 4.3; pixel_y = 17 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "sFF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/hydro) "sFG" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -48053,15 +39426,11 @@ /obj/structure/closet/crate, /obj/item/tool/pickaxe/silver, /obj/item/tool/pickaxe/silver, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "sGt" = ( /obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) "sGv" = ( /obj/effect/decal/warning_stripes{ @@ -48071,19 +39440,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "sGD" = ( /obj/item/shard{ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "sGF" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -48100,10 +39464,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "sHd" = ( /obj/structure/stairs/perspective{ @@ -48114,19 +39475,15 @@ dir = 4 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "sHk" = ( /obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "sHy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "sHS" = ( /obj/structure/stairs/perspective{ @@ -48134,9 +39491,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "sHY" = ( /obj/structure/platform{ @@ -48156,9 +39511,7 @@ "sIq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "sIr" = ( /obj/structure/surface/rack, @@ -48180,11 +39533,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "sIK" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -48196,9 +39545,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/central_streets) "sIS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48213,17 +39560,13 @@ /area/lv522/indoors/c_block/cargo) "sKa" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "sKc" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "sKi" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -48246,10 +39589,7 @@ pixel_x = -1; pixel_y = 29 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/toilet) "sKu" = ( /obj/structure/barricade/handrail/strata, @@ -48257,9 +39597,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "sKx" = ( /obj/item/clothing/mask/facehugger{ @@ -48294,9 +39632,7 @@ dir = 8; name = "\improper Dormitories" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "sKJ" = ( /turf/open/auto_turf/shale/layer2, @@ -48304,25 +39640,18 @@ "sKL" = ( /obj/item/prop/alien/hugger, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "sKS" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/prop/colony/canister{ pixel_y = 11 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "sKU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "sLa" = ( /obj/structure/showcase{ @@ -48343,9 +39672,7 @@ /obj/structure/machinery/faxmachine{ pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "sLk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -48376,9 +39703,7 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "sLn" = ( /obj/effect/decal/cleanable/greenglow, @@ -48401,9 +39726,7 @@ /area/lv522/indoors/c_block/cargo) "sLQ" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "sLR" = ( /obj/structure/prop/dam/van/damaged{ @@ -48427,9 +39750,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "sMa" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -48454,17 +39775,13 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "sML" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/east_central_street) "sMN" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -48498,10 +39815,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "sNQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -48520,9 +39834,7 @@ pixel_x = -2; pixel_y = 27 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "sNU" = ( /obj/structure/machinery/light{ @@ -48533,10 +39845,7 @@ pixel_x = 3; pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "sOe" = ( /obj/structure/filingcabinet{ @@ -48549,18 +39858,12 @@ pixel_x = 8; pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "sOm" = ( /obj/item/stack/sheet/metal/large_stack, /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "sOA" = ( /obj/item/clothing/head/welding{ @@ -48579,9 +39882,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) "sOL" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "sOM" = ( /obj/structure/platform{ @@ -48596,9 +39897,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "sON" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "sOR" = ( /obj/effect/decal/cleanable/dirt, @@ -48614,33 +39913,24 @@ /obj/effect/decal/cleanable/blood, /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "sPa" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "sPb" = ( /obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "sPh" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "sPk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -48662,9 +39952,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "sPs" = ( /obj/item/stack/rods, @@ -48681,29 +39969,20 @@ name = "Vault Lockdown" }, /obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/oob/w_y_vault) "sPS" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "sPU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "sQb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "sQr" = ( /obj/structure/surface/table/woodentable/fancy, @@ -48712,14 +39991,10 @@ pixel_x = 12; pixel_y = 17 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "sQu" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/n_rockies) "sQA" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -48733,9 +40008,7 @@ /area/lv522/indoors/lone_buildings/engineering) "sQI" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "sQL" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -48743,9 +40016,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "sQN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48756,17 +40027,12 @@ "sQQ" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "sQR" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "sQS" = ( /obj/item/prop/alien/hugger, @@ -48774,18 +40040,14 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "sQT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/bridges/op_centre) "sQY" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -48793,22 +40055,15 @@ req_one_access_txt = "100"; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "sQZ" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "sRd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_west_street) "sRu" = ( /obj/structure/platform, @@ -48822,9 +40077,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "sRA" = ( /turf/open/auto_turf/shale/layer1, @@ -48852,10 +40105,7 @@ /area/lv522/outdoors/colony_streets/east_central_street) "sSi" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "sSk" = ( /obj/effect/decal/cleanable/dirt, @@ -48863,57 +40113,40 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "sSl" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "sSn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) "sSv" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "sSG" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "sSQ" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1) "sSW" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "sSZ" = ( /obj/structure/machinery/light{ @@ -48924,26 +40157,20 @@ /obj/item/ore/silver, /obj/item/ore/silver, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "sTr" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; id = "Reactor_garage_3" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "sTy" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, /obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "sTA" = ( /obj/structure/desertdam/decals/road_edge{ @@ -48982,10 +40209,7 @@ /area/lv522/indoors/c_block/garage) "sUI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/indoors/c_block/cargo) "sVJ" = ( /obj/structure/barricade/handrail{ @@ -48996,10 +40220,7 @@ "sVM" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "sWn" = ( /obj/effect/decal/cleanable/dirt, @@ -49025,47 +40246,34 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "sWT" = ( /obj/item/shard{ icon_state = "medium" }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "sXm" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "sXo" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "sXM" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/powercell, /obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "sXQ" = ( /obj/structure/bed/chair/comfy, @@ -49077,9 +40285,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "sXZ" = ( /obj/structure/platform{ @@ -49089,9 +40295,7 @@ /area/lv522/indoors/c_block/garage) "sYh" = ( /obj/structure/machinery/door/airlock/hatch/cockpit/two, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "sYl" = ( /obj/item/stack/sheet/metal, @@ -49111,9 +40315,7 @@ "sYM" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "sZq" = ( /turf/open/gm/river, @@ -49123,9 +40325,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "sZz" = ( /obj/structure/largecrate/random/case/small, @@ -49134,9 +40334,7 @@ /area/lv522/indoors/c_block/mining) "taj" = ( /obj/structure/closet/crate, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "taw" = ( /obj/structure/platform_decoration, @@ -49165,10 +40363,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "taO" = ( /obj/effect/spider/spiderling/nogrow, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "taP" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -49178,9 +40373,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "taW" = ( /obj/structure/platform{ @@ -49189,7 +40382,6 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "tbl" = ( @@ -49204,7 +40396,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "tby" = ( /obj/structure/bed/chair/comfy{ @@ -49224,9 +40416,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "tbK" = ( /obj/structure/filingcabinet{ @@ -49239,25 +40429,17 @@ pixel_x = 8; pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "tcj" = ( /obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "tco" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "tcu" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -49266,10 +40448,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "tcv" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "tcz" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -49283,10 +40462,7 @@ /obj/structure/flora/bush/ausbushes/reedbush{ pixel_y = 11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "tcJ" = ( /turf/closed/shuttle/elevator{ @@ -49302,9 +40478,7 @@ /area/lv522/indoors/c_block/mining) "tcX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "tdi" = ( /obj/structure/prop/dam/crane, @@ -49332,9 +40506,7 @@ /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib4" }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo) "tdE" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -49361,29 +40533,19 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tdT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/hallway) "tdV" = ( /obj/structure/girder, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "teh" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "tek" = ( /obj/structure/surface/table/almayer, @@ -49392,9 +40554,7 @@ pixel_y = 4 }, /obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tew" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ @@ -49405,9 +40565,7 @@ pixel_x = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "tex" = ( /obj/structure/barricade/wooden{ @@ -49424,9 +40582,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "teE" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "teL" = ( /obj/structure/stairs/perspective{ @@ -49435,18 +40591,14 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "teO" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper C-Block - Cargo Airlock"; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "tfb" = ( /obj/structure/stairs/perspective{ @@ -49454,10 +40606,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "tfi" = ( /obj/structure/platform_decoration{ @@ -49468,17 +40617,12 @@ "tfl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/railgun_camera_pos, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) "tfK" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "tfO" = ( /obj/item/prop/colony/usedbandage{ @@ -49497,16 +40641,11 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tfW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/reactor_garage) "tfZ" = ( /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "tgj" = ( /obj/structure/surface/table/almayer, @@ -49517,16 +40656,11 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Dorms And Office Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "tgq" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "tgM" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -49540,17 +40674,13 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "thd" = ( /obj/structure/surface/table/almayer, /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "the" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -49562,17 +40692,13 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "thI" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "thU" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -49586,16 +40712,11 @@ /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "tiC" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "tiJ" = ( /obj/item/explosive/grenade/incendiary/molotov, @@ -49605,9 +40726,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "tiQ" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -49632,22 +40751,15 @@ /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) "tjg" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "tjh" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "tjx" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) "tjM" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -49656,10 +40768,7 @@ "tjQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tjR" = ( /obj/structure/largecrate/random, @@ -49688,9 +40797,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) "tkx" = ( /obj/structure/machinery/light{ @@ -49700,15 +40807,10 @@ /obj/structure/machinery/power/port_gen/pacman{ layer = 2.9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "tkA" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/landing_zone_2) "tkL" = ( /obj/structure/prop/server_equipment/yutani_server{ @@ -49723,10 +40825,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tkN" = ( /obj/structure/stairs/perspective{ @@ -49743,9 +40842,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tlr" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -49755,9 +40852,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "tlv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "tlz" = ( /obj/structure/bed/chair{ @@ -49765,10 +40860,7 @@ }, /obj/structure/machinery/light/double, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tlB" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -49778,51 +40870,38 @@ }, /obj/structure/platform, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "tlR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine{ pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "tlX" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light/double, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tlZ" = ( /obj/structure/machinery/light/double, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tmy" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "tmC" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "tmL" = ( /obj/structure/surface/table/almayer, @@ -49834,21 +40913,14 @@ pixel_x = -1; pixel_y = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "tmX" = ( /obj/structure/platform{ dir = 1 }, /obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "tna" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -49857,31 +40929,24 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "tne" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "tnh" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tni" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) "tns" = ( /obj/structure/machinery/landinglight/ds1{ @@ -49893,16 +40958,11 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "tnL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "tnM" = ( /obj/structure/cargo_container/horizontal/blue/top, @@ -49913,10 +40973,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "tnU" = ( /obj/effect/decal/warning_stripes{ @@ -49924,17 +40981,12 @@ pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "tog" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "tos" = ( /obj/structure/stairs/perspective{ @@ -49961,10 +41013,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "toY" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -49981,10 +41030,7 @@ desc = "Some sort of fancy...toy? You're not sure.."; pixel_x = -12 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "tpa" = ( /obj/structure/window/framed/strata/reinforced, @@ -49999,16 +41045,11 @@ /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "tpz" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "tpD" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -50017,10 +41058,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "tpN" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical/glass) "tpV" = ( /obj/structure/surface/table/almayer, @@ -50033,33 +41071,21 @@ /area/lv522/indoors/a_block/dorms) "tqb" = ( /obj/structure/barricade/deployable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "tqh" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "tqU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness/glass) "tra" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor) "trj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50087,9 +41113,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "trW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -50111,9 +41135,7 @@ flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tsx" = ( /obj/structure/window/reinforced{ @@ -50142,16 +41164,11 @@ }, /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tsM" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "tsV" = ( /obj/structure/toilet{ @@ -50162,20 +41179,14 @@ pixel_x = -11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "ttd" = ( /obj/structure/stairs/perspective{ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "ttf" = ( /obj/effect/landmark/corpsespawner/forecon_spotter, @@ -50188,9 +41199,7 @@ /area/lv522/outdoors/nw_rockies) "ttp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ttC" = ( /obj/item/weapon/gun/smg/nailgun, @@ -50202,24 +41211,18 @@ name = "\improper Electronics Storage" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/outdoor_bot) "ttT" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "tue" = ( /obj/structure/machinery/cryo_cell, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "tum" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -50227,10 +41230,7 @@ /area/lv522/indoors/c_block/garage) "tur" = ( /obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "tuJ" = ( /obj/effect/decal/cleanable/dirt, @@ -50248,33 +41248,25 @@ /area/lv522/indoors/b_block/hydro) "tuK" = ( /obj/structure/ore_box, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "tvi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "tvk" = ( /obj/structure/prop/turbine_extras/border, /obj/structure/prop/turbine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "tvn" = ( /obj/item/stack/sheet/metal, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "tvq" = ( /obj/structure/prop/vehicles/crawler{ @@ -50289,17 +41281,12 @@ "tvx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "tvz" = ( /obj/structure/surface/table/almayer, /obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "tvL" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -50309,9 +41296,7 @@ /turf/open/shuttle/dropship/can_surgery/light_grey_top_left, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tvO" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "tvP" = ( /obj/structure/stairs/perspective{ @@ -50319,10 +41304,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "tvZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -50335,25 +41317,16 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "twq" = ( /obj/structure/platform_decoration, /obj/item/reagent_container/food/drinks/flask/marine, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "tww" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "twB" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -50362,10 +41335,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "twQ" = ( /obj/structure/closet/secure_closet/medical1, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "twT" = ( /obj/structure/cargo_container/grant/right, @@ -50380,16 +41350,10 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) "txs" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) "txK" = ( /obj/effect/decal/cleanable/blood/drip, @@ -50430,17 +41394,12 @@ }, /obj/item/stack/sheet/metal/large_stack, /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "typ" = ( /obj/item/storage/backpack/marine/engineerpack/satchel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "tyy" = ( /obj/structure/desertdam/decals/road_edge{ @@ -50459,9 +41418,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "tzd" = ( /turf/closed/shuttle/elevator{ @@ -50484,17 +41441,13 @@ /obj/item/weapon/gun/rifle/lmg{ current_mag = null }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tzF" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tzM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50512,28 +41465,21 @@ layer = 2.6; pixel_y = 25 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tAh" = ( /obj/structure/surface/table/almayer{ dir = 4; flipped = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "tAn" = ( /obj/item/shard{ icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "tAr" = ( /obj/item/weapon/twohanded/folded_metal_chair, @@ -50546,9 +41492,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "tBb" = ( /obj/structure/prop/dam/drill, @@ -50561,10 +41505,7 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "tBC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -50587,10 +41528,7 @@ /area/lv522/outdoors/colony_streets/central_streets) "tBS" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "tCa" = ( /obj/item/trash/uscm_mre{ @@ -50607,9 +41545,7 @@ dir = 1; name = "\improper Emergency Engineering" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "tCh" = ( /obj/effect/decal/warning_stripes{ @@ -50648,20 +41584,14 @@ /obj/structure/machinery/computer/operating, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "tDB" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "tDQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -50669,15 +41599,10 @@ pixel_y = 6 }, /obj/item/storage/briefcase, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "tDR" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/north) "tDS" = ( /turf/closed/wall/strata_outpost, @@ -50685,9 +41610,7 @@ "tEc" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "tEk" = ( /obj/structure/surface/table/almayer, @@ -50695,21 +41618,15 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "tEu" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_street) "tEC" = ( /obj/item/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "tEJ" = ( /obj/structure/machinery/colony_floodlight{ @@ -50717,35 +41634,24 @@ layer = 4.3; pixel_y = 17 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "tEM" = ( /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "tEQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "tEW" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "tEY" = ( /obj/structure/safe{ @@ -50755,20 +41661,14 @@ /obj/item/clothing/head/helmet/marine/veteran/pmc, /obj/item/m_gift, /obj/item/coin/diamond, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "tFf" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "tFk" = ( /obj/structure/surface/table/woodentable/fancy, @@ -50779,18 +41679,13 @@ pixel_y = 4 }, /obj/item/folder/red, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "tFu" = ( /obj/structure/surface/rack, /obj/item/storage/bag/ore, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "tFx" = ( /turf/closed/wall/strata_outpost, @@ -50832,25 +41727,17 @@ /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) "tGw" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/landing_zone_2) "tGy" = ( /obj/structure/bed/chair/comfy, /obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "tGI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "tGP" = ( /obj/structure/window/reinforced{ @@ -50877,30 +41764,21 @@ /obj/item/bedsheet/brown{ layer = 3.1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "tGY" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "tHo" = ( /obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/indoors/c_block/mining) "tHC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "tHJ" = ( /obj/structure/platform{ @@ -50912,10 +41790,7 @@ /area/lv522/indoors/a_block/dorms) "tIy" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "tID" = ( /obj/effect/decal/cleanable/dirt, @@ -50927,19 +41802,14 @@ icon_state = "crawler_crate_alt2"; layer = 3.2 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/east_central_street) "tIS" = ( /obj/structure/barricade/handrail{ dir = 8 }, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/indoors/lone_buildings/storage_blocks) "tIT" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -50947,9 +41817,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "tJa" = ( /obj/vehicle/train/cargo/trolley, @@ -50970,18 +41838,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "tJG" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "tJM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50993,10 +41857,7 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tJN" = ( /obj/structure/bed/chair, @@ -51004,9 +41865,7 @@ /area/lv522/indoors/c_block/mining) "tKb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "tKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51021,9 +41880,7 @@ pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "tKo" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -51059,16 +41916,11 @@ dir = 8; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "tKS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) "tLl" = ( /obj/structure/machinery/light/double/blue{ @@ -51082,9 +41934,7 @@ /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "tLr" = ( /obj/structure/surface/table/almayer, @@ -51115,29 +41965,19 @@ /area/lv522/indoors/a_block/security) "tLJ" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "tLL" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) "tLQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "tLX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" - }, +/turf/open/floor/almayer/w_y0/north, /area/lv522/oob/w_y_vault) "tMk" = ( /turf/open/floor/prison, @@ -51145,20 +41985,14 @@ "tMl" = ( /obj/structure/machinery/iv_drip, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) "tMp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) "tMq" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/landing_zone_1) "tMt" = ( /obj/structure/platform_decoration, @@ -51166,10 +42000,7 @@ dir = 10; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "tMD" = ( /obj/item/prop/alien/hugger, @@ -51177,10 +42008,7 @@ /area/lv522/indoors/c_block/garage) "tML" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "tMS" = ( /obj/structure/window/framed/strata/reinforced, @@ -51189,9 +42017,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "tMT" = ( /obj/structure/surface/table/woodentable/fancy, @@ -51204,9 +42030,7 @@ /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) "tMV" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "tNc" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -51217,9 +42041,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "tNr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/north_street) "tNC" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -51241,9 +42063,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "tOo" = ( /turf/open/asphalt/cement, @@ -51262,9 +42082,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "tOx" = ( /obj/effect/decal/cleanable/blood, @@ -51277,16 +42095,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor/south) "tOV" = ( /obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "tPa" = ( /obj/structure/stairs/perspective{ @@ -51297,10 +42110,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "tPb" = ( /obj/structure/prop/structure_lattice, @@ -51314,9 +42124,7 @@ /area/lv522/landing_zone_1) "tPr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_west_street) "tPs" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -51332,9 +42140,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "tPB" = ( /obj/structure/surface/table/woodentable/fancy, @@ -51346,10 +42152,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "tQb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51363,37 +42166,27 @@ name = "\improper A-Block Corporate Office Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "tQi" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) "tQp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/outdoor_bot) "tQw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "tQF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Corpo-Bridge-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "tRd" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges) "tRs" = ( /obj/structure/stairs/perspective{ @@ -51401,7 +42194,7 @@ }, /obj/structure/largecrate/random, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "tRI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -51413,17 +42206,11 @@ pixel_y = 4 }, /obj/structure/machinery/light, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "tRS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "tSb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51441,9 +42228,7 @@ /area/lv522/outdoors/colony_streets/east_central_street) "tSn" = ( /obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "tSo" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -51455,9 +42240,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tSL" = ( /turf/closed/wall/strata_outpost, @@ -51472,9 +42255,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tTb" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -51490,9 +42271,7 @@ pixel_y = -7; req_access = null }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "tTr" = ( /obj/item/lightstick/red/spoke/planted{ @@ -51512,10 +42291,7 @@ "tTN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "tTR" = ( /obj/effect/decal/cleanable/dirt, @@ -51526,17 +42302,13 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tTZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "tUe" = ( /obj/effect/decal/cleanable/dirt, @@ -51544,26 +42316,17 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "tUg" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "tUB" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /obj/item/reagent_container/food/snacks/mushroompizzaslice, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "tUL" = ( /obj/item/lightstick/red/spoke/planted{ @@ -51580,17 +42343,11 @@ /area/lv522/indoors/a_block/dorms) "tVa" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "tVj" = ( /obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "tVv" = ( /obj/structure/barricade/wooden{ @@ -51602,30 +42359,21 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "tVN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "tVP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/east_central_street) "tWt" = ( /obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "tWv" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -51642,10 +42390,7 @@ /area/lv522/indoors/c_block/mining) "tWC" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tWE" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -51653,10 +42398,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "tWX" = ( /obj/item/storage/backpack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "tXa" = ( /obj/structure/surface/table/almayer, @@ -51678,10 +42420,7 @@ }, /obj/item/reagent_container/glass/rag, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "tXc" = ( /obj/structure/stairs/perspective{ @@ -51689,7 +42428,7 @@ }, /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "tXd" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; @@ -51703,23 +42442,16 @@ layer = 2; name = "weak acid" }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/admin) "tXg" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "tXp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/east_reactor/south) "tXG" = ( /obj/structure/bed/chair{ @@ -51727,10 +42459,7 @@ }, /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) "tXW" = ( /turf/open/auto_turf/shale/layer2, @@ -51740,17 +42469,12 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "tYs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "tYt" = ( /obj/structure/platform{ @@ -51761,25 +42485,17 @@ layer = 2.9 }, /obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "tYx" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "tYL" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "tYZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51789,9 +42505,7 @@ /area/lv522/indoors/a_block/bridges/dorms_fitness) "tZc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bridge) "tZh" = ( /turf/open/auto_turf/shale/layer2, @@ -51801,15 +42515,11 @@ flipped = 1 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "tZs" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "tZF" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -51827,46 +42537,26 @@ pixel_y = 12 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"tZM" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "tZP" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2/ceiling) "tZR" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) "uad" = ( /obj/structure/closet/boxinggloves, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "uam" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "uar" = ( /obj/effect/decal/cleanable/dirt, @@ -51877,18 +42567,14 @@ /obj/structure/surface/table/almayer{ flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "uaI" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) "uaT" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms/glass) "uaY" = ( /obj/effect/decal/cleanable/dirt, @@ -51896,34 +42582,24 @@ /area/lv522/outdoors/colony_streets/windbreaker/observation) "ubd" = ( /obj/structure/closet/boxinggloves, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "ubv" = ( /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "ubw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "ubz" = ( /obj/structure/machinery/shower{ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "ubF" = ( /obj/effect/decal/cleanable/dirt, @@ -51942,9 +42618,7 @@ /area/lv522/indoors/c_block/cargo) "uco" = ( /obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "ucs" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -51954,13 +42628,11 @@ dir = 4; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "ucx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/fitness) "ucD" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -51985,16 +42657,11 @@ pixel_x = -6; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "ucY" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "udi" = ( /obj/structure/platform{ @@ -52008,10 +42675,7 @@ /obj/item/reagent_container/food/drinks/golden_cup{ pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "udA" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -52026,9 +42690,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "udM" = ( /obj/effect/decal/cleanable/dirt, @@ -52042,19 +42704,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) "udR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) "udU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "uea" = ( /obj/structure/surface/table/almayer, @@ -52067,10 +42724,7 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "ueg" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, @@ -52078,9 +42732,7 @@ /area/lv522/indoors/c_block/mining) "uep" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/corpo_fitness) "uet" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52102,9 +42754,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "ueR" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -52113,26 +42763,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "ueT" = ( /obj/structure/bed/sofa/vert/white, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "ueW" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "ueX" = ( /obj/effect/decal{ @@ -52147,9 +42788,7 @@ id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "ueY" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -52160,15 +42799,11 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "ufs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "ufu" = ( /obj/item/tool/wrench{ @@ -52186,10 +42821,7 @@ density = 0; icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "ufR" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -52204,17 +42836,11 @@ pixel_y = 6 }, /obj/structure/machinery/light, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "ufU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/hallway) "ugi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52222,10 +42848,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "ugn" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -52233,18 +42856,13 @@ pixel_x = 4; pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "ugo" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "ugu" = ( /obj/effect/spawner/gibspawner/xeno, @@ -52255,17 +42873,12 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) "ugG" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "ugN" = ( /obj/item/storage/backpack/marine/satchel/scout_cloak, @@ -52287,17 +42900,11 @@ "ugY" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "uhf" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "uhv" = ( /obj/structure/bed/chair{ @@ -52316,10 +42923,7 @@ /obj/structure/surface/table/woodentable/fancy, /obj/item/weapon/pole/fancy_cane, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "uhP" = ( /obj/effect/decal/cleanable/blood/drip, @@ -52330,10 +42934,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "uhV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52344,9 +42945,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "uic" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52357,9 +42956,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "uie" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -52375,27 +42972,18 @@ pixel_x = 8; pixel_y = -2 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "uii" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "uiu" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /obj/item/trash/eat, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "uiK" = ( /turf/open/auto_turf/sand_white/layer0, @@ -52407,10 +42995,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/folder/black_random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "uiQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -52425,10 +43010,7 @@ pixel_y = 12 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "uiS" = ( /obj/structure/window_frame/strata, @@ -52459,9 +43041,7 @@ pixel_y = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "ujy" = ( /obj/effect/decal/warning_stripes{ @@ -52477,10 +43057,7 @@ pixel_x = 4; pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "ukp" = ( /obj/structure/surface/table/almayer, @@ -52497,18 +43074,13 @@ }, /obj/item/tool/surgery/scalpel/manager, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "ukB" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ukK" = ( /obj/effect/decal/cleanable/blood, @@ -52521,9 +43093,7 @@ "ukT" = ( /obj/structure/closet/crate, /obj/item/storage/pouch/pressurized_reagent_canister/revival, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "ulh" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -52531,10 +43101,7 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "ulL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "ulZ" = ( /turf/open/organic/grass, @@ -52556,10 +43123,7 @@ /obj/structure/platform{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) "umR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52590,9 +43154,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "unS" = ( /obj/structure/pipes/vents/pump, @@ -52600,18 +43162,14 @@ /area/lv522/indoors/c_block/cargo) "unU" = ( /obj/structure/prop/dam/crane/damaged, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "unX" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "uog" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52629,11 +43187,7 @@ pixel_x = -8; pixel_y = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "uok" = ( /obj/structure/prop/invuln{ @@ -52647,16 +43201,11 @@ /area/lv522/indoors/c_block/cargo) "uol" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) "uom" = ( /obj/structure/machinery/disposal, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -52668,16 +43217,11 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "upa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "upc" = ( /obj/structure/machinery/suit_storage_unit{ @@ -52686,9 +43230,7 @@ /obj/structure/machinery/suit_storage_unit{ pixel_x = 16 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "upl" = ( /obj/structure/surface/table/almayer, @@ -52704,11 +43246,7 @@ pixel_x = 6; pixel_y = 16 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "upr" = ( /obj/effect/spawner/random/technology_scanner, @@ -52730,7 +43268,6 @@ /area/lv522/indoors/b_block/hydro) "upX" = ( /obj/structure/machinery/disposal, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) "upZ" = ( @@ -52750,7 +43287,6 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "uqo" = ( @@ -52758,9 +43294,7 @@ /area/lv522/indoors/a_block/admin) "uqt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "uqx" = ( /obj/structure/window/framed/strata/reinforced, @@ -52768,9 +43302,7 @@ dir = 4; id = "Sec-Armoury-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "uqP" = ( /obj/structure/cargo_container/horizontal/blue/top{ @@ -52822,38 +43354,27 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "urY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "usn" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/engineering) "usy" = ( /obj/structure/machinery/shower{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "usz" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/fitness) "usJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/lv522/indoors/b_block/bar) "usP" = ( /obj/effect/decal/cleanable/dirt, @@ -52869,15 +43390,10 @@ pixel_x = -3; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "utd" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo_fitness) "utm" = ( /obj/structure/surface/table/almayer, @@ -52890,11 +43406,7 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "utq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -52914,11 +43426,7 @@ /obj/item/trash/cigbutt{ pixel_x = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "utH" = ( /obj/effect/spawner/gibspawner/xeno, @@ -52930,9 +43438,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "utR" = ( /obj/structure/machinery/power/apc/weak{ @@ -52941,17 +43447,12 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "uue" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "uug" = ( /obj/structure/stairs/perspective{ @@ -52965,31 +43466,22 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "uul" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) "uur" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "uuA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "uuB" = ( /obj/structure/bed/chair/comfy{ @@ -53012,19 +43504,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "uuW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "uvg" = ( /obj/effect/decal/warning_stripes{ @@ -53038,19 +43524,14 @@ pixel_x = -5; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "uvt" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "uvC" = ( /obj/structure/closet/crate/trashcart, @@ -53059,36 +43540,26 @@ /area/lv522/outdoors/colony_streets/east_central_street) "uvF" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "uwb" = ( /obj/structure/machinery/light/double, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "uwe" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "uwk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "uwn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "uwF" = ( /turf/closed/wall/strata_ice/dirty, @@ -53105,10 +43576,7 @@ /obj/item/stack/rods, /obj/item/shard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "uxb" = ( /obj/structure/surface/table/reinforced/prison, @@ -53118,10 +43586,7 @@ }, /obj/item/storage/firstaid/fire, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "uxd" = ( /obj/effect/spawner/gibspawner/xeno, @@ -53129,33 +43594,23 @@ /area/lv522/outdoors/nw_rockies) "uxf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/cargo_intake) "uxi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/cargo_intake) "uxn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "uya" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "uyt" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "uyB" = ( /obj/structure/machinery/light{ @@ -53163,9 +43618,7 @@ }, /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "uyM" = ( /obj/structure/surface/table/reinforced/prison, @@ -53181,9 +43634,7 @@ icon_state = "ashtray_small_bl_full"; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "uyN" = ( /obj/effect/decal/cleanable/blood/drip, @@ -53211,26 +43662,21 @@ }, /obj/structure/platform, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "uzD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "uzI" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/space) "uzK" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "uzR" = ( /obj/structure/barricade/wooden{ @@ -53239,10 +43685,7 @@ pixel_y = 17 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "uAa" = ( /turf/open/floor/prison, @@ -53255,10 +43698,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "uAd" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/north_command_centre) "uAm" = ( /turf/open/floor/corsat, @@ -53276,9 +43716,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block - Colony Operations Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "uBm" = ( /obj/structure/girder, @@ -53299,10 +43737,7 @@ pixel_x = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical/glass) "uCo" = ( /obj/structure/stairs/perspective{ @@ -53328,9 +43763,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "uDb" = ( /turf/open/floor/prison, @@ -53351,9 +43784,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "uDT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -53366,10 +43797,7 @@ dir = 10; id = "cargo_container" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) "uEr" = ( /obj/structure/stairs/perspective{ @@ -53408,10 +43836,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_forecon/UD6_Typhoon) "uEC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "uEE" = ( /obj/structure/bed/chair/comfy, @@ -53421,25 +43846,18 @@ /obj/item/explosive/mine/active{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "uEH" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "uEP" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "uEV" = ( /obj/effect/decal/cleanable/dirt, @@ -53447,7 +43865,6 @@ dir = 1 }, /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "uEX" = ( @@ -53461,10 +43878,7 @@ /area/lv522/landing_zone_forecon/UD6_Typhoon) "uFe" = ( /obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "uFo" = ( /obj/effect/decal/cleanable/dirt, @@ -53473,19 +43887,13 @@ /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "uFp" = ( /obj/structure/platform_decoration{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/asphalt/cement/cement14, /area/lv522/landing_zone_1) "uFz" = ( /obj/item/clipboard, @@ -53497,9 +43905,7 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "uFB" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -53510,34 +43916,23 @@ /area/lv522/outdoors/colony_streets/central_streets) "uFF" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "uFG" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) "uFL" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "uFO" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Mining Equipment" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "uFT" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/reactor_garage) "uGa" = ( /obj/effect/decal/cleanable/dirt, @@ -53545,10 +43940,7 @@ layer = 2.9; pill_type_to_fill = null }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "uGd" = ( /obj/effect/decal/warning_stripes{ @@ -53561,21 +43953,15 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "uGl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "uGK" = ( /obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "uGO" = ( /obj/structure/coatrack{ @@ -53586,9 +43972,7 @@ pixel_x = 9; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "uGT" = ( /obj/item/explosive/mine/active, @@ -53607,18 +43991,13 @@ name = "weak acid" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/lv522/indoors/a_block/dorms) "uHn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "uHq" = ( /obj/structure/surface/table/almayer, @@ -53629,21 +44008,15 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "uHE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/central_streets) "uHN" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "uIa" = ( /obj/effect/decal/cleanable/dirt, @@ -53651,9 +44024,7 @@ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "uIe" = ( /obj/structure/ore_box, @@ -53667,25 +44038,17 @@ /area/lv522/indoors/b_block/bridge) "uIn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "uIo" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "uIr" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "uIB" = ( /obj/structure/sign/nosmoking_2{ @@ -53693,13 +44056,10 @@ }, /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "uIF" = ( /obj/structure/barricade/handrail, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "uIJ" = ( @@ -53716,20 +44076,15 @@ /area/lv522/indoors/a_block/fitness/glass) "uIO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "uIW" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/west_reactor) "uIY" = ( /obj/structure/platform_decoration, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "uIZ" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -53742,7 +44097,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "uJl" = ( /obj/structure/filingcabinet{ @@ -53756,22 +44111,15 @@ pixel_y = 19 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "uJr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "uJY" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "uKa" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -53785,9 +44133,7 @@ dir = 4; id = "Sec-Kitchen-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "uKw" = ( /obj/structure/bed/chair{ @@ -53797,17 +44143,13 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) "uKy" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) "uKD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "uKE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -53838,25 +44180,18 @@ /obj/structure/platform_decoration{ dir = 9 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/landing_zone_1) "uLk" = ( /obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) "uLp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/bridges/corpo_fitness) "uLw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -53908,9 +44243,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "uMq" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/kitchen) "uMr" = ( /obj/effect/decal/cleanable/dirt, @@ -53925,16 +44258,12 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) "uMP" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/east) "uMV" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "uNd" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -53962,37 +44291,25 @@ /area/lv522/indoors/b_block/bridge) "uNB" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) "uNJ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "uNS" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "uNW" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "uOd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "uOj" = ( /obj/structure/surface/table/woodentable/fancy, @@ -54027,7 +44344,6 @@ /obj/structure/platform_decoration{ dir = 5 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) "uOD" = ( @@ -54045,16 +44361,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/bridges/corpo_fitness) "uOP" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) "uPc" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -54063,33 +44374,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "uPn" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "uPo" = ( /obj/structure/largecrate/guns/russian, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "uPv" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 3 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "uPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -54102,16 +44403,12 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) "uPS" = ( /obj/structure/surface/table/almayer, /obj/item/paper/janitor, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "uQf" = ( /obj/structure/platform{ @@ -54127,16 +44424,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "uQi" = ( /obj/item/clothing/suit/storage/marine/medium/smooth, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "uQn" = ( /obj/structure/platform{ @@ -54164,19 +44456,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "uQF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "uQI" = ( /obj/effect/decal/warning_stripes{ @@ -54189,26 +44475,18 @@ /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) "uRb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "uRt" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "uRx" = ( /obj/item/reagent_container/glass/rag, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "uRB" = ( /obj/structure/bed{ @@ -54220,9 +44498,7 @@ pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "uRL" = ( /obj/structure/fence, @@ -54237,21 +44513,16 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "uRR" = ( /obj/structure/platform{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) "uSn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_west_street) "uSo" = ( /obj/item/storage/backpack/marine/satchel{ @@ -54271,9 +44542,7 @@ "uSw" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "uSB" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -54315,10 +44584,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "uTj" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/north_command_centre) "uTv" = ( /obj/structure/window_frame/strata, @@ -54326,10 +44592,7 @@ /area/lv522/indoors/a_block/corpo) "uTy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "uTI" = ( /obj/structure/machinery/light{ @@ -54337,18 +44600,13 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "uTK" = ( /obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_west_street) "uTS" = ( /obj/structure/pipes/vents/pump, @@ -54356,17 +44614,12 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/executive) "uTV" = ( /obj/structure/surface/table/almayer, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "uTY" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -54399,9 +44652,7 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "uUB" = ( /obj/structure/foamed_metal, @@ -54412,24 +44663,17 @@ "uVa" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "uVj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "uVw" = ( /obj/structure/barricade/handrail{ layer = 3.7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/mining) "uVy" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -54437,9 +44681,7 @@ /area/lv522/indoors/a_block/kitchen/damage) "uVH" = ( /obj/item/stool, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "uVI" = ( /obj/structure/machinery/light{ @@ -54451,10 +44693,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "uVU" = ( /obj/structure/surface/table/almayer, @@ -54463,9 +44702,7 @@ pixel_y = 7 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "uVZ" = ( /obj/structure/surface/table/almayer, @@ -54476,33 +44713,24 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "uWh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "uWx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "uWz" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "uWD" = ( /obj/effect/decal/warning_stripes{ @@ -54514,9 +44742,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper B-Block Bar" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "uWO" = ( /turf/open/auto_turf/sand_white/layer0, @@ -54525,16 +44751,11 @@ /obj/structure/machinery/portable_atmospherics/hydroponics{ icon_state = "hydrotray4" }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "uXa" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) "uXp" = ( /obj/item/weapon/twohanded/folded_metal_chair, @@ -54553,7 +44774,6 @@ /obj/structure/platform{ dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/ceiling) "uXO" = ( @@ -54567,17 +44787,12 @@ pixel_y = 5 }, /obj/item/toy/plush/farwa, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "uYi" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "uYk" = ( /obj/structure/largecrate/random, @@ -54586,23 +44801,15 @@ /area/lv522/indoors/c_block/mining) "uYq" = ( /obj/structure/cargo_container/grant/left, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "uZc" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "uZf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/west_reactor) "uZC" = ( /obj/structure/surface/table/almayer, @@ -54613,23 +44820,15 @@ pixel_y = 20 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "uZO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "uZV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/way_in_command_centre) "vae" = ( /obj/item/prop/colony/used_flare, @@ -54648,10 +44847,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "vaA" = ( /obj/structure/surface/table/almayer, @@ -54663,9 +44859,7 @@ pixel_x = 7 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "vaZ" = ( /obj/item/lightstick/red/spoke/planted{ @@ -54685,13 +44879,9 @@ name = "????"; stat = 2 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "vbu" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) "vbF" = ( @@ -54724,18 +44914,14 @@ layer = 3.1 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vbV" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "vbX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -54759,23 +44945,17 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "vcH" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vcJ" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "vcR" = ( /obj/structure/largecrate/random/mini/med, @@ -54802,9 +44982,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "vdx" = ( /obj/structure/surface/table/almayer, @@ -54819,27 +44997,21 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "vdz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper C-Block - Garage Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) "vdH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vdP" = ( /obj/structure/platform_decoration{ @@ -54848,16 +45020,13 @@ /obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/ceiling) "vdV" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/item/reagent_container/food/snacks/cheesyfries, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vdZ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -54866,37 +45035,26 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"veq" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) "ves" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "veD" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "veP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) "veQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_west_street) "veT" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -54910,9 +45068,7 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "vfj" = ( /obj/structure/bed/stool{ @@ -54950,19 +45106,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "vfN" = ( /obj/structure/surface/rack, /obj/item/hardpoint/locomotion/van_wheels, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "vga" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -54989,9 +45140,7 @@ pixel_y = -12 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "vgw" = ( /obj/structure/platform, @@ -55004,9 +45153,7 @@ /area/lv522/indoors/a_block/admin) "vgI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo_fitness) "vgM" = ( /obj/structure/platform_decoration{ @@ -55024,23 +45171,16 @@ "vhr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "vht" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "vhA" = ( /obj/item/prop/colony/used_flare, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "vhC" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -55062,10 +45202,7 @@ icon_state = "SW-out" }, /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "viA" = ( /obj/item/lightstick/red/spoke/planted{ @@ -55091,10 +45228,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "viE" = ( /obj/structure/platform/strata{ @@ -55110,17 +45244,12 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) "viI" = ( /obj/structure/pipes/vents/pump, /obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "viN" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -55138,9 +45267,7 @@ /area/lv522/atmos/east_reactor/south) "vjn" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "vjr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55150,9 +45277,7 @@ /area/lv522/indoors/c_block/mining) "vju" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) "vjv" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -55175,9 +45300,7 @@ pixel_x = 10; pixel_y = 27 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "vjB" = ( /obj/structure/machinery/light{ @@ -55186,14 +45309,11 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "vjC" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/ceiling) "vjF" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "vjG" = ( /obj/structure/largecrate/random{ @@ -55226,10 +45346,7 @@ /area/lv522/indoors/a_block/admin) "vkC" = ( /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/fitness) "vkD" = ( /obj/effect/decal/cleanable/dirt, @@ -55238,10 +45355,7 @@ /area/lv522/indoors/c_block/casino) "vkG" = ( /obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "vlp" = ( /obj/item/pipe, @@ -55258,20 +45372,13 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "vlN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/bridges/corpo_fitness) "vlT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/east_central_street) "vlX" = ( /obj/effect/decal/cleanable/dirt, @@ -55282,18 +45389,13 @@ /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "vmo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vmG" = ( /obj/structure/surface/table/gamblingtable, @@ -55308,9 +45410,7 @@ /obj/structure/surface/rack, /obj/item/stack/sheet/cardboard/full_stack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "vmQ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -55322,9 +45422,7 @@ "vmT" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vne" = ( /obj/structure/fence{ @@ -55337,38 +45435,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/north_west_street) "vni" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/bridges/corpo_fitness) "vnp" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "vnq" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "vnX" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "voi" = ( /obj/effect/decal/cleanable/blood, @@ -55382,14 +45466,10 @@ phone_id = "Colony Casino"; pixel_x = 16 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vou" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/outdoor_bot) "vov" = ( /obj/item/prop/alien/hugger{ @@ -55411,18 +45491,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/central_streets) "voL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/central_streets) "voX" = ( /obj/effect/decal/cleanable/dirt, @@ -55432,9 +45507,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "vpa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -55453,15 +45526,10 @@ /obj/structure/flora/bush{ pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/dorms) "vpk" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "vpp" = ( /obj/structure/window/framed/strata/reinforced, @@ -55472,9 +45540,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "vpB" = ( /obj/effect/decal/cleanable/dirt, @@ -55482,10 +45548,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "vpD" = ( /obj/effect/decal/cleanable/dirt, @@ -55493,9 +45556,7 @@ /area/lv522/indoors/c_block/garage) "vpO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "vpU" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -55516,17 +45577,12 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "vqk" = ( /obj/vehicle/train/cargo/trolley, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "vqm" = ( /obj/item/prop/alien/hugger, @@ -55542,33 +45598,22 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"vqw" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/shale/layer2, -/area/lv522/landing_zone_1) "vqF" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "vqH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "vqW" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vra" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -55578,10 +45623,7 @@ /area/lv522/indoors/a_block/dorms/glass) "vrd" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/outdoors/colony_streets/north_east_street) "vrf" = ( /obj/structure/machinery/light{ @@ -55593,10 +45635,7 @@ "vrg" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "vrE" = ( /obj/structure/surface/table/almayer, @@ -55608,16 +45647,11 @@ amount = 60; pixel_y = 12 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/oob/w_y_vault) "vrV" = ( /obj/structure/window/framed/corsat/hull, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/oob) "vrW" = ( /obj/structure/stairs/perspective{ @@ -55635,17 +45669,13 @@ pixel_y = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "vsh" = ( /obj/structure/fence{ layer = 2.9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "vsj" = ( /obj/structure/reagent_dispensers/fueltank/gas, @@ -55655,9 +45685,7 @@ pixel_y = 13 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "vsk" = ( /obj/structure/coatrack{ @@ -55666,25 +45694,17 @@ }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "vso" = ( /obj/structure/largecrate/random/barrel/yellow, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "vss" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) "vsy" = ( /obj/structure/stairs/perspective{ @@ -55694,18 +45714,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "vsG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vsI" = ( /obj/structure/surface/rack, @@ -55714,18 +45729,14 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "vsZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "vtc" = ( /turf/open/auto_turf/shale/layer1, @@ -55734,19 +45745,14 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/corpo) "vtp" = ( /obj/structure/toilet{ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/executive) "vtA" = ( /obj/structure/surface/table/almayer, @@ -55754,15 +45760,10 @@ pixel_x = -2; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "vtN" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/landing_zone_1) "vtP" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ @@ -55772,9 +45773,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "vuc" = ( /obj/structure/bed/chair/comfy{ @@ -55790,27 +45789,17 @@ /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "vuH" = ( /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "vuS" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "vuY" = ( /obj/item/clothing/mask/facehugger{ @@ -55820,19 +45809,14 @@ name = "????"; stat = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "vvi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "vwi" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -55855,10 +45839,7 @@ "vwQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "vxa" = ( /obj/structure/closet/crate, @@ -55875,10 +45856,7 @@ /area/lv522/indoors/c_block/mining) "vxe" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) "vxf" = ( /obj/item/pipe{ @@ -55894,10 +45872,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "vxv" = ( /obj/structure/surface/table/woodentable/fancy, @@ -55909,9 +45884,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/lv522/atmos/way_in_command_centre) "vxG" = ( /obj/structure/stairs/perspective{ @@ -55921,9 +45894,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "vxM" = ( /obj/structure/barricade/wooden, @@ -55937,10 +45908,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "vyz" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -55955,19 +45923,14 @@ /area/lv522/indoors/b_block/bar) "vyH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "vzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "vzg" = ( /obj/item/stack/rods{ @@ -55982,10 +45945,7 @@ pixel_x = 13; pixel_y = 25 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "vzn" = ( /obj/item/clothing/shoes/jackboots{ @@ -56005,9 +45965,7 @@ /area/lv522/indoors/a_block/dorms) "vzu" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "vzw" = ( /obj/structure/machinery/light{ @@ -56016,10 +45974,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "vzy" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -56045,21 +46000,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "vzZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan4" - }, +/turf/open/floor/strata/white_cyan4/west, /area/lv522/indoors/a_block/medical) "vAi" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) "vAn" = ( /obj/item/prop/alien/hugger, @@ -56070,44 +46018,29 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor) "vAW" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "vAX" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "vBa" = ( /obj/structure/girder/displaced, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "vBb" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "vBd" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "vBm" = ( /obj/structure/platform{ @@ -56119,7 +46052,6 @@ /obj/structure/platform_decoration{ dir = 9 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) "vBx" = ( @@ -56131,9 +46063,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vBB" = ( /obj/structure/surface/table/gamblingtable, @@ -56145,10 +46075,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "vBK" = ( /obj/structure/platform_decoration{ @@ -56159,18 +46086,13 @@ /area/lv522/indoors/c_block/garage) "vBL" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) "vBM" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/indoors/lone_buildings/storage_blocks) "vBN" = ( /obj/structure/bed/chair, @@ -56183,18 +46105,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "vCy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "vCz" = ( /obj/item/pipe{ @@ -56223,7 +46141,6 @@ pixel_y = 19; serial_number = 16 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) "vCG" = ( @@ -56240,9 +46157,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) "vDo" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_2/ceiling) "vDp" = ( /obj/structure/surface/table/almayer, @@ -56250,9 +46165,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vDr" = ( /obj/structure/largecrate/random, @@ -56274,10 +46187,7 @@ /obj/structure/flora/bush{ pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "vDT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -56290,17 +46200,13 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "vDV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "vEf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -56319,34 +46225,23 @@ pixel_x = 7; pixel_y = 20 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/east) "vEB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/roller, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "vEK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/hydro) "vER" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "vEW" = ( /obj/structure/barricade/wooden, @@ -56380,9 +46275,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "vFJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) "vFQ" = ( /obj/structure/machinery/light{ @@ -56390,9 +46283,7 @@ }, /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vGb" = ( /obj/structure/machinery/colony_floodlight{ @@ -56410,7 +46301,6 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "vGo" = ( -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/landing_zone_1) "vGp" = ( @@ -56422,19 +46312,14 @@ /area/lv522/outdoors/colony_streets/north_east_street) "vGB" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) "vGG" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "vGP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/engineering) "vHd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -56450,10 +46335,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "vHw" = ( /obj/structure/barricade/wooden{ @@ -56475,10 +46357,7 @@ pixel_x = -8; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vHG" = ( /obj/effect/decal/cleanable/dirt, @@ -56507,9 +46386,7 @@ layer = 3.1 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vHN" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -56523,36 +46400,25 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "vIb" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/gloves/boxing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vId" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northeast, /area/lv522/indoors/a_block/dorms) "vIe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vIg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -56560,33 +46426,23 @@ name = "\improper Community Office" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "vIy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "vIS" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) "vIU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "vJb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/fitness) "vJj" = ( /obj/structure/machinery/landinglight/ds1{ @@ -56597,17 +46453,13 @@ "vJn" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vJo" = ( /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "vJr" = ( /obj/structure/machinery/landinglight/ds2/delaythree, @@ -56619,17 +46471,11 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vJw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/sewer) "vJD" = ( /obj/structure/window/framed/strata/reinforced, @@ -56644,9 +46490,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "vJT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vKe" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -56657,24 +46501,17 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "vKA" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/under/redpyjamas, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "vKF" = ( /obj/structure/surface/table/almayer, /obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vKJ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -56687,9 +46524,7 @@ dir = 4; id = "Sec-Armoury-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "vKO" = ( /obj/effect/decal/warning_stripes{ @@ -56718,25 +46553,18 @@ pixel_y = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "vLu" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vLA" = ( /obj/structure/pipes/standard/manifold/visible{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) "vLI" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -56744,16 +46572,12 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "vLO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "vLQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -56761,22 +46585,16 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vLR" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vMg" = ( /obj/structure/safe, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vMu" = ( /obj/item/weapon/gun/boltaction, @@ -56793,9 +46611,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/central_streets) "vMJ" = ( /obj/structure/surface/table/gamblingtable, @@ -56807,10 +46623,7 @@ /area/lv522/indoors/c_block/casino) "vMM" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "vMX" = ( /obj/structure/surface/rack, @@ -56820,9 +46633,7 @@ pixel_y = 11 }, /obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "vNi" = ( /obj/item/prop/alien/hugger, @@ -56842,10 +46653,7 @@ "vNy" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/roller, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "vNO" = ( /obj/structure/barricade/wooden{ @@ -56862,19 +46670,12 @@ id = "LZ1_Lockdown_Lo"; name = "Emergency Lockdown" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "vNY" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "vOb" = ( /obj/structure/machinery/door_control{ @@ -56887,67 +46688,48 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "vOt" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) "vOA" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "vOP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/command_centre) "vOT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/bridge) "vOY" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "vOZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vPb" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_2/ceiling) "vPk" = ( /obj/effect/decal/warning_stripes{ @@ -56962,15 +46744,11 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "vPm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "vPs" = ( /obj/structure/prop/dam/crane/damaged, @@ -56993,37 +46771,27 @@ /area/lv522/outdoors/colony_streets/central_streets) "vQn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) "vQL" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "vQO" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "vQT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/corpo) "vQX" = ( /obj/effect/decal/cleanable/dirt, @@ -57035,10 +46803,7 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vRh" = ( /obj/structure/surface/table/almayer, @@ -57051,24 +46816,17 @@ pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vRv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vRQ" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "vSc" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -57077,9 +46835,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/executive) "vSC" = ( /obj/structure/surface/table/almayer, @@ -57090,16 +46846,12 @@ pixel_x = -2; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "vSJ" = ( /obj/structure/blocker/forcefield/vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) "vSM" = ( /obj/structure/tunnel, @@ -57118,10 +46870,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -57134,10 +46883,7 @@ /obj/structure/tunnel/maint_tunnel{ pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "vTn" = ( /obj/structure/barricade/wooden{ @@ -57154,18 +46900,13 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "vTx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "vTK" = ( /obj/structure/prop/vehicles{ icon_state = "van_damaged" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/reactor_garage) "vTO" = ( /obj/structure/machinery/landinglight/ds1{ @@ -57176,33 +46917,23 @@ "vTQ" = ( /obj/structure/barricade/handrail, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "vTT" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "vTW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "vUb" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "vUe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -57220,10 +46951,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "vUn" = ( /obj/structure/surface/table/reinforced/prison, @@ -57243,17 +46971,11 @@ dir = 8 }, /obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "vUX" = ( /obj/structure/powerloader_wreckage/ft, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) "vVd" = ( /obj/structure/cargo_container/kelland/left, @@ -57272,39 +46994,27 @@ }, /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "vVi" = ( /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "vVp" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "vVs" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "vVx" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "vVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -57319,10 +47029,7 @@ layer = 3.1; pixel_y = 17 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "vWl" = ( /obj/item/prop/alien/hugger, @@ -57339,9 +47046,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) "vWI" = ( /obj/structure/largecrate/random, @@ -57356,9 +47061,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "vXc" = ( /turf/open/auto_turf/shale/layer1, @@ -57368,9 +47071,7 @@ dir = 8 }, /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vXY" = ( /obj/structure/barricade/handrail/strata{ @@ -57382,18 +47083,14 @@ /area/lv522/indoors/c_block/cargo) "vYb" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_east_street) "vYJ" = ( /obj/structure/barricade/wooden{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "vYK" = ( /obj/structure/platform_decoration{ @@ -57416,9 +47113,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "vYY" = ( /obj/structure/surface/table/almayer, @@ -57426,7 +47121,6 @@ /obj/structure/machinery/computer/cameras/wooden_tv{ pixel_y = 6 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "vZm" = ( @@ -57435,10 +47129,7 @@ }, /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "vZn" = ( /obj/structure/toilet{ @@ -57451,18 +47142,11 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/toilet) "vZv" = ( /obj/structure/cargo_container/kelland/left, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "vZy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -57472,10 +47156,7 @@ /area/lv522/indoors/a_block/security) "vZI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "vZP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -57492,16 +47173,11 @@ /area/lv522/indoors/c_block/mining) "wac" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) "wan" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wao" = ( /obj/structure/window/framed/strata/reinforced, @@ -57509,17 +47185,13 @@ /area/lv522/indoors/c_block/garage) "way" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "waz" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "waD" = ( @@ -57527,9 +47199,7 @@ dir = 1; name = "Bathroom" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/toilet) "waQ" = ( /obj/structure/platform, @@ -57552,9 +47222,7 @@ id = "West LZ Storage"; name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) "wbj" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ @@ -57588,18 +47256,14 @@ pixel_x = 8; pixel_y = 22 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "wbE" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "wbL" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -57608,9 +47272,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "wbP" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -57619,9 +47281,7 @@ pixel_x = -11; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "wbR" = ( /turf/open/floor/plating, @@ -57629,28 +47289,19 @@ "wbX" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "wcp" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "wcq" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "wcM" = ( /obj/structure/largecrate/random/secure, @@ -57665,37 +47316,27 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "wcR" = ( /obj/item/tool/crowbar, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_west_street) "wcT" = ( /obj/item/storage/firstaid/toxin/empty, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) "wcX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wcY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/case, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "wdd" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, @@ -57705,30 +47346,20 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "wdi" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security/glass) "wdj" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "wdy" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/central_streets) "wdI" = ( /obj/structure/cargo_container/kelland/right, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "wdY" = ( /obj/structure/platform{ @@ -57738,24 +47369,17 @@ /area/lv522/landing_zone_1) "wea" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "wee" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "weh" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "wes" = ( /obj/structure/platform_decoration{ @@ -57805,23 +47429,15 @@ pixel_y = 24 }, /obj/structure/girder/reinforced, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wfe" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) "wfh" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "wfi" = ( /obj/structure/machinery/light{ @@ -57830,10 +47446,7 @@ /obj/item/prop/colony/usedbandage{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "wfl" = ( /obj/structure/surface/table/almayer, @@ -57860,7 +47473,7 @@ icon_state = "p_stair_full" }, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "wfE" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -57869,16 +47482,11 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "wfK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "wfP" = ( /turf/open/floor/plating, @@ -57892,9 +47500,7 @@ /obj/structure/largecrate/random{ pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "wgn" = ( /obj/structure/largecrate/random, @@ -57920,9 +47526,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "whn" = ( /obj/structure/surface/table/almayer, @@ -57930,16 +47534,12 @@ dir = 8; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "whs" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "whz" = ( /obj/structure/filingcabinet{ @@ -57953,17 +47553,13 @@ pixel_y = 22 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "whD" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "whE" = ( /obj/structure/cargo_container/horizontal/blue/top{ @@ -57978,39 +47574,29 @@ /area/lv522/indoors/c_block/cargo) "whG" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "whK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "whR" = ( /obj/item/newspaper, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "whW" = ( /obj/structure/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "whZ" = ( /obj/structure/machinery/conveyor{ dir = 8; id = "cargo_container" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "wiz" = ( /obj/structure/desertdam/decals/road_edge{ @@ -58057,9 +47643,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "wjE" = ( /obj/structure/platform_decoration{ @@ -58089,10 +47673,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/oob/w_y_vault) "wke" = ( /obj/structure/stairs/perspective{ @@ -58103,10 +47684,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "wko" = ( /obj/effect/decal/warning_stripes{ @@ -58128,15 +47706,11 @@ pixel_y = 16 }, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "wky" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "wkC" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -58144,15 +47718,10 @@ pixel_x = 6; pixel_y = 19 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/kitchen/damage) "wkO" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "wlw" = ( /obj/structure/surface/table/woodentable/fancy, @@ -58174,11 +47743,7 @@ /area/lv522/indoors/c_block/cargo) "wlY" = ( /obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "wmk" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -58191,17 +47756,13 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "wng" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "wnu" = ( /obj/structure/cargo_container/wy/right, @@ -58213,9 +47774,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "wnM" = ( /obj/effect/decal/cleanable/dirt, @@ -58226,11 +47785,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "wob" = ( /obj/effect/decal/cleanable/dirt, @@ -58238,15 +47793,11 @@ /area/lv522/indoors/a_block/kitchen) "wog" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "woi" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "woq" = ( /obj/structure/cargo_container/horizontal/blue/bottom, @@ -58292,10 +47843,7 @@ /obj/structure/prop/server_equipment{ icon_state = "rackframe_broken" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/outdoor_bot) "wpd" = ( /obj/structure/surface/table/gamblingtable, @@ -58308,10 +47856,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "wpn" = ( /obj/structure/window/framed/strata/reinforced, @@ -58329,15 +47874,10 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "wpF" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/indoors/c_block/mining) "wpH" = ( /obj/structure/window_frame/strata, @@ -58350,9 +47890,7 @@ /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wqt" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -58368,10 +47906,7 @@ /area/lv522/indoors/c_block/garage) "wqV" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "wrc" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -58392,17 +47927,13 @@ pixel_x = -6; pixel_y = -6 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "wrz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "wrC" = ( /turf/closed/wall/strata_outpost, @@ -58412,9 +47943,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wsz" = ( /obj/structure/machinery/light{ @@ -58422,9 +47951,7 @@ }, /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "wsC" = ( /obj/structure/platform{ @@ -58465,70 +47992,48 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "wtH" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "wtI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "wtK" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "wtT" = ( /obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "wua" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/storage/black_vest, /obj/item/clothing/head/helmet/riot, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "wud" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/turf/open/floor/wood/wood_broken7, /area/lv522/indoors/b_block/bar) "wue" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "wuK" = ( /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "wuQ" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "wuX" = ( /obj/structure/bed/chair/wood/normal{ @@ -58546,9 +48051,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "wvq" = ( /obj/structure/machinery/seed_extractor, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "wvt" = ( /obj/effect/decal/cleanable/dirt, @@ -58558,32 +48061,23 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "wvO" = ( /obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "wvV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "wvX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Shared Dorms Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) "wvY" = ( /obj/structure/window/framed/strata/reinforced, @@ -58603,9 +48097,7 @@ "wwi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) "wwn" = ( /obj/structure/surface/table/reinforced/prison, @@ -58615,10 +48107,7 @@ pixel_y = 13 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "wwy" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -58637,9 +48126,7 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/oob) "wwG" = ( /obj/structure/surface/table/almayer, @@ -58650,19 +48137,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "wwM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "wwO" = ( /obj/effect/decal/cleanable/dirt, @@ -58670,9 +48152,7 @@ dir = 1; name = "\improper Family Dormitories" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "wwU" = ( /obj/effect/decal/cleanable/dirt, @@ -58683,33 +48163,23 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "wwX" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges) "wxa" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "wxb" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wxg" = ( /obj/effect/decal/warning_stripes{ @@ -58719,17 +48189,13 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "wxB" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) "wxZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -58739,24 +48205,15 @@ /area/lv522/indoors/a_block/admin) "wyn" = ( /obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "wyv" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/command_centre) "wyy" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "wyA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -58765,9 +48222,7 @@ /obj/item/weapon/gun/rifle/m41a{ current_mag = null }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "wyE" = ( /obj/structure/surface/table/almayer, @@ -58780,16 +48235,12 @@ pixel_x = -7; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wyI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges) "wyM" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -58829,9 +48280,7 @@ /area/lv522/outdoors/colony_streets/south_west_street) "wzJ" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wzS" = ( /obj/structure/platform_decoration, @@ -58842,9 +48291,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "wAf" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -58854,17 +48301,12 @@ "wAB" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "wAE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "wAM" = ( /obj/structure/cargo_container/horizontal/blue/middle, @@ -58872,18 +48314,13 @@ layer = 3.1; pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "wBp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/executive) "wBx" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -58909,9 +48346,7 @@ /area/lv522/atmos/west_reactor) "wBR" = ( /obj/structure/powerloader_wreckage, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "wCr" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -58926,31 +48361,21 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "wCy" = ( /obj/structure/machinery/computer/arcade{ density = 0; pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "wCC" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_street) "wCJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "wCM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -58966,9 +48391,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) "wCS" = ( /obj/structure/surface/table/almayer, @@ -58979,9 +48402,7 @@ name = "synthethic potted plant"; pixel_y = 14 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wCW" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -58991,28 +48412,20 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "wDa" = ( /turf/open/floor/prison, /area/lv522/landing_zone_2) "wDh" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "wDj" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) "wDk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) "wDu" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -59023,22 +48436,15 @@ phone_id = "Colony Botany"; pixel_x = 16 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "wDy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "wDO" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "wDZ" = ( /obj/structure/surface/table/almayer, @@ -59056,28 +48462,20 @@ dir = 1 }, /obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) "wEo" = ( /obj/structure/cargo_container/wy/mid{ health = 5000 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "wEz" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; pixel_y = 16 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) "wEE" = ( /obj/effect/decal/cleanable/dirt, @@ -59087,10 +48485,7 @@ pixel_y = 8 }, /obj/item/seeds/bananaseed, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "wEP" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ @@ -59104,9 +48499,7 @@ "wEQ" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wEW" = ( /obj/effect/decal/cleanable/blood/oil, @@ -59120,45 +48513,30 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "wFA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/outdoor) "wFB" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "wFP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "wFT" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "wFU" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) "wGc" = ( /obj/item/device/m56d_post, @@ -59174,9 +48552,7 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "wGE" = ( /obj/structure/surface/table/almayer, @@ -59184,9 +48560,7 @@ pixel_y = 5 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "wGG" = ( /obj/structure/surface/table/almayer{ @@ -59194,9 +48568,7 @@ flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "wGH" = ( /obj/item/prop/colony/usedbandage{ @@ -59216,9 +48588,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wGY" = ( /obj/effect/decal/cleanable/dirt, @@ -59226,17 +48596,13 @@ /area/lv522/indoors/a_block/admin) "wHi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "wHj" = ( /obj/structure/surface/rack, /obj/structure/machinery/light, /obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "wHo" = ( /obj/structure/surface/table/almayer, @@ -59246,11 +48612,7 @@ }, /obj/item/clothing/head/hardhat/white, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "wHw" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, @@ -59261,9 +48623,7 @@ }, /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "wHF" = ( /turf/open/floor/prison, @@ -59273,9 +48633,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "wHU" = ( /obj/structure/cargo_container/horizontal/blue/middle, @@ -59295,9 +48653,7 @@ dir = 1; name = "\improper A-Block - Colony Operations Centre Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "wIi" = ( /obj/structure/machinery/colony_floodlight{ @@ -59323,9 +48679,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "wIE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -59339,24 +48693,18 @@ layer = 3 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "wJb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wJk" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "wJq" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -59376,9 +48724,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "wKH" = ( /obj/structure/stairs/perspective{ @@ -59393,17 +48739,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) "wKV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "wLd" = ( /obj/structure/machinery/light, @@ -59431,14 +48772,12 @@ /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "wLN" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wLU" = ( /obj/structure/machinery/light{ @@ -59451,9 +48790,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_west_street) "wMq" = ( /obj/structure/surface/table/reinforced/prison, @@ -59462,9 +48799,7 @@ pixel_y = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "wMF" = ( /obj/structure/machinery/camera/autoname{ @@ -59473,9 +48808,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "wNl" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -59491,23 +48824,16 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "wNp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "wNF" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "wNX" = ( /obj/structure/bed/chair, @@ -59516,40 +48842,27 @@ /area/lv522/indoors/c_block/mining) "wOo" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "wOu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/n_rockies) "wOC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "wOU" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "wPt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "wPL" = ( /obj/structure/platform_decoration/strata{ @@ -59565,16 +48878,12 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) "wPR" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv522/indoors/b_block/bar) "wPV" = ( /obj/structure/closet/crate, /obj/item/storage/xeno_tag_case, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "wQa" = ( /turf/open/auto_turf/shale/layer1, @@ -59583,41 +48892,27 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) "wQy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/mining) "wRa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "wRd" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/southwest, /area/lv522/indoors/a_block/dorms) "wRf" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "wRk" = ( /obj/effect/decal/warning_stripes{ @@ -59628,9 +48923,7 @@ "wRl" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "wRp" = ( /obj/structure/surface/rack, @@ -59645,10 +48938,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "wRC" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "wRJ" = ( /obj/item/hardpoint/locomotion/van_wheels{ @@ -59656,10 +48946,7 @@ name = "Lifting weights" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "wRL" = ( /turf/closed/shuttle/dropship2/tornado{ @@ -59668,25 +48955,18 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "wRZ" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/garden_bridge) "wSb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "wSr" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "wSt" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -59710,21 +48990,14 @@ pixel_x = 6; pixel_y = 19 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "wTn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "wTq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "wTr" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -59735,10 +49008,7 @@ pixel_x = 11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "wTv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -59746,9 +49016,7 @@ /area/lv522/atmos/west_reactor) "wTx" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "wTy" = ( /obj/structure/surface/table/reinforced/prison, @@ -59775,17 +49043,12 @@ /area/lv522/indoors/c_block/garage) "wTJ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "wTV" = ( /obj/structure/prop/vehicles, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) "wUj" = ( /obj/structure/closet/crate/miningcar/yellow, @@ -59795,26 +49058,20 @@ /obj/item/ore/diamond, /obj/item/ore/diamond, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "wUp" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "wUx" = ( /obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "wUL" = ( /obj/structure/closet/toolcloset, @@ -59856,20 +49113,14 @@ "wWc" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor/south) "wWe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) "wWV" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "wWX" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, @@ -59889,22 +49140,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "wXA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "wXQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "wYa" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -59929,9 +49172,7 @@ pixel_x = 1; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "wYE" = ( /obj/structure/surface/table/almayer, @@ -59952,10 +49193,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "wZl" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -59996,9 +49234,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "wZH" = ( /obj/structure/surface/table/almayer, @@ -60006,9 +49242,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "wZI" = ( /obj/effect/decal/cleanable/dirt, @@ -60016,9 +49250,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "xaj" = ( /obj/structure/barricade/deployable{ @@ -60027,9 +49259,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "xay" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -60038,15 +49268,11 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xaD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "xaM" = ( /obj/item/shard{ @@ -60055,18 +49281,14 @@ /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "xaN" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "xaQ" = ( /obj/structure/surface/table/almayer, @@ -60082,18 +49304,14 @@ pixel_x = 11; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "xbj" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "xbk" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -60110,17 +49328,12 @@ "xbN" = ( /obj/structure/machinery/sleep_console, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "xbX" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "xce" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -60137,10 +49350,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/mining) "xcE" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -60165,9 +49375,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "xcU" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/oob) "xcX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -60175,9 +49383,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) "xcY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1) "xdb" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -60197,11 +49403,7 @@ pixel_x = -13; pixel_y = 2 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "xdt" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -60225,10 +49427,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/command_centre) "xdX" = ( /obj/item/lightstick/red/spoke/planted{ @@ -60267,10 +49466,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "xeG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "xfp" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -60295,10 +49491,7 @@ /area/lv522/indoors/c_block/casino) "xfW" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "xfX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -60308,9 +49501,7 @@ /area/lv522/indoors/a_block/dorms) "xgl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "xgA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -60322,9 +49513,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "xgH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -60341,17 +49530,13 @@ /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "xgW" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_alt" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "xgX" = ( /obj/structure/surface/rack, @@ -60372,35 +49557,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) "xho" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "xhq" = ( /obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xhu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger{ pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "xhB" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xhD" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -60411,9 +49586,7 @@ /area/lv522/indoors/c_block/bridge) "xhL" = ( /obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +/turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) "xhT" = ( /obj/effect/decal/cleanable/generic, @@ -60421,10 +49594,7 @@ /area/lv522/indoors/c_block/casino) "xhW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/storage_blocks) "xic" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ @@ -60439,32 +49609,24 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "xiG" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "xiU" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xiY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) "xje" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "xju" = ( /obj/structure/machinery/light{ @@ -60477,40 +49639,29 @@ /area/lv522/indoors/c_block/cargo) "xjz" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "xjC" = ( /obj/structure/pipes/vents/pump, /obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xjF" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/executive) "xjO" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) "xjS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "xjU" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "xjY" = ( /obj/structure/machinery/light{ @@ -60520,9 +49671,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "xka" = ( /obj/structure/surface/table/almayer, @@ -60531,9 +49680,7 @@ pixel_y = 7 }, /obj/item/paper/wy, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "xkr" = ( /obj/effect/landmark/objective_landmark/medium, @@ -60545,16 +49692,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "xkB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/atmos/outdoor) "xkO" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -60562,26 +49703,20 @@ "xln" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "xlq" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "xly" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "xlI" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo) "xlL" = ( /obj/structure/reagent_dispensers/fueltank{ @@ -60592,9 +49727,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "xlN" = ( /obj/structure/surface/rack, @@ -60619,26 +49752,20 @@ "xlV" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "xlY" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "xmj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "xmk" = ( /obj/structure/pipes/vents/pump, @@ -60646,25 +49773,17 @@ /obj/item/pipe{ pixel_x = -6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "xmD" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "xmN" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "xmT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -60674,20 +49793,14 @@ /obj/structure/bed/chair{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) "xnk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) "xno" = ( /obj/item/weapon/gun/smartgun{ @@ -60703,10 +49816,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "xnu" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -60717,22 +49827,15 @@ name = "menu"; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "xnG" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "xnI" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "xnJ" = ( /obj/structure/surface/table/almayer, @@ -60743,9 +49846,7 @@ /obj/item/device/flash{ pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "xnP" = ( /obj/structure/surface/table/reinforced/prison, @@ -60756,10 +49857,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo) "xnX" = ( /obj/effect/decal/cleanable/dirt, @@ -60769,9 +49867,7 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "xoj" = ( /obj/effect/decal/cleanable/dirt, @@ -60783,18 +49879,14 @@ name = "\improper A-Block - Colony Operations Centre Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) "xpg" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/outdoors/nw_rockies) "xpu" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "xpH" = ( /obj/structure/platform{ @@ -60810,17 +49902,11 @@ /obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) "xqd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "xqj" = ( /obj/effect/landmark/yautja_teleport, @@ -60837,44 +49923,31 @@ dir = 4; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "xqV" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "xqY" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) "xrr" = ( /obj/structure/barricade/deployable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "xrA" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "xrB" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "xrF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) "xrH" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -60907,7 +49980,7 @@ /obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "xtb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness) @@ -60921,19 +49994,13 @@ /obj/item/storage/pouch/cassette{ pixel_y = 5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "xtk" = ( /obj/item/prop/colony/usedbandage{ dir = 5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "xtH" = ( /obj/effect/spawner/gibspawner/human, @@ -60954,9 +50021,7 @@ /obj/structure/window{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv522/indoors/b_block/hydro/glass) "xuk" = ( /obj/structure/surface/table/almayer, @@ -60967,9 +50032,7 @@ /area/lv522/indoors/a_block/admin) "xuB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "xuD" = ( /obj/structure/surface/table/almayer, @@ -60982,29 +50045,19 @@ pixel_y = 10 }, /obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "xuQ" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "xuU" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) "xva" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "xvj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -61015,9 +50068,7 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "xvl" = ( /turf/closed/wall/strata_outpost, @@ -61029,45 +50080,23 @@ /area/lv522/indoors/c_block/t_comm) "xvB" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) "xvG" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "xvQ" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "xvW" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges) -"xwv" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_east_street) "xwD" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "xwK" = ( /obj/effect/decal/warning_stripes{ @@ -61075,9 +50104,7 @@ pixel_x = 1 }, /obj/item/stack/sandbags/small_stack, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "xwO" = ( /obj/structure/cargo_container/seegson/left, @@ -61085,9 +50112,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "xwZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "xxk" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -61104,9 +50129,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "xxq" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) "xxs" = ( /obj/effect/decal/cleanable/dirt, @@ -61127,9 +50150,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "xxU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61139,34 +50160,25 @@ /area/lv522/indoors/a_block/admin) "xxV" = ( /obj/structure/cargo_container/seegson/right, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) "xxW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "xyi" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xym" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "xyu" = ( -/turf/open/shuttle/dropship/can_surgery/dark_grey, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "xyC" = ( /obj/structure/machinery/landinglight/ds2/delaythree, @@ -61175,24 +50187,17 @@ /area/lv522/landing_zone_2) "xyL" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "xyN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) "xzj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "xzn" = ( /turf/open/floor/prison, @@ -61204,18 +50209,12 @@ pixel_y = 9 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "xzu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "xzK" = ( /turf/open/asphalt/cement, @@ -61231,9 +50230,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "xAF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -61259,9 +50256,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "xAO" = ( /turf/open/gm/river, @@ -61271,9 +50266,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "xAR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "xAS" = ( /obj/structure/fence{ @@ -61286,9 +50279,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "xAZ" = ( /obj/effect/decal/cleanable/dirt, @@ -61299,9 +50290,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "xBi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -61312,9 +50301,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo/glass) "xBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61331,9 +50318,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/n_rockies) "xBS" = ( /obj/structure/stairs/perspective{ @@ -61345,10 +50330,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) "xCN" = ( /obj/item/clothing/under/shorts/blue{ @@ -61359,18 +50341,14 @@ /area/lv522/indoors/a_block/executive) "xCS" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "xCT" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) "xCY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "xDl" = ( /obj/effect/decal/cleanable/blood, @@ -61411,9 +50389,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "xDJ" = ( /obj/effect/decal/cleanable/dirt, @@ -61422,10 +50398,7 @@ /area/lv522/indoors/a_block/kitchen) "xDL" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "xDM" = ( /obj/structure/surface/table/almayer{ @@ -61443,10 +50416,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "xDR" = ( /obj/structure/machinery/conveyor{ @@ -61463,17 +50433,11 @@ /area/lv522/outdoors/colony_streets/north_west_street) "xEk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) "xEp" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "xEB" = ( /obj/structure/bed/chair/comfy{ @@ -61486,36 +50450,26 @@ /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Reactor_entry_1" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "xEH" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "xFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "xFp" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "xFt" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) "xFv" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61529,9 +50483,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "xFG" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -61543,9 +50495,7 @@ name = "\improper A-Block Fitness Centre Airlock" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "xGa" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -61567,9 +50517,7 @@ /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Corpo-Bridge-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "xGf" = ( /obj/effect/decal/cleanable/dirt, @@ -61585,25 +50533,19 @@ "xGC" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "xGR" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "xGX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "xHr" = ( /obj/structure/pipes/vents/pump, @@ -61617,24 +50559,18 @@ /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Corporate Liaison Office " }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "xHO" = ( /obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "xIr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "xIv" = ( /turf/open/floor/prison, @@ -61642,7 +50578,6 @@ "xIK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "xIW" = ( @@ -61661,15 +50596,11 @@ /area/lv522/indoors/c_block/cargo) "xJg" = ( /obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "xJt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "xJB" = ( /obj/structure/largecrate/random/barrel/red, @@ -61682,16 +50613,11 @@ id = "LV522CIC_1"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "xJI" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "xJK" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -61700,10 +50626,7 @@ /obj/structure/flora/bush/ausbushes/ausbush{ pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "xJL" = ( /obj/effect/decal/cleanable/dirt, @@ -61717,10 +50640,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "xKc" = ( /obj/structure/barricade/handrail{ @@ -61733,9 +50653,7 @@ /obj/item/ammo_magazine/m56d, /obj/item/ammo_magazine/m56d, /obj/item/device/m56d_gun, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "xKk" = ( /turf/closed/wall/strata_outpost_ribbed, @@ -61748,9 +50666,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "xLg" = ( /obj/effect/decal/cleanable/dirt, @@ -61764,14 +50680,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "xLm" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/north) "xLn" = ( /obj/structure/surface/table/almayer, @@ -61788,9 +50700,7 @@ pixel_y = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "xLq" = ( /obj/item/prop/alien/hugger, @@ -61801,9 +50711,7 @@ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/sewer) "xLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61828,28 +50736,19 @@ pixel_x = 8; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "xMu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "xMz" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "xME" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/east_reactor/south) "xMO" = ( /obj/effect/decal/cleanable/dirt, @@ -61886,33 +50785,22 @@ /area/lv522/indoors/b_block/hydro) "xNt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "xNG" = ( /obj/structure/machinery/computer/crew/colony{ density = 0; pixel_y = 16 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "xNR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "xOb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness/glass) "xOw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61932,9 +50820,7 @@ "xOQ" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "xPa" = ( /obj/structure/machinery/conveyor, @@ -61948,9 +50834,7 @@ /area/lv522/indoors/c_block/mining) "xPj" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "xPo" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -61988,9 +50872,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "xPW" = ( /obj/effect/decal/cleanable/dirt, @@ -62014,18 +50896,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/outdoor) "xQc" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/east_reactor/south) "xQi" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "xQj" = ( /obj/effect/decal/cleanable/dirt, @@ -62035,9 +50913,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "xQq" = ( /obj/effect/decal/cleanable/dirt, @@ -62052,25 +50928,18 @@ /obj/item/tool/pen/blue/clicky, /obj/effect/landmark/objective_landmark/science, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "xRg" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "xRk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "xRn" = ( /obj/item/clothing/head/hardhat, @@ -62081,9 +50950,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "xRq" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -62107,9 +50974,7 @@ dir = 8; pixel_y = 17 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "xRw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -62122,30 +50987,20 @@ /obj/structure/bed/roller, /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "xRE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "xRG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "xRK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, +/turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_street) "xRM" = ( /obj/structure/machinery/door/airlock/dropship_hatch/two{ @@ -62156,9 +51011,7 @@ id = "UD6 East"; indestructible = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "xRQ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -62181,10 +51034,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "xSD" = ( /obj/structure/largecrate/random/barrel/green, @@ -62194,24 +51044,16 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/way_in_command_centre) "xSL" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/south) "xSN" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) "xSP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -62242,16 +51084,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "xTs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) "xTJ" = ( /obj/item/tool/kitchen/utensil/pknife{ @@ -62285,18 +51122,14 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "xUq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) "xUx" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "xUJ" = ( /obj/effect/decal/cleanable/blood/drip, @@ -62305,18 +51138,14 @@ /area/lv522/indoors/a_block/security) "xUQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "xVd" = ( /turf/closed/wall/strata_outpost_ribbed, /area/lv522/indoors/lone_buildings/engineering) "xVq" = ( /obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "xVz" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -62326,9 +51155,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "xVB" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/atmos/way_in_command_centre) "xVG" = ( /obj/structure/largecrate/random, @@ -62346,19 +51173,14 @@ dir = 8 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) "xVI" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "xVV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_west_street) "xWb" = ( /obj/structure/bed/chair{ @@ -62371,26 +51193,18 @@ /area/lv522/outdoors/colony_streets/north_west_street) "xWc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "xWf" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "xWx" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/toilet) "xWz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/filt) "xWA" = ( /obj/structure/stairs/perspective{ @@ -62401,9 +51215,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "xWF" = ( /obj/structure/prop/server_equipment/yutani_server{ @@ -62414,34 +51226,25 @@ pixel_y = 11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "xWL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/stack/rods, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "xWO" = ( /obj/structure/stairs/perspective{ dir = 10; icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "xWP" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) "xXg" = ( /turf/open/asphalt/cement, @@ -62457,16 +51260,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "xXz" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "xXN" = ( /obj/effect/decal/cleanable/dirt, @@ -62474,17 +51273,13 @@ /area/lv522/indoors/a_block/dorms) "xXO" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "xXQ" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "xXR" = ( /obj/structure/machinery/colony_floodlight{ @@ -62495,19 +51290,14 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "xXV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/nw_rockies) "xXX" = ( /obj/structure/target{ name = "punching bag" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "xYn" = ( /obj/structure/surface/table/woodentable/fancy, @@ -62529,16 +51319,12 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) "xZw" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "xZy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/indoors/c_block/mining) "xZz" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -62556,15 +51342,8 @@ dir = 5; id = "cargo_container" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) -"xZN" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "xZP" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -62577,10 +51356,7 @@ /obj/structure/machinery/space_heater/radiator/red{ pixel_y = 26 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "yae" = ( /obj/structure/surface/table/almayer, @@ -62590,9 +51366,7 @@ }, /obj/item/tool/pen/blue/clicky, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "yaf" = ( /obj/structure/surface/rack, @@ -62606,9 +51380,7 @@ "yai" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "yaj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -62621,9 +51393,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "yar" = ( /obj/structure/fence, @@ -62634,28 +51404,21 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) "yaw" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) "yaC" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "yaF" = ( /obj/effect/spawner/gibspawner/xeno, @@ -62675,9 +51438,7 @@ /obj/structure/largecrate/random{ layer = 2.9 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "ybd" = ( /obj/structure/blocker/forcefield/vehicles, @@ -62687,9 +51448,7 @@ unacidable = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/oob) "ybj" = ( /obj/item/prop/alien/hugger, @@ -62701,9 +51460,7 @@ pixel_y = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "ybz" = ( /turf/open/asphalt/cement, @@ -62712,9 +51469,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "yca" = ( /obj/effect/decal/cleanable/dirt, @@ -62722,16 +51477,12 @@ /area/lv522/indoors/a_block/kitchen/glass) "ycb" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) "ycc" = ( /obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "yct" = ( /obj/structure/surface/rack, @@ -62739,15 +51490,11 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "ycv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "ycw" = ( /obj/structure/girder/reinforced, @@ -62773,18 +51520,13 @@ /area/lv522/outdoors/colony_streets/south_east_street) "ycO" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "ycV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, +/turf/open/asphalt/cement/cement15, /area/lv522/outdoors/n_rockies) "ydb" = ( /obj/effect/decal/cleanable/dirt, @@ -62802,46 +51544,33 @@ "ydz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "ydA" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_west_street) "ydD" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/shotgun/buckshot/empty, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "ydS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) "ydU" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "ydV" = ( /obj/structure/surface/table/almayer{ dir = 1; flipped = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "yeD" = ( /obj/item/ammo_magazine/pistol/m1911{ @@ -62852,10 +51581,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_west_street) "yeH" = ( /obj/effect/decal/cleanable/dirt, @@ -62874,14 +51600,10 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "yeS" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "yfu" = ( /turf/open/floor/prison, @@ -62889,10 +51611,7 @@ "yfz" = ( /obj/structure/largecrate/random/mini, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) "yfH" = ( /obj/structure/window/framed/strata/reinforced, @@ -62905,21 +51624,13 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "yfP" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, +/turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "yfR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "yfS" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "yfX" = ( /obj/item/weapon/gun/boltaction{ @@ -62943,22 +51654,15 @@ /area/lv522/indoors/c_block/casino) "ygu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/west) "ygw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "ygD" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) "yhi" = ( /obj/effect/decal/cleanable/dirt, @@ -62982,10 +51686,7 @@ /obj/item/storage/firstaid/adv, /obj/structure/pipes/vents/pump, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "yhz" = ( /obj/structure/window_frame/corsat, @@ -62999,30 +51700,21 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "yhK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "yhR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +/turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_street) "yhU" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) "yif" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "yim" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -63031,17 +51723,13 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) "yiu" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "yiH" = ( /obj/structure/window_frame/strata, /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "yiM" = ( /turf/open/auto_turf/sand_white/layer0, @@ -63061,24 +51749,18 @@ name = "\improper A-Block Security Airlock"; welded = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) "yje" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/sewer) "yjg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "yjm" = ( /obj/structure/largecrate/random, @@ -63102,9 +51784,7 @@ pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "yjr" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -63136,9 +51816,7 @@ pixel_x = -11; pixel_y = -8 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/corpo) "yjK" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -63148,10 +51826,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "yjL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/oob) "yjP" = ( /obj/structure/surface/table/almayer, @@ -63162,9 +51837,7 @@ }, /obj/item/tool/screwdriver, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "yjT" = ( /obj/effect/decal/warning_stripes{ @@ -63174,9 +51847,7 @@ /area/lv522/outdoors/colony_streets/south_west_street) "yjU" = ( /obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "yjW" = ( /obj/structure/surface/table/almayer, @@ -63186,22 +51857,14 @@ }, /obj/item/tank/emergency_oxygen/engi, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "ykc" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/bridges/op_centre) "yke" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "ykj" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, @@ -63212,16 +51875,10 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "ykL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "ykR" = ( /obj/structure/bed/chair/comfy, @@ -63230,9 +51887,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "ykT" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -63255,25 +51910,17 @@ pixel_x = -7 }, /obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "yld" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "ylm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/n_rockies) "ylo" = ( /turf/closed/wall/shiva/prefabricated/reinforced, @@ -63286,9 +51933,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) "ylr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/east_central_street) "ylC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -63303,14 +51948,12 @@ /area/lv522/indoors/a_block/admin) "ymc" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "ymf" = ( /obj/structure/platform_decoration, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/landing_zone_1/tunnel/far) (1,1,1) = {" bMX @@ -64403,7 +53046,7 @@ nGe pez pFw qbf -lBl +pxb paT pxb pxb @@ -64627,11 +53270,11 @@ cpy cpy oyY paT -lBl -lBl -lBl -lBl -lBl +pxb +pxb +pxb +pxb +pxb pxb nQz tPf @@ -64853,12 +53496,12 @@ cpy cpy cpy hTW -lBl -vqw -lBl -lBl -lBl -oYM +pxb +xqp +pxb +pxb +pxb +nQz tPf oKc uZc @@ -65079,13 +53722,13 @@ cpy cpy cpy nGe -veq -veq -vqw -vqw -vqw -oYM -pLm +pwa +pwa +xqp +xqp +xqp +nQz +oKc ryU ryU ryU @@ -65306,12 +53949,12 @@ cpy cpy cpy nGJ -veq -veq -lBl -oYM -tZM -pLm +pwa +pwa +pxb +nQz +tPf +oKc ryU ryU uiM @@ -65533,10 +54176,10 @@ cpy cpy cpy nMc -lBl -oYM -tZM -pLm +pxb +nQz +tPf +oKc ryU ryU ryU @@ -65759,11 +54402,11 @@ cpy cpy cpy lJq -lBl -oYM -pLm -pkH -pkH +pxb +nQz +oKc +ryU +ryU ryU wuK xfW @@ -65986,11 +54629,11 @@ cpy cpy cpy lJq -oYM -pLm -pkH -pvd -nhi +nQz +oKc +ryU +rhk +uTd oyf tns fOc @@ -66212,9 +54855,9 @@ cpy cpy cpy cpy -veq +pwa lWj -cpU +uZc fSo nFj pRg @@ -66439,9 +55082,9 @@ tFx tFx tFx niA -veq +pwa oiC -pkH +ryU naS nFj nFj @@ -66666,9 +55309,9 @@ wnP evg syM rnT -lBl +pxb ttT -pkH +ryU haf nFj nFj @@ -66893,9 +55536,9 @@ mvP ggS tFx rnT -lBl +pxb ttT -pkH +ryU das sYH sYH @@ -67118,11 +55761,11 @@ tFx moI mxD uom -kWp +ymc rnT -lBl +pxb ttT -pkH +ryU eyy sYH sYH @@ -67158,11 +55801,11 @@ cpy eYM eYM eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV +sRM eYM eYM cpy @@ -67345,11 +55988,11 @@ tFx inm myQ myZ -kWp +ymc rnT -lBl +pxb ttT -pkH +ryU naS sYH sYH @@ -67385,12 +56028,12 @@ eYM eYM uqe pNa -fxZ -fxZ -fxZ +wfP +wfP +wfP pNa -nvV -ait +sRM +hTe eYM cpy cpy @@ -67574,9 +56217,9 @@ rIM rIM tFx rnT -lBl +pxb ttT -pkH +ryU haf sYH sYH @@ -67609,15 +56252,15 @@ pxb cpy eYM eYM -qCs -fxZ +jJF +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -67796,14 +56439,14 @@ qJy aRN ien mmw -fbh -fbh -fHB +veQ +veQ +fnA sSQ rnT -lBl +pxb ttT -pkH +ryU das sYH sYH @@ -67836,15 +56479,15 @@ pxb cpy eYM hUM -qCs -fxZ +jJF +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68025,12 +56668,12 @@ tZh ofi ofi max -rFw +osN sSQ rnT -lBl +pxb ttT -pkH +ryU eyy nFj nFj @@ -68063,15 +56706,15 @@ cpy cpy eYM vYY -fxZ -fxZ +wfP +wfP eYM -qCs -fxZ -fxZ +jJF +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68252,12 +56895,12 @@ hpq tZh ofi max -rFw +osN sSQ rnT -lBl +pxb jPg -pkH +ryU naS nFj nFj @@ -68291,14 +56934,14 @@ cpy eYM ofX rmC -fxZ +wfP eYM -qCs -fxZ -fxZ +jJF +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68482,9 +57125,9 @@ max ien ien ien -lBl +pxb lWj -cpU +uZc fBL nFj pRg @@ -68518,14 +57161,14 @@ cpy eYM fLM rmC -fxZ +wfP eYM -qCs -fxZ -fxZ +jJF +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68706,15 +57349,15 @@ hpq ofi ofi max -rFw +osN sSQ rnT -lBl +pxb lgY oKG -pkH -pwH -sCk +ryU +uEH +vJj jIk aGS dhP @@ -68745,14 +57388,14 @@ cpy eYM eYM ivb -fxZ +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68933,15 +57576,15 @@ gpB ofi ofi max -rFw +osN sSQ rnT -lBl -lBl +pxb +pxb lgY oKG -pkH -pkH +ryU +ryU ryU tgq qcO @@ -68971,15 +57614,15 @@ pxb cpy eYM exQ -fxZ -fxZ +wfP +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM eYM cpy @@ -69163,11 +57806,11 @@ max ien ien ien -veq -lBl -lBl +pwa +pxb +pxb lgY -qMJ +udi oKG ryU ryU @@ -69198,16 +57841,16 @@ cpy cpy eYM eYM -fxZ -fxZ +wfP +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait -ait +sRM +hTe +hTe eYM cpy cpy @@ -69387,16 +58030,16 @@ hpq ofi tZh max -rFw +osN sSQ rnT -veq -veq -lBl -lBl -lBl +pwa +pwa +pxb +pxb +pxb lgY -qMJ +udi oKG ryU ryU @@ -69425,16 +58068,16 @@ cpy cpy eYM jxF -fxZ -xZN +wfP +mzi eYM -fxZ -fxZ +wfP +wfP nxF eYM -nvV -ait -ait +sRM +hTe +hTe eYM cpy cpy @@ -69614,16 +58257,16 @@ hpq ofi max max -rFw +osN sSQ rnT -veq -veq -veq -lBl -lBl -lBl -lBl +pwa +pwa +pwa +pxb +pxb +pxb +pxb lgY oKG ryU @@ -69656,12 +58299,12 @@ jCh eYM eYM ivb -fxZ -fxZ +wfP +wfP eYM vBm -cHY -ait +qxk +hTe eYM cpy cpy @@ -69841,7 +58484,7 @@ hpq max max max -rFw +osN sSQ vGo jZD @@ -69849,11 +58492,11 @@ jZD jZD jZD oiY -lBl -lBl -lBl +pxb +pxb +pxb lgY -qMJ +udi oKG uZc ryU @@ -69878,17 +58521,17 @@ pxb cpy eYM eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -fxZ -fxZ -qCs +wfP +wfP +jJF eYM eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70068,54 +58711,54 @@ hpq max max max -rFw +osN tFx -kWp +ymc tFx tFx -kWp +ymc tFx rnT -lBl -lBl -lBl -lBl -lBl +pxb +pxb +pxb +pxb +pxb lgY -qMJ +udi qDt -pkH -pkH -pkH +ryU +ryU +ryU taW -qMJ -rPQ -lBl -lBl -lBl -lBl -lBl -lBl -veq -veq -veq -vqw -vqw +udi +gVn +pxb +pxb +pxb +pxb +pxb +pxb +pwa +pwa +pwa +xqp +xqp cpy cpy eYM mMX -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -fxZ -fxZ -qCs +wfP +wfP +jJF xIK eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70295,54 +58938,54 @@ xVV max max ofi -rFw +osN aFf wHo xzp ojb uom -kWp +ymc rnT -lBl -lBl -lBl -veq -veq -lBl -lBl +pxb +pxb +pxb +pwa +pwa +pxb +pxb qDD rys rys rys jYK -lBl -lBl -lBl -lBl -veq -veq -lBl -veq -veq -veq -lBl -vqw -vqw +pxb +pxb +pxb +pxb +pwa +pwa +pxb +pwa +pwa +pwa +pxb +xqp +xqp cpy cpy eYM mMX -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -fxZ -fxZ -fxZ -qCs +wfP +wfP +wfP +jJF eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70522,54 +59165,54 @@ max max max ofi -rFw -kZJ +osN +aFf ggS uol uol rzz -kWp +ymc rnT -lBl -lBl -veq -veq -veq -veq -veq -veq -lBl -lBl -lBl -lBl -lBl -lBl -lBl -veq -veq -veq -veq -veq -veq -lBl -lBl -veq -vqw +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pwa +xqp cpy cpy eYM oBw -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -xZN -fxZ -fxZ -qCs +mzi +wfP +wfP +jJF eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70749,7 +59392,7 @@ max max max ofi -rFw +osN kPJ ggS nEq @@ -70757,46 +59400,46 @@ nEq rzz syM rnT -lBl -veq -veq -veq -vqw -veq -veq -veq -veq -veq -veq -veq -lBl -lBl -veq -veq -veq -veq -veq -veq -lBl -lBl -lBl -lBl -lBl +pxb +pwa +pwa +pwa +xqp +pwa +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pxb +pxb +pxb cpy cpy eYM sdN -fxZ -fxZ -qCs +wfP +wfP +jJF eYM xIK -fxZ -fxZ +wfP +wfP rcR eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70976,31 +59619,31 @@ max max ofi tZh -rFw +osN aFf lJU uol vbu oPR -kWp +ymc rnT -veq -veq -veq -lBl -vqw -vqw -veq -veq -vqw -vqw -vqw -veq -veq -veq -veq -veq -veq +pwa +pwa +pwa +pxb +xqp +xqp +pwa +pwa +xqp +xqp +xqp +pwa +pwa +pwa +pwa +pwa +pwa tMq jZD jZD @@ -71013,17 +59656,17 @@ cpy cpy eYM kbo -fxZ -qCs -qCs +wfP +jJF +jJF eYM xIK -qCs -fxZ +jJF +wfP rcR eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -71203,22 +59846,22 @@ max max ofi tZh -rFw +osN aFf xdn rzz omG oRS -kWp +ymc rnT -veq -veq -lBl -cpy -lBl -lBl -lBl -veq +pwa +pwa +pxb +cpy +pxb +pxb +pxb +pwa rAu umK sCb @@ -71226,8 +59869,8 @@ tfb tMt umK uFp -veq -veq +pwa +pwa vtN tFx tFx @@ -71240,17 +59883,17 @@ cpy cpy eYM ikb -fxZ -qCs +wfP +jJF eYM eYM eYM ntT -fxZ -fxZ +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -71429,22 +60072,22 @@ max max max tZh -fPt -fHB +pAj +fnA tFx -kWp -pid -kWp +ymc +xXO +ymc tFx tFx rnT -lBl -lBl +pxb +pxb cpy cpy -lBl -lBl -lBl +pxb +pxb +pxb rAu rOw tFx @@ -71476,8 +60119,8 @@ eYM jCh eYM eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -71656,7 +60299,7 @@ cxv max max tZh -rFw +osN tFx tFx eiP @@ -71665,13 +60308,13 @@ jQC tFx tFx rnT -lBl -lBl -lBl -lBl -lBl -lBl -veq +pxb +pxb +pxb +pxb +pxb +pxb +pwa gej tFx tFx @@ -71693,17 +60336,17 @@ tFx eYM uEV sdN -fxZ -qCs -qCs +wfP +jJF +jJF eYM eYM eYM nSq -fxZ -qCs +wfP +jJF vTQ -nvV +sRM eYM eYM cpy @@ -71883,22 +60526,22 @@ kmq cxv max max -rFw +osN aFf mFm nnv vbu vbu rzz -kWp +ymc rnT -lBl -lBl -lBl -lBl -lBl -lBl -veq +pxb +pxb +pxb +pxb +pxb +pxb +pwa gej tFx ykU @@ -71919,18 +60562,18 @@ ggS tFx eZW pET -fxZ -fxZ -fxZ -qCs +wfP +wfP +wfP +jJF xIK eYM qXs -qCs -fxZ -fxZ +jJF +wfP +wfP vTQ -nvV +sRM eYM cpy cpy @@ -72110,7 +60753,7 @@ mBF hpq max max -rFw +osN aFf mOf nnW @@ -72119,13 +60762,13 @@ uol rzz syM rnT -lBl -lBl -lBl -lBl -lBl -veq -veq +pxb +pxb +pxb +pxb +pxb +pwa +pwa gej ymc gQy @@ -72145,19 +60788,19 @@ ggS rSh vNW pYj -fxZ -fxZ -fxZ -fxZ -fxZ +wfP +wfP +wfP +wfP +wfP waz eYM qLk -fxZ -fxZ -fxZ +wfP +wfP +wfP uIF -nvV +sRM eYM cpy cpy @@ -72337,14 +60980,14 @@ kbS hpq max max -rFw +osN aFf mOP nsr uol uol oVK -kWp +ymc vGo jZD ien @@ -72371,20 +61014,20 @@ nEq ggS tVj tFx -eTu +cLB kZq -qCs +jJF qVQ -qCs +jJF xIK eYM eYM epN -fxZ -qCs -qCs +wfP +jJF +jJF uIF -nvV +sRM eYM cpy cpy @@ -72564,7 +61207,7 @@ fnA dPP max max -rFw +osN tFx tFx nuU @@ -72607,11 +61250,11 @@ eYM eYM eYM epN -fxZ -fxZ -fxZ +wfP +wfP +wfP vTQ -nvV +sRM eYM cpy cpy @@ -72791,22 +61434,22 @@ mBF hpq max max -std -fHB +gMQ +fnA tFx rIM rIM rIM tFx -fHB -fbh -fbh +fnA +veQ +veQ ien -fbh -fbh -fbh +veQ +veQ +veQ ien -fbh +veQ qLu aFf fDF @@ -72825,25 +61468,25 @@ vAW tVj tFx tFx -pjl -pjl -pjl -pjl -pjl -pjl -pjl +cpy +cpy +cpy +cpy +cpy +cpy +cpy eYM eYM -qCs +jJF gXb -qCs -qCs +jJF +jJF eYM eYM -pjl -pjl -pjl -pjl +cpy +cpy +cpy +cpy bMX "} (43,1,1) = {" @@ -73019,13 +61662,13 @@ hpq max max max -std -fbh -fbh -fbh -fbh -fbh -rJv +gMQ +veQ +veQ +veQ +veQ +veQ +xVV ofi max max @@ -73051,23 +61694,23 @@ tFx tFx tFx tFx -pjl -pjl cpy cpy cpy cpy cpy -pjl -pjl -spj +cpy +cpy +cpy +cpy +eYM eYM eYM oWK eYM eYM -pjl -pjl +cpy +cpy cpy cpy cpy @@ -73270,16 +61913,17 @@ ufS tFx tFx cpy -fHB -fbh -fbh -fbh -fbh -fbh -fbh -fbh -fbh -fHB +fnA +veQ +veQ +veQ +veQ +veQ +veQ +veQ +veQ +fnA +cpy cpy cpy cpy @@ -73287,13 +61931,12 @@ cpy cpy cpy cpy -pjl -spj +eYM iIa drd uug -spj -pjl +eYM +cpy cpy cpy cpy @@ -73517,7 +62160,7 @@ bPJ bPJ bPJ aue -wfP +nZP dnO bPJ bPJ @@ -73745,7 +62388,7 @@ jba bPJ edi pXv -wfP +nZP pQq nVr bPJ @@ -73966,14 +62609,14 @@ ofi osN aQH qaT -hTe -hTe +eSW +eSW jFl aQH mJs czE -wfP -wfP +nZP +nZP wcY bPJ bPJ @@ -74193,15 +62836,15 @@ ofi osN bPJ fYD -qxk +orA ymf sHd bPJ eeb -wfP +nZP ixV -wfP -wfP +nZP +nZP uwe bPJ bPJ @@ -74426,11 +63069,11 @@ bPJ bPJ bPJ rAM -wfP -wfP -wfP -wfP -sRM +nZP +nZP +nZP +nZP +hHe bPJ cpy bMX @@ -74653,11 +63296,11 @@ cpy bPJ bPJ qxf -wfP -wfP -wfP +nZP +nZP +nZP pXv -sRM +hHe bPJ cpy bMX @@ -74880,10 +63523,10 @@ cpy cpy bPJ evu -wfP -wfP -wfP -jJF +nZP +nZP +nZP +enB hiL bPJ cpy @@ -75108,10 +63751,10 @@ cpy bPJ bPJ gfs -wfP -wfP +nZP +nZP gWc -wfP +nZP bPJ cpy bMX @@ -75562,9 +64205,9 @@ cpy cpy cpy bPJ -wfP -wfP -wfP +nZP +nZP +nZP iGD bPJ cpy @@ -75790,7 +64433,7 @@ cpy cpy bPJ bPJ -wfP +nZP ixV bPJ bPJ @@ -76017,8 +64660,8 @@ cpy cpy cpy bPJ -wfP -wfP +nZP +nZP ixV bPJ cpy @@ -76245,7 +64888,7 @@ cpy cpy bPJ ica -wfP +nZP fvn bPJ cpy @@ -76472,8 +65115,8 @@ bPJ bPJ bPJ qKV -jJF -sRM +enB +hHe bPJ cpy bMX @@ -76699,8 +65342,8 @@ fnA bPJ bPJ fCb -jJF -sRM +enB +hHe bPJ cpy bMX @@ -76926,7 +65569,7 @@ osN bPJ oeN rgS -wfP +nZP hiL bPJ cpy @@ -77153,8 +65796,8 @@ osN bPJ tXc fJr -wfP -wfP +nZP +nZP bPJ cpy bMX @@ -77380,7 +66023,7 @@ osN aQH euT fJr -wfP +nZP bPJ bPJ cpy @@ -77605,9 +66248,9 @@ max max osN bPJ -cLB +kHW cJF -wfP +nZP gkH bPJ cpy @@ -77834,7 +66477,7 @@ fnA bPJ bPJ aRB -jJF +enB bPJ bPJ cpy @@ -78061,8 +66704,8 @@ bPJ bPJ bPJ bLA -jJF -wfP +enB +nZP bPJ cpy bMX @@ -78287,8 +66930,8 @@ fnA cpy cpy bPJ -wfP -jJF +nZP +enB fvn bPJ cpy @@ -78514,9 +67157,9 @@ cpy cpy cpy bPJ -wfP +nZP uwe -sRM +hHe bPJ cpy bMX @@ -78741,9 +67384,9 @@ wIr cpy bPJ bPJ -wfP -wfP -sRM +nZP +nZP +hHe bPJ cpy bMX @@ -78968,8 +67611,8 @@ wIr wIr bPJ xsN -wfP -wfP +nZP +nZP bPJ bPJ cpy @@ -79196,7 +67839,7 @@ wIr wIr nRY uwe -wfP +nZP bPJ cpy cpy @@ -79423,7 +68066,7 @@ lBd wIr guh bQA -wfP +nZP bPJ cpy cpy @@ -79649,7 +68292,7 @@ hhI hLx wIr oox -mzi +mlv pXv bPJ cpy @@ -80104,7 +68747,7 @@ pfq wIr rsD bQA -wfP +nZP bPJ cpy cpy @@ -80329,9 +68972,9 @@ aPu mOJ wIr wIr -mzi -wfP -jJF +mlv +nZP +enB bPJ cpy cpy @@ -80556,9 +69199,9 @@ vDL wIr wIr evu -wfP -jJF -jJF +nZP +enB +enB bPJ cpy cpy @@ -80783,8 +69426,8 @@ wIr wIr qxf qxf -wfP -jJF +nZP +enB bPJ bPJ cpy @@ -81009,9 +69652,9 @@ vLI wIr bPJ wLw -wfP -wfP -wfP +nZP +nZP +nZP bPJ cpy cpy @@ -81236,9 +69879,9 @@ tOo bPJ bPJ fZo -wfP -wfP -wfP +nZP +nZP +nZP bPJ cpy cpy @@ -81463,9 +70106,9 @@ mnb ouj bPJ pdp -wfP -wfP -wfP +nZP +nZP +nZP bPJ cpy cpy @@ -81690,9 +70333,9 @@ mnb gmu nYU geT -wfP -jJF -jJF +nZP +enB +enB bPJ cpy cpy @@ -81917,8 +70560,8 @@ mnb gmu bPJ tlB -wfP -jJF +nZP +enB bPJ bPJ cpy @@ -82144,8 +70787,8 @@ mnb eDq bPJ gJr -wfP -wfP +nZP +nZP bPJ cpy cpy @@ -82371,7 +71014,7 @@ tOo bPJ bPJ pHi -wfP +nZP uIY bPJ cpy @@ -88682,7 +77325,7 @@ yhi yhi fxl six -gbq +jCU jwM jwM ild @@ -93447,7 +82090,7 @@ icW eHI xvl xvl -xwv +otS hMz gBy mUr @@ -94355,7 +82998,7 @@ icW oPW xvl xvl -xwv +otS hMz fWG uwT diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index a9baa8a1efc7..98c56dde6098 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -119,15 +119,11 @@ /turf/closed/wall/cult, /area/lv624/ground/caves/east_caves) "aaR" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/east_caves) "aaS" = ( /obj/effect/decal/remains/xeno, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/east_caves) "aaT" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -153,9 +149,7 @@ /area/lv624/ground/caves/north_central_caves) "aba" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/east_caves) "abb" = ( /turf/open/gm/river, @@ -206,9 +200,7 @@ /obj/structure/largecrate/supply/ammo/shotgun{ pixel_y = 8 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) "abo" = ( /obj/effect/landmark/hunter_primary, @@ -225,10 +217,7 @@ "abt" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/lmg, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "abv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -246,9 +235,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "abz" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/barrens/south_eastern_barrens) "abA" = ( /obj/structure/closet/crate/freezer/rations, @@ -277,9 +264,7 @@ unacidable = 1 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/west_caves) "abH" = ( /obj/effect/landmark/good_item, @@ -310,17 +295,13 @@ /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) "abU" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) "abV" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "abW" = ( /obj/effect/landmark/hunter_primary, @@ -331,9 +312,7 @@ /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) "abZ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) "aca" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -342,9 +321,7 @@ /area/lv624/ground/caves/west_caves) "acb" = ( /obj/structure/window/framed/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage) "acc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -375,9 +352,7 @@ }, /obj/item/tool/kitchen/knife/butcher, /obj/effect/decal/cleanable/blood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/lv624/ground/caves/north_central_caves) "acl" = ( /obj/structure/window/framed/colony, @@ -385,18 +360,14 @@ /area/lv624/lazarus/chapel) "acm" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "acn" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Nexus Dome Canteen"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aco" = ( /obj/effect/landmark/crap_item, @@ -423,20 +394,14 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "act" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/kitchen) "acu" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/west_caves) "acv" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -444,29 +409,21 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/kitchen) "acw" = ( /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acy" = ( /obj/effect/decal/remains/xeno, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/west_caves) "acB" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acC" = ( /obj/structure/surface/table/woodentable/poor, @@ -501,9 +458,7 @@ /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) "acJ" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/ground/barrens/north_east_barrens) "acK" = ( /obj/structure/tunnel{ @@ -513,24 +468,18 @@ /area/lv624/ground/caves/west_caves) "acL" = ( /obj/item/tool/shovel, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acM" = ( /obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acN" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -539,9 +488,7 @@ /area/lv624/ground/caves/south_central_caves) "acQ" = ( /obj/item/device/flashlight/on, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acS" = ( /obj/effect/landmark/hunter_primary, @@ -550,32 +497,24 @@ "acT" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acU" = ( /obj/item/tool/pickaxe, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acV" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/nsg23/extended, /obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acW" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/ammo_magazine/rifle/nsg23{ current_rounds = 0 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "acX" = ( /obj/effect/decal/remains/xeno, @@ -591,9 +530,7 @@ /area/lv624/ground/caves/south_central_caves) "acZ" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) "ada" = ( /obj/structure/surface/table/reinforced/prison, @@ -602,9 +539,7 @@ /obj/item/stack/sheet/wood{ amount = 16 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "adc" = ( /obj/effect/landmark/crap_item, @@ -612,21 +547,15 @@ /area/lv624/ground/caves/south_central_caves) "add" = ( /obj/item/clothing/suit/storage/hazardvest, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "ade" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/west_caves) "adf" = ( /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "adg" = ( /obj/structure/girder/displaced, @@ -686,18 +615,13 @@ /area/lv624/ground/barrens/north_east_barrens) "adx" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "ady" = ( /turf/closed/wall/cult, /area/lv624/ground/caves/south_central_caves) "adA" = ( -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, +/turf/open/floor/airless/asteroidfloor/northeast, /area/lv624/ground/barrens/north_east_barrens) "adC" = ( /obj/structure/surface/rack, @@ -707,10 +631,7 @@ /obj/item/stack/sheet/mineral/platinum{ pixel_x = -6 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adD" = ( /obj/structure/surface/rack, @@ -718,10 +639,7 @@ amount = 2 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adE" = ( /obj/structure/surface/rack, @@ -734,18 +652,12 @@ amount = 30 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adF" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adH" = ( /obj/effect/decal/remains/xeno, @@ -763,18 +675,14 @@ name = "Mining Storage"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adJ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "adM" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adN" = ( /obj/structure/surface/rack, @@ -785,10 +693,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, @@ -806,33 +711,22 @@ pixel_x = -4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adS" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "adT" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/silver{ amount = 20 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "adU" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, +/turf/open/floor/airless/asteroidfloor/northeast, /area/lv624/ground/barrens/north_east_barrens) "adX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -865,10 +759,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/south_east_caves) "aec" = ( /obj/structure/surface/table/woodentable/poor, @@ -893,10 +784,7 @@ /obj/item/weapon/gun/rifle/mar40{ pixel_y = -3 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "aej" = ( /obj/structure/flora/jungle/vines/heavy, @@ -913,17 +801,11 @@ /area/lv624/ground/caves/south_east_caves) "ael" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/ground/barrens/containers) "aem" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/ground/barrens/containers) "aen" = ( /obj/structure/fence, @@ -952,50 +834,32 @@ /area/lv624/ground/caves/west_caves) "aet" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/ground/barrens/containers) "aev" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) "aex" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/barrens/containers) "aey" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/barrens/containers) "aez" = ( /turf/open/gm/river, /area/lv624/ground/caves/west_caves) "aeA" = ( /obj/structure/cargo_container/wy/mid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/barrens/containers) "aeC" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/barrens/containers) "aeD" = ( /obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/barrens/containers) "aeE" = ( /obj/structure/largecrate/random, @@ -1032,10 +896,7 @@ color = "#b29082"; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "aeS" = ( /obj/effect/landmark/hunter_primary, @@ -1059,10 +920,7 @@ /area/lv624/ground/barrens/containers) "afd" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, +/turf/open/floor/warning/east, /area/lv624/ground/barrens/containers) "aff" = ( /obj/structure/cargo_container/wy/left, @@ -1089,10 +947,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "afk" = ( /obj/item/ammo_casing, @@ -1119,28 +974,19 @@ "afr" = ( /obj/structure/ore_box, /obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, +/turf/open/floor/warning/east, /area/lv624/ground/barrens/containers) "afu" = ( /obj/item/ammo_casing, /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/barrens/central_barrens) "afv" = ( /obj/structure/surface/table/reinforced{ dir = 1; flipped = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/central_barrens) "afw" = ( /obj/structure/surface/table/reinforced{ @@ -1148,23 +994,14 @@ flipped = 1 }, /obj/item/ammo_casing, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/central_barrens) "afx" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/central_barrens) "afy" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/barrens/central_barrens) "afE" = ( /obj/effect/decal/remains/xeno, @@ -1173,10 +1010,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/south_east_caves) "afF" = ( /obj/effect/decal/cleanable/blood, @@ -1187,10 +1021,7 @@ dir = 8; flipped = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/barrens/central_barrens) "afI" = ( /obj/effect/landmark/crap_item, @@ -1220,10 +1051,7 @@ dir = 4; flipped = 1 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/barrens/central_barrens) "afR" = ( /obj/structure/ore_box, @@ -1245,10 +1073,7 @@ flipped = 1 }, /obj/effect/decal/remains/human, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/barrens/central_barrens) "afX" = ( /obj/item/ammo_casing, @@ -1349,10 +1174,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) "ags" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/barrens/central_barrens) "agt" = ( /obj/structure/surface/table/reinforced{ @@ -1372,16 +1194,10 @@ pixel_x = -6 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "agv" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/barrens/central_barrens) "agz" = ( /obj/structure/cargo_container/horizontal/blue/middle, @@ -1428,10 +1244,7 @@ /area/lv624/ground/barrens/east_barrens) "agQ" = ( /obj/item/ammo_casing, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/barrens/central_barrens) "agR" = ( /obj/structure/surface/table/reinforced{ @@ -1477,10 +1290,7 @@ /area/lv624/ground/barrens/central_barrens) "agW" = ( /obj/item/ammo_casing, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/barrens/central_barrens) "agX" = ( /turf/open/gm/dirt, @@ -1543,15 +1353,11 @@ /area/lv624/ground/barrens/west_barrens/ceiling) "ahy" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "ahz" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "ahB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -1566,27 +1372,18 @@ /area/lv624/ground/caves/south_west_caves) "ahJ" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "ahK" = ( /obj/item/device/analyzer, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "ahL" = ( -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "ahM" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/barrens/central_barrens) "ahN" = ( /obj/structure/surface/table/reinforced{ @@ -1594,9 +1391,7 @@ }, /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/central_barrens) "ahO" = ( /obj/effect/decal/remains/human, @@ -1606,27 +1401,18 @@ /obj/structure/surface/table/reinforced{ flipped = 1 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/central_barrens) "ahR" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/central_barrens) "ahS" = ( /obj/item/ammo_casing, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/central_barrens) "ahT" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/barrens/central_barrens) "ahV" = ( /obj/effect/landmark/crap_item, @@ -1634,71 +1420,47 @@ /area/lv624/ground/caves/south_west_caves) "ahW" = ( /obj/item/tool/shovel, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "aie" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "aif" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "aih" = ( /obj/structure/largecrate/random, /obj/item/tool/crowbar/red, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/barrens/east_barrens/ceiling) "aij" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aik" = ( /obj/structure/surface/table, /obj/item/ashtray/plastic, /obj/item/stack/flag/red, /obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aim" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "ain" = ( /obj/structure/machinery/computer3, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aio" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aip" = ( /obj/structure/surface/table, @@ -1706,25 +1468,17 @@ amount = 40 }, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aiq" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil/random, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/barrens/east_barrens/ceiling) "aiu" = ( /obj/effect/landmark/corpsespawner/miner, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "aiv" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -1733,57 +1487,37 @@ "aiw" = ( /obj/structure/machinery/constructable_frame, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/barrens/east_barrens/ceiling) "aix" = ( /obj/item/frame/apc, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aiy" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aiz" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "aiA" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aiB" = ( /obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aiD" = ( /obj/structure/sink{ pixel_y = 30 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "aiF" = ( /obj/item/weapon/butterfly/switchblade, @@ -1806,67 +1540,48 @@ /obj/structure/surface/table, /obj/item/stack/medical/ointment, /obj/effect/spawner/random/toolbox, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/barrens/east_barrens/ceiling) "aiK" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "platebot" - }, +/turf/open/floor/platebot, /area/lv624/ground/barrens/east_barrens/ceiling) "aiL" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "Water Filtration Plant"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/east_barrens/ceiling) "aiM" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/barrens/east_barrens/ceiling) "aiO" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "aiP" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "aiQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "aiR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "aiS" = ( /obj/item/tool/kitchen/knife/butcher, @@ -1877,21 +1592,14 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "aiU" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "aiV" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/barrens/east_barrens/ceiling) "aja" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -1906,10 +1614,7 @@ "ajd" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "ajg" = ( /obj/structure/flora/bush/ausbushes, @@ -1934,10 +1639,7 @@ /obj/item/stack/sheet/animalhide/xeno{ name = "Lurker Hide" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "ajp" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -1980,10 +1682,7 @@ /area/lv624/ground/river/east_river) "ajx" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/river/central_river) "ajA" = ( /obj/structure/fence, @@ -1992,10 +1691,7 @@ /area/lv624/lazarus/landing_zones/lz1) "ajD" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/river/east_river) "ajE" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -2023,25 +1719,16 @@ /area/lv624/ground/river/east_river) "ajJ" = ( /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "ajL" = ( /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/east_river) "ajM" = ( /obj/structure/fence, /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/river/central_river) "ajR" = ( /obj/effect/decal/mecha_wreckage/ripley{ @@ -2052,10 +1739,7 @@ /area/lv624/ground/barrens/west_barrens) "ajS" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/river/central_river) "ajT" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -2063,16 +1747,10 @@ /area/lv624/ground/river/central_river) "ajU" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "ajV" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "ajW" = ( /turf/open/floor/plating, @@ -2103,20 +1781,14 @@ icon_state = "pipe-c" }, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "akc" = ( /obj/structure/grille{ density = 0; icon_state = "brokengrille" }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/east_river) "akd" = ( /obj/effect/landmark/hunter_primary, @@ -2158,10 +1830,7 @@ "akp" = ( /obj/structure/grille, /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/east_river) "akq" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -2174,10 +1843,7 @@ "akt" = ( /obj/structure/disposalpipe/junction, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "aku" = ( /obj/structure/disposalpipe/segment{ @@ -2185,10 +1851,7 @@ icon_state = "pipe-c" }, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/east_river) "akv" = ( /obj/structure/disposalpipe/trunk{ @@ -2205,33 +1868,21 @@ /area/lv624/lazarus/landing_zones/lz1) "akA" = ( /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/west_river) "akC" = ( /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "akD" = ( /obj/structure/disposalpipe/segment, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "akE" = ( /obj/structure/disposalpipe/segment, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/east_river) "akJ" = ( /obj/structure/disposalpipe/segment{ @@ -2252,10 +1903,7 @@ density = 0; icon_state = "brokengrille" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/west_river) "akN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -2267,10 +1915,7 @@ density = 0; icon_state = "brokengrille" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "akQ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -2284,10 +1929,7 @@ "akT" = ( /obj/structure/disposalpipe/junction, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/west_river) "akU" = ( /obj/structure/disposalpipe/segment{ @@ -2295,10 +1937,7 @@ icon_state = "pipe-c" }, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "akV" = ( /obj/structure/disposalpipe/trunk{ @@ -2338,10 +1977,7 @@ icon_state = "pipe-c" }, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/east_river) "ale" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -2354,10 +1990,7 @@ "ali" = ( /obj/structure/disposalpipe/segment, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "alo" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -2396,10 +2029,7 @@ density = 0; icon_state = "brokengrille" }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "alF" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -2410,10 +2040,7 @@ dir = 1 }, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "alL" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -2445,10 +2072,7 @@ density = 0; icon_state = "brokengrille" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/west_river) "alS" = ( /obj/structure/disposalpipe/segment{ @@ -2456,10 +2080,7 @@ icon_state = "pipe-c" }, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "alT" = ( /obj/structure/disposalpipe/segment{ @@ -2479,14 +2100,10 @@ /area/lv624/ground/river/central_river) "alX" = ( /obj/structure/fence, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/ground/river/central_river) "alY" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/ground/river/central_river) "alZ" = ( /obj/effect/landmark/crap_item, @@ -2495,17 +2112,11 @@ /area/lv624/ground/river/central_river) "ama" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/river/central_river) "amf" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/river/east_river) "amh" = ( /obj/structure/flora/jungle/alienplant1, @@ -2517,10 +2128,7 @@ "aml" = ( /obj/structure/disposalpipe/segment, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/west_river) "amo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -2551,10 +2159,7 @@ dir = 1 }, /obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/west_river) "amB" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -2597,26 +2202,18 @@ /area/lv624/lazarus/landing_zones/lz1) "amR" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/river/east_river) "amS" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/river/central_river) "amT" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/river/central_river) "amW" = ( /obj/effect/landmark/crap_item, @@ -2624,10 +2221,7 @@ /area/lv624/ground/jungle/north_east_jungle) "amX" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/river/west_river) "amZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -2652,10 +2246,7 @@ icon_state = "box_1" }, /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/river/central_river) "ank" = ( /turf/open/floor/plating, @@ -2690,10 +2281,7 @@ /area/lv624/ground/caves/central_caves) "anE" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/river/central_river) "anF" = ( /turf/closed/wall, @@ -2705,10 +2293,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/west, /area/lv624/lazarus/corporate_dome) "anM" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -2727,10 +2312,7 @@ /area/lv624/lazarus/medbay) "anT" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "anW" = ( /obj/structure/flora/bush/ausbushes/pointybush, @@ -2738,25 +2320,18 @@ /area/lv624/ground/jungle/south_east_jungle) "aoa" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aob" = ( /obj/structure/machinery/sleep_console, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aol" = ( /obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aon" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -2771,9 +2346,7 @@ /obj/item/clothing/glasses/hud/health, /obj/effect/landmark/crap_item, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aos" = ( /obj/structure/surface/table, @@ -2787,30 +2360,19 @@ }, /obj/item/storage/belt/medical/full, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "aou" = ( -/turf/open/floor{ - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner, /area/lv624/lazarus/medbay) "aov" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "aow" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/medbay) "aox" = ( /obj/structure/machinery/medical_pod/bodyscanner, @@ -2820,22 +2382,14 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aoz" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aoA" = ( -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aoB" = ( /obj/structure/surface/table, @@ -2844,63 +2398,39 @@ dir = 1 }, /obj/item/reagent_container/glass/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aoC" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aoE" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "aoF" = ( /obj/item/reagent_container/hypospray, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "aoI" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "aoK" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/medbay) "aoL" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aoO" = ( /obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aoP" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aoR" = ( /obj/structure/surface/table, @@ -2909,16 +2439,10 @@ pixel_y = 6 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aoU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/north, /area/lv624/lazarus/medbay) "aoX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -2963,9 +2487,7 @@ "apw" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "apx" = ( /obj/item/device/radio/intercom{ @@ -2974,33 +2496,21 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "apA" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "apC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "apH" = ( /obj/item/tool/crowbar, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "apN" = ( /turf/closed/wall/r_wall, @@ -3019,9 +2529,7 @@ /area/lv624/ground/barrens/south_eastern_jungle_barrens) "apV" = ( /obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "apW" = ( /obj/structure/flora/jungle/vines/light_3, @@ -3033,9 +2541,7 @@ dir = 2; name = "\improper Medical Bay" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "aqf" = ( /obj/structure/window/framed/colony/reinforced, @@ -3053,10 +2559,7 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aqq" = ( /obj/structure/flora/bush/ausbushes/pointybush, @@ -3091,10 +2594,7 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "aqF" = ( /obj/structure/fence, @@ -3131,10 +2631,7 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/medbay) "aqR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -3163,16 +2660,11 @@ "arf" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "arg" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/west, /area/lv624/lazarus/medbay) "ari" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -3191,20 +2683,14 @@ pixel_y = -3 }, /obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "arq" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/apron, /obj/item/tool/shovel, /obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "arr" = ( /obj/structure/surface/rack, @@ -3221,37 +2707,25 @@ pixel_y = -2 }, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "art" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/structure/machinery/light, /obj/item/reagent_container/glass/fertilizer, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "aru" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "arv" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "arw" = ( /obj/structure/fence, @@ -3271,15 +2745,11 @@ /area/lv624/lazarus/quartstorage/outdoors) "arI" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage/outdoors) "arJ" = ( /obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "arK" = ( /turf/closed/wall, @@ -3287,10 +2757,7 @@ "arL" = ( /obj/structure/barricade/wooden, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz1) "arO" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -3315,9 +2782,7 @@ /area/lv624/ground/river/east_river) "arT" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/barrens/south_eastern_barrens) "arU" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -3349,14 +2814,10 @@ /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) "asj" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage/outdoors) "ask" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "asl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -3399,9 +2860,7 @@ /area/lv624/lazarus/quartstorage/outdoors) "asA" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage/outdoors) "asF" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -3417,10 +2876,7 @@ /area/lv624/ground/colony/south_medbay_road) "asJ" = ( /obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, +/turf/open/floor/warning/northeast, /area/lv624/lazarus/landing_zones/lz1) "asK" = ( /obj/structure/flora/jungle/vines/light_3, @@ -3428,9 +2884,7 @@ /area/lv624/ground/jungle/west_jungle) "asL" = ( /obj/item/tool/warning_cone, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "asM" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -3445,9 +2899,7 @@ /area/lv624/lazarus/quartstorage) "asO" = ( /obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage) "asP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -3489,9 +2941,7 @@ name = "\improper Research Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "asX" = ( /obj/structure/flora/jungle/vines/light_3, @@ -3513,33 +2963,23 @@ /area/lv624/ground/jungle/west_jungle) "atc" = ( /obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "atd" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "ath" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ati" = ( /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) "atk" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, +/turf/open/floor/warning/east, /area/lv624/lazarus/landing_zones/lz1) "atn" = ( /obj/structure/window_frame/colony/reinforced, @@ -3551,16 +2991,11 @@ /turf/open/floor/plating, /area/lv624/lazarus/research) "atp" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "atq" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "atu" = ( /turf/open/gm/dirtgrassborder/west, @@ -3579,10 +3014,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "atz" = ( /obj/structure/window_frame/colony, @@ -3598,9 +3030,7 @@ /area/lv624/ground/jungle/west_jungle) "atD" = ( /obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "atE" = ( /obj/item/stack/sheet/wood{ @@ -3610,9 +3040,7 @@ /area/lv624/lazarus/quartstorage) "atF" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "atG" = ( /obj/structure/machinery/light/small{ @@ -3656,10 +3084,7 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "atQ" = ( /obj/structure/lamarr{ @@ -3669,10 +3094,7 @@ occupied = 0 }, /obj/item/shard, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "atR" = ( /obj/structure/lamarr{ @@ -3685,10 +3107,7 @@ pixel_x = 32 }, /obj/item/shard, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "atS" = ( /obj/effect/decal/cleanable/blood, @@ -3699,10 +3118,7 @@ dir = 4 }, /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "atU" = ( /turf/closed/wall, @@ -3713,15 +3129,10 @@ pixel_y = 4 }, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "atX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "atY" = ( /obj/structure/window_frame/colony, @@ -3748,9 +3159,7 @@ /turf/open/gm/river, /area/lv624/ground/river/west_river) "aue" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/jungle/west_jungle/ceiling) "auf" = ( /turf/open/floor/wood, @@ -3770,19 +3179,14 @@ name = "Surgery Cleaner" }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aul" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) "aum" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aun" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -3795,17 +3199,11 @@ }, /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aup" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aut" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3819,26 +3217,18 @@ name = "\improper Research Dome"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "auv" = ( /obj/effect/decal/remains/human, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "auw" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aux" = ( /obj/structure/flora/jungle/vines/light_3, @@ -3852,17 +3242,11 @@ "auz" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "auA" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "auB" = ( /obj/structure/surface/table, @@ -3872,62 +3256,41 @@ }, /obj/item/reagent_container/glass/fertilizer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "auD" = ( /obj/item/clothing/under/shorts/red, /obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "auE" = ( /turf/open/gm/river, /area/lv624/lazarus/fitness) "auF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "auG" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "auH" = ( /obj/structure/closet/crate/secure/hydrosec, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "auI" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "auJ" = ( /obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "auK" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "auM" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -3949,37 +3312,23 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/jungle/west_jungle/ceiling) "auV" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "auW" = ( /obj/item/bananapeel, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "auX" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "auY" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "auZ" = ( /obj/item/toy/inflatable_duck, @@ -3987,21 +3336,15 @@ /area/lv624/lazarus/fitness) "ava" = ( /obj/structure/cargo_container/seegson/left, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "avb" = ( /obj/structure/cargo_container/seegson/mid, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "avc" = ( /obj/structure/cargo_container/seegson/right, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "ave" = ( /obj/structure/surface/rack, @@ -4047,10 +3390,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "avm" = ( /turf/open/floor/wood, @@ -4070,10 +3410,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/south_east_caves) "avq" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -4082,10 +3419,7 @@ name = "\improper Research Dome"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "avr" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -4096,23 +3430,15 @@ opacity = 0; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "avu" = ( /obj/structure/closet/lasertag/red, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "avv" = ( /obj/item/toy/beach_ball, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "avw" = ( /obj/effect/landmark/good_item, @@ -4120,9 +3446,7 @@ /area/lv624/lazarus/fitness) "avx" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "avy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -4132,28 +3456,20 @@ "avB" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "avD" = ( /obj/structure/surface/table, /obj/effect/decal/remains/human, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "avE" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "avF" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -4163,18 +3479,13 @@ pixel_x = 25 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "avG" = ( /obj/structure/surface/table, /obj/item/clipboard, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "avH" = ( /turf/closed/wall, @@ -4184,10 +3495,7 @@ /obj/item/tool/crowbar, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "avK" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -4196,24 +3504,15 @@ "avL" = ( /obj/structure/closet/lasertag/blue, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "avM" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "avN" = ( /obj/item/tool/soap, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "avP" = ( /obj/structure/fence, @@ -4239,18 +3538,14 @@ /obj/structure/surface/rack, /obj/item/clothing/under/colonist, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "avU" = ( /obj/item/stack/rods{ amount = 20 }, /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "avV" = ( /obj/structure/surface/rack, @@ -4262,10 +3557,7 @@ pixel_x = 4; pixel_y = -2 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "avX" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -4311,24 +3603,18 @@ name = "\improper Research Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awk" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awl" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awm" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -4338,43 +3624,31 @@ opacity = 0; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awn" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awo" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ name = "\improper Research Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awp" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awq" = ( /obj/item/clothing/glasses/regular, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awr" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aws" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -4388,10 +3662,7 @@ opacity = 0; req_access_txt = "100" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "awt" = ( /obj/effect/decal/remains/human, @@ -4403,26 +3674,17 @@ /area/lv624/lazarus/fitness) "awv" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "aww" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "awx" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "awy" = ( /obj/item/device/radio/intercom{ @@ -4431,30 +3693,21 @@ name = "General Listening Channel"; pixel_y = 30 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "awC" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) "awD" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/robotics) "awE" = ( /obj/structure/barricade/wooden{ dir = 1; pixel_y = 7 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/robotics) "awF" = ( /obj/item/storage/toolbox/mechanical, @@ -4462,32 +3715,22 @@ /area/lv624/ground/jungle/north_west_jungle) "awG" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "awH" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awI" = ( /obj/effect/decal/remains/human, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "awK" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "awL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -4506,10 +3749,7 @@ opacity = 0; req_access_txt = "100" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "awN" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -4526,10 +3766,7 @@ name = "\improper Leisure Dome"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "awQ" = ( /obj/effect/landmark/monkey_spawn, @@ -4537,24 +3774,15 @@ /area/lv624/ground/jungle/south_central_jungle) "awR" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "awS" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "awT" = ( /obj/item/clothing/under/shorts/blue, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "awU" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -4562,10 +3790,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "awV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -4589,96 +3814,63 @@ "awZ" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "axa" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "axb" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "axe" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "axf" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "axg" = ( /obj/structure/machinery/cm_vending/sorted/tech/robotics, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "axh" = ( /obj/structure/barricade/wooden{ dir = 1; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "axi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "axj" = ( -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "axk" = ( /obj/structure/prop/mech/armor_booster, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "axo" = ( /obj/structure/closet/cabinet, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) "axp" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) "axt" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/northwest, /area/lv624/lazarus/fitness) "axu" = ( /obj/structure/holohoop, -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/north, /area/lv624/lazarus/fitness) "axv" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/northeast, /area/lv624/lazarus/fitness) "axw" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -4695,16 +3887,11 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "axA" = ( /obj/item/stool, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "axB" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -4712,25 +3899,18 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "axC" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "axD" = ( /obj/effect/decal/remains/human, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) "axF" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "axG" = ( /obj/structure/machinery/shower{ @@ -4740,25 +3920,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "axH" = ( /obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "axI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "axJ" = ( /obj/structure/machinery/light{ @@ -4769,10 +3941,7 @@ phone_id = "Research Dome"; pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "axL" = ( /obj/structure/surface/table, @@ -4780,26 +3949,17 @@ /obj/item/cell/hyper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "axN" = ( /obj/item/storage/firstaid/regular, /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "axQ" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/east, /area/lv624/lazarus/fitness) "axR" = ( /obj/structure/flora/jungle/vines/light_3, @@ -4810,10 +3970,7 @@ pixel_x = 29 }, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "axW" = ( /obj/effect/decal/remains/xeno, @@ -4845,9 +4002,7 @@ /area/lv624/lazarus/quartstorage/outdoors) "ayg" = ( /obj/structure/computerframe, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "ayh" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -4860,105 +4015,72 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "ayk" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aym" = ( /obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "ayn" = ( /obj/structure/dispenser/oxygen, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "ayp" = ( /obj/item/bananapeel, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "ayq" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "ayr" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ name = "\improper Research Dome"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ays" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ayt" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/lv624/lazarus/fitness) "ayu" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) "ayv" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/fitness) "ayw" = ( /turf/open/floor/plating, /area/lv624/lazarus/main_hall) "ayx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/east, /area/lv624/lazarus/fitness) "ayy" = ( /obj/item/clothing/under/shorts/black{ pixel_x = 2; pixel_y = 2 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ayz" = ( /obj/item/tool/mop, /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ayA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -4985,15 +4107,11 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "ayG" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "ayI" = ( /obj/structure/sink{ @@ -5003,9 +4121,7 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/item/prop/alien/hugger, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "ayJ" = ( /obj/item/storage/box/beakers, @@ -5013,33 +4129,22 @@ /obj/structure/sign/safety/biohazard{ pixel_x = -18 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ayK" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "ayL" = ( /obj/item/clothing/suit/redtag, /obj/structure/closet/athletic_mixed, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ayM" = ( /obj/structure/surface/table, /obj/item/folder, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ayO" = ( /obj/item/weapon/baseballbat/metal, @@ -5048,10 +4153,7 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ayP" = ( /turf/closed/wall/r_wall, @@ -5090,10 +4192,7 @@ /obj/item/clothing/head/soft/ferret{ pixel_y = 5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/robotics) "ayX" = ( /obj/structure/surface/table/reinforced, @@ -5107,52 +4206,36 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "ayZ" = ( /obj/item/clothing/mask/gas, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aza" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "azc" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "azd" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aze" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "azf" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/robotics) "azg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -5163,10 +4246,7 @@ "azh" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "azi" = ( /obj/structure/surface/rack, @@ -5175,54 +4255,34 @@ pixel_y = 3 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "azj" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southwest, /area/lv624/lazarus/fitness) "azk" = ( /obj/structure/holohoop{ dir = 1 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/lv624/lazarus/fitness) "azl" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southeast, /area/lv624/lazarus/fitness) "azm" = ( /obj/structure/closet/boxinggloves, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "azn" = ( /obj/structure/surface/rack, /obj/structure/machinery/light, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "azo" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "azp" = ( /turf/closed/wall/r_wall, @@ -5234,30 +4294,22 @@ "azr" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "azs" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) "azt" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "azu" = ( /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "azv" = ( /obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "azw" = ( /turf/closed/wall/r_wall, @@ -5268,9 +4320,7 @@ /area/lv624/lazarus/sleep_female) "azy" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/sleep_female) "azB" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -5289,30 +4339,18 @@ /turf/open/floor/plating, /area/lv624/lazarus/robotics) "azF" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/robotics) "azG" = ( /obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "azI" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "azJ" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/robotics) "azK" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -5327,24 +4365,16 @@ "azL" = ( /obj/structure/closet/cabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "azM" = ( /obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "azN" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "azO" = ( /obj/structure/closet{ @@ -5353,9 +4383,7 @@ opened = 1 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "azP" = ( /turf/closed/wall, @@ -5365,9 +4393,7 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "azR" = ( /turf/closed/wall, @@ -5379,18 +4405,12 @@ }, /obj/structure/machinery/light, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "azT" = ( /obj/structure/bed, /obj/item/bedsheet/yellow, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "azU" = ( /obj/structure/barricade/wooden, @@ -5446,22 +4466,15 @@ /area/lv624/ground/caves/sand_temple) "aAh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/robotics) "aAi" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aAj" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aAl" = ( /turf/open/gm/dirt, @@ -5470,9 +4483,7 @@ /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aAo" = ( /obj/structure/sign/safety/analysis_lab{ @@ -5511,9 +4522,7 @@ dir = 1 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAw" = ( /obj/structure/bed, @@ -5524,9 +4533,7 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAx" = ( /obj/structure/closet, @@ -5536,25 +4543,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAy" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aAz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aAA" = ( /obj/structure/closet, @@ -5563,18 +4564,12 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aAB" = ( /obj/structure/bed, /obj/item/bedsheet/purple, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aAC" = ( /obj/structure/bed{ @@ -5584,10 +4579,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aAD" = ( /obj/structure/surface/rack, @@ -5610,9 +4602,7 @@ "aAP" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAR" = ( /obj/structure/machinery/light/small{ @@ -5623,10 +4613,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aAS" = ( /obj/structure/surface/table, @@ -5636,45 +4623,33 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAU" = ( -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAW" = ( /obj/structure/bed, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAX" = ( /obj/structure/closet, /obj/item/clothing/under/rank/scientist, /obj/structure/window/reinforced/tinted, /obj/item/stack/medical/advanced/bruise_pack, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aAY" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aAZ" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aBa" = ( /obj/structure/closet{ @@ -5690,17 +4665,11 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBb" = ( /obj/structure/bed, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBc" = ( /obj/item/device/radio/intercom{ @@ -5709,36 +4678,24 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBd" = ( /obj/item/reagent_container/food/snacks/donkpocket, /obj/structure/flora/pottedplant, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBe" = ( /obj/structure/surface/table, /obj/item/phone, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBf" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBg" = ( /obj/item/stack/sheet/metal, @@ -5778,10 +4735,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "aBk" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -5807,9 +4761,7 @@ }, /obj/structure/largecrate/random, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aBq" = ( /obj/structure/largecrate, @@ -5820,43 +4772,32 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aBr" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "aBs" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aBt" = ( /obj/structure/computerframe, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aBv" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "aBx" = ( /obj/effect/landmark/hunter_secondary, @@ -5866,51 +4807,34 @@ /obj/structure/flora/pottedplant, /obj/item/trash/cheesie, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBz" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBB" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aBC" = ( -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBD" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBE" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBF" = ( /obj/structure/bed/chair/comfy/lime{ @@ -5918,10 +4842,7 @@ }, /obj/effect/landmark/survivor_spawner, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aBG" = ( /obj/item/stack/rods{ @@ -5976,44 +4897,31 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "aBT" = ( /obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBU" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBV" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBW" = ( /obj/item/stack/medical/advanced/bruise_pack, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBY" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aBZ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -6021,14 +4929,10 @@ name = "\improper Nexus Dome Male Dormitories"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCa" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/lv624/lazarus/main_hall) "aCb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -6036,26 +4940,17 @@ name = "\improper Nexus Dome Female Dormitories"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCc" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCd" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCh" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ @@ -6069,27 +4964,19 @@ /area/lv624/lazarus/landing_zones/lz2) "aCk" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aCl" = ( /obj/structure/largecrate, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aCm" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aCn" = ( /obj/structure/ore_box, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aCo" = ( /obj/effect/decal/mecha_wreckage/ripley{ @@ -6105,9 +4992,7 @@ "aCq" = ( /obj/structure/surface/table, /obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCr" = ( /obj/structure/bed/chair/office/light{ @@ -6115,9 +5000,7 @@ }, /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCs" = ( /obj/structure/fence, @@ -6128,16 +5011,12 @@ /obj/item/tool/crowbar, /obj/item/clothing/gloves/yellow, /obj/item/stack/medical/bruise_pack, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCu" = ( /obj/structure/bed, /obj/item/bedsheet/blue, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCv" = ( /obj/structure/closet{ @@ -6149,24 +5028,17 @@ dir = 1 }, /obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCw" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/lv624/lazarus/main_hall) "aCx" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) "aCy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/lv624/lazarus/main_hall) "aCz" = ( /obj/structure/closet, @@ -6175,28 +5047,19 @@ }, /obj/item/device/healthanalyzer, /obj/item/clothing/shoes/centcom, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCA" = ( /obj/structure/bed, /obj/item/bedsheet/hos, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCB" = ( /obj/structure/bed, /obj/item/bedsheet/purple, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCC" = ( /obj/item/reagent_container/food/drinks/flask/barflask, @@ -6206,10 +5069,7 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCE" = ( /obj/structure/girder/displaced, @@ -6230,14 +5090,10 @@ /area/lv624/lazarus/landing_zones/lz2) "aCK" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/robotics) "aCL" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/robotics) "aCO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -6252,9 +5108,7 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCQ" = ( /obj/structure/surface/table, @@ -6262,16 +5116,12 @@ layer = 3.1 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCR" = ( /obj/item/trash/cheesie, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCS" = ( /obj/structure/fence, @@ -6284,9 +5134,7 @@ opened = 1 }, /obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCU" = ( /obj/structure/bed, @@ -6296,9 +5144,7 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aCV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -6322,53 +5168,36 @@ }, /obj/item/clothing/under/colonist, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aCZ" = ( /obj/structure/surface/table, /obj/item/weapon/gun/pistol/holdout, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aDa" = ( /obj/structure/bed, /obj/item/bedsheet/mime, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aDb" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aDc" = ( /obj/structure/surface/table, /obj/item/device/megaphone, /obj/item/tool/wrench, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aDd" = ( /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) "aDi" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz1) "aDj" = ( /obj/structure/flora/jungle/planttop1, @@ -6387,45 +5216,33 @@ dir = 1 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aDq" = ( /obj/structure/bed, /obj/item/bedsheet/blue, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aDr" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aDs" = ( /obj/structure/bed/roller, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aDt" = ( /obj/structure/closet, /obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aDu" = ( /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aDv" = ( /turf/open/gm/dirt, @@ -6438,10 +5255,7 @@ /obj/structure/closet, /obj/item/clothing/under/blackskirt, /obj/item/stack/medical/advanced/ointment, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aDy" = ( /turf/closed/wall, @@ -6449,19 +5263,13 @@ "aDz" = ( /obj/structure/bed, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aDA" = ( /obj/structure/bed, /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aDB" = ( /obj/structure/surface/table, @@ -6470,10 +5278,7 @@ pixel_x = -32 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aDE" = ( /obj/structure/machinery/power/apc/nocharge{ @@ -6486,10 +5291,7 @@ /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) "aDG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) "aDI" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, @@ -6508,10 +5310,7 @@ /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) "aDM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, +/turf/open/floor/warning/east, /area/lv624/lazarus/landing_zones/lz1) "aDN" = ( /obj/structure/flora/jungle/plantbot1, @@ -6538,10 +5337,7 @@ /turf/closed/wall, /area/lv624/lazarus/toilet) "aDV" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/lv624/lazarus/landing_zones/lz2) "aDW" = ( /obj/structure/machinery/light{ @@ -6550,9 +5346,7 @@ /obj/structure/surface/table, /obj/item/trash/cheesie, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aDX" = ( /obj/structure/machinery/light{ @@ -6561,9 +5355,7 @@ /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/cheeseburger, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aDY" = ( /turf/closed/wall, @@ -6577,26 +5369,17 @@ /area/lv624/lazarus/quart) "aEd" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/east, /area/lv624/lazarus/quartstorage) "aEe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/west_jungle) "aEf" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/quartstorage) "aEg" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/quartstorage) "aEh" = ( /obj/structure/reagent_dispensers/watertank, @@ -6620,10 +5403,7 @@ /area/lv624/lazarus/landing_zones/lz1) "aEn" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "aEs" = ( /obj/structure/fence, @@ -6660,9 +5440,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aEB" = ( /obj/structure/window/reinforced/tinted, @@ -6670,9 +5448,7 @@ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aEC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -6688,9 +5464,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aEE" = ( /obj/structure/machinery/shower{ @@ -6703,9 +5477,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aEF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, @@ -6721,10 +5493,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/lv624/lazarus/chapel) "aEH" = ( /obj/item/device/radio/intercom{ @@ -6736,19 +5505,14 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/lv624/lazarus/chapel) "aEI" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "aEJ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "aEK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -6757,19 +5521,13 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/lv624/lazarus/chapel) "aEL" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/lv624/lazarus/chapel) "aEM" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -6781,25 +5539,19 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aEP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aEQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/lv624/lazarus/main_hall) "aER" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -6812,10 +5564,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/lv624/lazarus/main_hall) "aET" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -6831,20 +5580,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aEV" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aEW" = ( /obj/structure/surface/table, @@ -6854,10 +5597,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aEX" = ( /obj/structure/dispenser, @@ -6870,18 +5610,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aEY" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aEZ" = ( /obj/structure/largecrate/random, @@ -6891,10 +5625,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFa" = ( /obj/structure/largecrate/random, @@ -6904,20 +5635,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFb" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/east, /area/lv624/lazarus/quartstorage) "aFh" = ( /obj/structure/window/reinforced/tinted, @@ -6925,9 +5650,7 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aFj" = ( /obj/structure/window/reinforced/tinted, @@ -6937,49 +5660,36 @@ /obj/structure/toilet{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aFk" = ( /obj/structure/machinery/shower{ dir = 4 }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aFl" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aFm" = ( /turf/closed/wall/wood, /area/lv624/ground/jungle/west_jungle/ceiling) "aFn" = ( -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel, /area/lv624/lazarus/chapel) "aFo" = ( /turf/open/floor/plating, /area/lv624/lazarus/chapel) "aFp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/lv624/lazarus/chapel) "aFq" = ( /obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/chapel) "aFr" = ( /obj/structure/bed/chair/wheelchair, @@ -7003,16 +5713,10 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFw" = ( /obj/structure/machinery/bot/mulebot{ @@ -7022,10 +5726,7 @@ on = 0 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFx" = ( /obj/structure/window/reinforced{ @@ -7034,44 +5735,29 @@ /obj/structure/computerframe{ anchored = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFy" = ( /obj/structure/surface/rack, /obj/effect/landmark/costume/butler, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFA" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFB" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFC" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFD" = ( /obj/structure/surface/rack, @@ -7080,17 +5766,11 @@ }, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFE" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/quartstorage) "aFF" = ( /obj/structure/barricade/wooden, @@ -7131,34 +5811,24 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aFP" = ( /obj/structure/machinery/shower{ dir = 8 }, /obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aFQ" = ( /obj/structure/window_frame/wood, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) "aFR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/lv624/lazarus/chapel) "aFS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/lv624/lazarus/chapel) "aFT" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -7167,57 +5837,36 @@ /area/lv624/lazarus/main_hall) "aFU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFV" = ( /obj/structure/surface/table, /obj/item/trash/cheesie, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aFW" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aFY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/east, /area/lv624/lazarus/quartstorage) "aFZ" = ( /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) "aGa" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/lazarus/landing_zones/lz1) "aGb" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz1) "aGc" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, +/turf/open/floor/warning/northeast, /area/lv624/lazarus/landing_zones/lz1) "aGe" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -7250,15 +5899,11 @@ /area/lv624/ground/jungle/west_central_jungle) "aGm" = ( /obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aGn" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aGo" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -7266,35 +5911,24 @@ name = "\improper Nexus Dome Bathroom"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aGp" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aGq" = ( /obj/structure/machinery/status_display{ pixel_y = -32 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aGr" = ( /obj/structure/machinery/door/window/westleft, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aGs" = ( /turf/closed/wall, @@ -7302,27 +5936,18 @@ "aGt" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aGu" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aGw" = ( /turf/open/floor, /area/lv624/lazarus/quartstorage) "aGx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/north, /area/lv624/lazarus/quartstorage) "aGy" = ( /obj/item/stack/sheet/wood{ @@ -7351,32 +5976,24 @@ /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) "aGH" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aGI" = ( /obj/structure/sink{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aGJ" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aGK" = ( /obj/structure/surface/table, /obj/structure/prop/mech/drill, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aGN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -7387,10 +6004,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aGP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -7401,21 +6015,13 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/quartstorage) "aGQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz1) "aGR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warningcorner" - }, +/turf/open/floor/warningcorner/north, /area/lv624/lazarus/landing_zones/lz1) "aGS" = ( /obj/structure/machinery/colony_floodlight, @@ -7447,15 +6053,11 @@ /obj/item/poster, /obj/item/clothing/glasses/regular/hipster, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aHa" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aHb" = ( /obj/structure/surface/table, @@ -7464,9 +6066,7 @@ }, /obj/item/explosive/grenade/custom/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aHc" = ( /obj/structure/machinery/light/small{ @@ -7475,101 +6075,68 @@ /obj/structure/surface/table, /obj/structure/prop/mech/hydralic_clamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aHe" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/main_hall) "aHf" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light/spot{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHg" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/lv624/lazarus/main_hall) "aHi" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/main_hall) "aHj" = ( /obj/structure/machinery/recharge_station, /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aHl" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aHm" = ( /obj/structure/machinery/fermenter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aHn" = ( /obj/structure/machinery/still, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aHo" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHp" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHq" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHr" = ( /obj/item/device/radio/intercom{ @@ -7578,23 +6145,14 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) "aHs" = ( /obj/item/tool/crowbar/red, -/turf/open/floor{ - dir = 8; - icon_state = "warningcorner" - }, +/turf/open/floor/warningcorner/west, /area/lv624/lazarus/landing_zones/lz1) "aHu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warningcorner" - }, +/turf/open/floor/warningcorner/east, /area/lv624/lazarus/landing_zones/lz1) "aHB" = ( /obj/structure/fence, @@ -7610,47 +6168,32 @@ /area/lv624/ground/jungle/west_jungle) "aHF" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Nexus Dome Chapel"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/chapel) "aHI" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/chapel) "aHJ" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHK" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHL" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aHM" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "aHN" = ( /obj/structure/machinery/colony_floodlight, @@ -7674,25 +6217,17 @@ /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "aHZ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) "aIb" = ( /obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz2) "aIc" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aId" = ( /obj/structure/flora/jungle/vines/light_3, @@ -7700,9 +6235,7 @@ /area/lv624/ground/jungle/south_west_jungle) "aIe" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIg" = ( /obj/structure/machinery/light/small{ @@ -7717,9 +6250,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIh" = ( /obj/structure/surface/table, @@ -7728,31 +6259,23 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIi" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIj" = ( /obj/item/trash/chips, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIl" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIm" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -7762,9 +6285,7 @@ /obj/structure/surface/table, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIq" = ( /obj/effect/landmark/monkey_spawn, @@ -7778,17 +6299,13 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIs" = ( /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIt" = ( /obj/item/device/radio/intercom{ @@ -7797,29 +6314,20 @@ name = "General Listening Channel"; pixel_y = 30 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIu" = ( /obj/structure/machinery/newscaster{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIv" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aIw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) "aIy" = ( /obj/structure/surface/table/woodentable/poor, @@ -7829,9 +6337,7 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/carpet{ - icon_state = "bcarpet01" - }, +/turf/open/floor/carpet/bcarpet01, /area/lv624/ground/caves/north_central_caves) "aIz" = ( /obj/structure/flora/jungle/vines/light_1, @@ -7846,10 +6352,7 @@ /area/lv624/ground/caves/south_central_caves) "aIB" = ( /obj/structure/closet, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aIE" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -7873,10 +6376,7 @@ /obj/structure/surface/rack, /obj/item/clothing/glasses/regular, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aIJ" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -7893,9 +6393,7 @@ dir = 2; name = "\improper Atmospherics Condenser" }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/yggdrasil) "aIO" = ( /obj/structure/flora/jungle/vines/heavy, @@ -7907,10 +6405,7 @@ name = "\improper Nexus Dome"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) "aIV" = ( /obj/structure/flora/jungle/vines/light_3, @@ -7918,9 +6413,7 @@ /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) "aIX" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) "aIY" = ( @@ -7932,10 +6425,7 @@ /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) "aJa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "aJb" = ( /turf/open/floor, @@ -7947,36 +6437,23 @@ "aJd" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "aJe" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/gibs, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "aJf" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "aJg" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner, /area/lv624/lazarus/main_hall) "aJh" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/lv624/lazarus/main_hall) "aJi" = ( /obj/structure/flora/jungle/vines/light_2, @@ -7984,10 +6461,7 @@ /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) "aJj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/west, /area/lv624/lazarus/main_hall) "aJk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -7995,16 +6469,11 @@ name = "\improper Nexus Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aJl" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) "aJr" = ( /turf/open/gm/grass/grass1, @@ -8029,10 +6498,7 @@ /turf/open/floor/plating, /area/lv624/lazarus/main_hall) "aJB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/main_hall) "aJC" = ( /obj/item/phone{ @@ -8047,18 +6513,14 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJD" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJE" = ( /obj/structure/showcase, @@ -8066,9 +6528,7 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJF" = ( /obj/structure/fence, @@ -8089,22 +6549,14 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/lv624/lazarus/main_hall) "aJI" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "aJJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -8114,10 +6566,7 @@ }, /area/lv624/lazarus/main_hall) "aJK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/main_hall) "aJL" = ( /obj/item/stock_parts/matter_bin/super, @@ -8130,18 +6579,14 @@ dir = 8; health = 80 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJM" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJN" = ( /obj/structure/showcase{ @@ -8152,9 +6597,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJO" = ( /obj/structure/fence, @@ -8170,17 +6613,13 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "aJQ" = ( /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aJR" = ( /obj/effect/decal/cleanable/blood/tracks/footprints{ @@ -8189,10 +6628,7 @@ /obj/effect/decal/cleanable/blood/tracks/footprints{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) "aJS" = ( /obj/effect/landmark/hunter_primary, @@ -8201,9 +6637,7 @@ "aJZ" = ( /obj/structure/closet, /obj/item/clothing/glasses/sunglasses, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aKb" = ( /turf/closed/wall/strata_ice/jungle, @@ -8241,10 +6675,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/south_east_caves) "aKk" = ( /obj/structure/flora/jungle/plantbot1, @@ -8287,18 +6718,12 @@ /turf/open/floor/plating, /area/lv624/lazarus/yggdrasil) "aKv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) "aKx" = ( /obj/item/tool/crowbar, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "aKy" = ( /obj/effect/decal/cleanable/blood{ @@ -8344,26 +6769,20 @@ "aKJ" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aKK" = ( /obj/structure/machinery/light/small, /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aKL" = ( /obj/item/frame/table, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aKM" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -8444,9 +6863,7 @@ /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, /obj/item/tool/mop, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aLo" = ( /obj/structure/flora/jungle/vines/light_3, @@ -8465,15 +6882,11 @@ /area/lv624/ground/caves/west_caves) "aLs" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "aLt" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aLv" = ( /turf/open/gm/grass/grass2, @@ -8532,9 +6945,7 @@ /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aLT" = ( /obj/effect/decal/cleanable/cobweb2, @@ -8544,9 +6955,7 @@ /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aLW" = ( /obj/structure/flora/jungle/vines/heavy, @@ -8554,17 +6963,11 @@ /area/lv624/ground/jungle/east_central_jungle) "aLX" = ( /obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "aLZ" = ( /obj/structure/target, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/red/northwest, /area/lv624/lazarus/security) "aMa" = ( /obj/item/device/flash, @@ -8582,24 +6985,18 @@ name = "General Listening Channel"; pixel_y = 30 }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/lv624/lazarus/security) "aMb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/lv624/lazarus/security) "aMc" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aMd" = ( /obj/structure/surface/table/reinforced/prison, @@ -8612,86 +7009,59 @@ phone_color = "red"; phone_id = "Marshal Office" }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/lv624/lazarus/security) "aMe" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/main_hall) "aMf" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light/spot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aMg" = ( /obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aMh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/lv624/lazarus/main_hall) "aMi" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/main_hall) "aMj" = ( /obj/structure/device/broken_piano, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aMk" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aMl" = ( -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aMm" = ( /obj/structure/surface/table/gamblingtable, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aMn" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aMo" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aMp" = ( /obj/item/device/radio/intercom{ @@ -8700,15 +7070,10 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz1) "aMq" = ( -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz1) "aMr" = ( /obj/effect/landmark/lv624/xeno_tunnel, @@ -8772,9 +7137,7 @@ "aMX" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aMY" = ( /obj/structure/machinery/light/small{ @@ -8785,43 +7148,27 @@ /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aMZ" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aNb" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "aNc" = ( -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/red/northwest, /area/lv624/lazarus/security) "aNd" = ( /obj/structure/closet, /obj/item/clothing/shoes/mime, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aNe" = ( -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/lv624/lazarus/security) "aNf" = ( /obj/structure/flora/jungle/planttop1, @@ -8831,19 +7178,14 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/lv624/lazarus/security) "aNi" = ( /obj/effect/decal/cleanable/blood, /obj/item/device/flashlight/lamp, /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aNj" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -8855,9 +7197,7 @@ /area/lv624/lazarus/kitchen) "aNl" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aNn" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -8875,9 +7215,7 @@ /area/lv624/lazarus/landing_zones/lz1) "aNA" = ( /obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/yggdrasil) "aNB" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -8925,58 +7263,37 @@ /area/lv624/lazarus/yggdrasil) "aNL" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aNM" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aNN" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "aNO" = ( /obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/red/east, /area/lv624/lazarus/security) "aNP" = ( /obj/item/folder/red, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/lv624/lazarus/security) "aNQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/red/southwest, /area/lv624/lazarus/security) "aNR" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/lv624/lazarus/security) "aNS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/west, /area/lv624/lazarus/security) "aNT" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -8992,10 +7309,7 @@ pixel_y = 22 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aNW" = ( /obj/structure/sink/kitchen{ @@ -9011,19 +7325,13 @@ pixel_y = -4 }, /obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aNX" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/grown/tomato, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aNY" = ( /obj/structure/surface/table, @@ -9031,24 +7339,15 @@ pixel_y = 9 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aNZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aOa" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aOb" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -9058,31 +7357,22 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aOd" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aOe" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/canteen) "aOo" = ( /obj/structure/surface/table, /obj/item/clothing/glasses/sunglasses/big, /obj/structure/machinery/light, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "aOs" = ( /obj/structure/flora/jungle/vines/light_1, @@ -9112,9 +7402,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 8 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aOA" = ( /obj/item/storage/toolbox/syndicate, @@ -9122,15 +7410,10 @@ /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aOB" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/lazarus/landing_zones/lz2) "aOC" = ( /obj/structure/window/reinforced{ @@ -9141,10 +7424,7 @@ /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "aOD" = ( /obj/structure/window/reinforced{ @@ -9156,10 +7436,7 @@ /obj/item/weapon/gun/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/red/northwest, /area/lv624/lazarus/security) "aOF" = ( /obj/structure/surface/table/woodentable/fancy, @@ -9177,23 +7454,14 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/device/binoculars, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/lv624/lazarus/security) "aOJ" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/lv624/lazarus/security) "aOK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/lv624/lazarus/security) "aOL" = ( /obj/structure/fence, @@ -9206,42 +7474,31 @@ /area/lv624/lazarus/main_hall) "aON" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aOO" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aOP" = ( /obj/structure/surface/table, /obj/item/trash/plate, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aOQ" = ( /obj/structure/surface/table, /obj/item/trash/candy, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aOR" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aOS" = ( /obj/structure/flora/jungle/planttop1, @@ -9266,10 +7523,7 @@ /obj/item/paper_bin, /obj/item/tool/pen, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aPf" = ( /obj/structure/flora/jungle/vines/light_3, @@ -9301,9 +7555,7 @@ /area/lv624/ground/jungle/south_west_jungle) "aPo" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aPp" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ @@ -9311,22 +7563,14 @@ name = "\improper Nexus Dome Armory"; req_one_access_txt = "19;106" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "aPq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/east, /area/lv624/lazarus/security) "aPr" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/lv624/lazarus/security) "aPs" = ( /obj/structure/surface/table, @@ -9341,9 +7585,7 @@ pixel_y = 30 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aPt" = ( /turf/closed/wall/r_wall, @@ -9351,20 +7593,14 @@ "aPu" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/lv624/lazarus/security) "aPv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/restraint/handcuffs, /obj/item/storage/firstaid/adv, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/lv624/lazarus/security) "aPx" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -9373,56 +7609,39 @@ /area/lv624/lazarus/main_hall) "aPy" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aPz" = ( /obj/structure/machinery/chem_master/condimaster, /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aPA" = ( /obj/structure/surface/table, /obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aPB" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aPC" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aPD" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aPE" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aPH" = ( /obj/structure/surface/table/woodentable/fancy, @@ -9439,19 +7658,13 @@ "aPI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/candle, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/lv624/lazarus/chapel) "aPJ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/box/matches, /obj/item/tool/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/lv624/lazarus/chapel) "aPM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -9473,9 +7686,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/comms) "aPR" = ( /obj/structure/lz_sign/lazarus_sign{ @@ -9512,9 +7723,7 @@ }, /obj/structure/surface/table, /obj/item/trash/plate, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aQa" = ( /obj/structure/flora/grass/ice/both, @@ -9523,57 +7732,39 @@ /area/lv624/lazarus/main_hall) "aQb" = ( /obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aQc" = ( /obj/structure/surface/table, /obj/structure/machinery/processor, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aQd" = ( /obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aQe" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aQf" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aQg" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aQn" = ( -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aQo" = ( /obj/structure/flora/jungle/vines/heavy, @@ -9613,23 +7804,16 @@ "aQy" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/trash/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/lv624/lazarus/chapel) "aQB" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aQD" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aQE" = ( /obj/structure/machinery/light/small{ @@ -9641,33 +7825,25 @@ name = "General Listening Channel"; pixel_y = 30 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aQF" = ( /obj/structure/surface/table, /obj/structure/mirror{ pixel_y = -30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "aQG" = ( /obj/structure/bookcase, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aQH" = ( /obj/structure/bookcase, /obj/item/bananapeel, /obj/item/book/manual/research_and_development, /obj/item/book/manual/security_space_law, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aQI" = ( /obj/structure/showcase{ @@ -9680,18 +7856,14 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aQJ" = ( /obj/structure/noticeboard{ pixel_y = 30 }, /obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aQK" = ( /obj/structure/machinery/light/small{ @@ -9703,9 +7875,7 @@ name = "General Listening Channel"; pixel_y = 30 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aQM" = ( /turf/closed/wall/r_wall, @@ -9714,31 +7884,21 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aQO" = ( /obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aQP" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "aQQ" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 8 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aQX" = ( /obj/effect/landmark/hunter_primary, @@ -9758,10 +7918,7 @@ /obj/structure/surface/table, /obj/item/device/mmi/radio_enabled, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aRe" = ( /obj/effect/decal/cleanable/dirt, @@ -9770,10 +7927,7 @@ pixel_x = 3; pixel_y = 15 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aRf" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -9784,10 +7938,7 @@ /area/lv624/lazarus/landing_zones/lz2) "aRh" = ( /obj/structure/closet/coffin, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/lv624/lazarus/chapel) "aRi" = ( /obj/structure/machinery/light{ @@ -9795,19 +7946,13 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aRj" = ( /obj/structure/surface/rack, /obj/structure/machinery/light, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "aRo" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -9845,17 +7990,13 @@ dir = 4 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aRA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aRB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -9865,9 +8006,7 @@ desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; name = "\improper Mister Wiggles" }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aRC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -9878,49 +8017,37 @@ name = "\improper Nexus Dome Marshal's Quarters"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/captain) "aRD" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aRE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aRF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/lazarus/hop) "aRG" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor/mech_bay_recharge_floor{ - name = "Shuttle Landing Lights" - }, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, /area/lv624/lazarus/landing_zones/lz2) "aRI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aRK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -9945,9 +8072,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aRR" = ( /obj/structure/surface/table, @@ -9960,9 +8085,7 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aRU" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -9971,9 +8094,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aRV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -9983,9 +8104,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aRX" = ( /obj/structure/machinery/light/small{ @@ -9994,9 +8113,7 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aRZ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ @@ -10032,10 +8149,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aSe" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, @@ -10044,17 +8158,11 @@ pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aSg" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aSi" = ( /obj/structure/foamed_metal, @@ -10077,24 +8185,17 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/south_east_caves) "aSq" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 8 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aSs" = ( /obj/structure/coatrack, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aSv" = ( /obj/structure/window/framed/colony/reinforced, @@ -10102,29 +8203,21 @@ /area/lv624/lazarus/captain) "aSw" = ( /obj/item/trash/popcorn, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aSy" = ( /obj/structure/bed/chair/wood/wings{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aSz" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "aSA" = ( -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aSB" = ( /obj/structure/window/framed/colony/reinforced, @@ -10133,30 +8226,22 @@ "aSC" = ( /obj/structure/surface/table, /obj/item/clothing/suit/chef/classic, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aSD" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aSE" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aSF" = ( /obj/structure/machinery/requests_console{ pixel_x = 30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aSG" = ( /obj/item/device/radio/intercom{ @@ -10166,33 +8251,24 @@ pixel_y = 30 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aSH" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, /obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aSI" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aSJ" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/lv624/lazarus/comms) "aSK" = ( /obj/structure/window_frame/colony/reinforced, @@ -10212,17 +8288,13 @@ name = "safe"; spawnkey = 0 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aST" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/under/CM_uniform, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "red" - }, +/turf/open/floor/red, /area/lv624/lazarus/security) "aSU" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -10240,24 +8312,18 @@ /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/grilledcheese, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aSX" = ( /turf/closed/wall, /area/lv624/lazarus/engineering) "aSY" = ( /obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aSZ" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aTb" = ( /turf/open/floor/plating, @@ -10266,15 +8332,11 @@ /obj/structure/surface/table, /obj/item/trash/chips, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aTd" = ( /obj/item/frame/table, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aTe" = ( /obj/structure/window/framed/colony/reinforced, @@ -10288,10 +8350,7 @@ /area/lv624/lazarus/comms) "aTi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aTj" = ( /obj/effect/decal/warning_stripes{ @@ -10306,31 +8365,22 @@ dir = 1; layer = 3.2 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aTk" = ( /obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/lv624/lazarus/comms) "aTq" = ( /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aTs" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/engineering) "aTt" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, @@ -10345,9 +8395,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aTv" = ( /obj/structure/machinery/landinglight/ds2, @@ -10366,15 +8414,11 @@ /area/lv624/ground/barrens/north_east_barrens) "aTB" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aTC" = ( /obj/item/trash/cheesie, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/lv624/lazarus/hop) "aTD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -10391,9 +8435,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aTF" = ( /obj/structure/surface/table, @@ -10403,65 +8445,45 @@ pixel_y = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aTG" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aTH" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aTI" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aTJ" = ( /obj/structure/machinery/power/apc{ dir = 1; start_charge = 15 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/comms) "aTK" = ( /obj/structure/surface/rack, /obj/item/device/multitool, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aTM" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aTN" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) "aTP" = ( /obj/structure/machinery/power/terminal{ @@ -10469,18 +8491,14 @@ }, /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "platebot" - }, +/turf/open/floor/platebot, /area/lv624/lazarus/engineering) "aTR" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "platebot" - }, +/turf/open/floor/platebot, /area/lv624/lazarus/engineering) "aTS" = ( /obj/effect/landmark/survivor_spawner, @@ -10496,18 +8514,14 @@ "aTW" = ( /obj/item/clothing/glasses/regular, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aTX" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aTY" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ @@ -10516,40 +8530,30 @@ name = "\improper Nexus Dome Director's Quarters"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/hop) "aTZ" = ( /obj/structure/machinery/vending, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aUa" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aUb" = ( /obj/structure/kitchenspike, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aUc" = ( /obj/structure/surface/rack, /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aUd" = ( /obj/item/tool/kitchen/knife/butcher, @@ -10557,9 +8561,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aUe" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -10583,9 +8585,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/comms) "aUl" = ( /turf/open/gm/dirtgrassborder/south, @@ -10599,20 +8599,13 @@ layer = 3.01 }, /obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aUq" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/engineering) "aUs" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/engineering) "aUt" = ( /obj/structure/flora/jungle/vines/heavy, @@ -10627,26 +8620,19 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aUv" = ( /obj/item/device/flashlight, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/red/east, /area/lv624/lazarus/security) "aUx" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aUz" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -10663,26 +8649,20 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aUB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aUD" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aUE" = ( /obj/item/device/radio/intercom{ @@ -10694,9 +8674,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aUG" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -10706,18 +8684,14 @@ /area/lv624/lazarus/hop) "aUH" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aUI" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aUJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -10729,26 +8703,20 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aUM" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aUN" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aUO" = ( /obj/item/shard, @@ -10779,10 +8747,7 @@ "aVb" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aVd" = ( /obj/structure/lattice{ @@ -10790,16 +8755,10 @@ }, /obj/structure/platform, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/lazarus/engineering) "aVe" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/engineering) "aVf" = ( /obj/structure/lattice{ @@ -10810,20 +8769,14 @@ pixel_y = 13 }, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/engineering) "aVg" = ( /obj/structure/lattice{ layer = 2.9 }, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/engineering) "aVj" = ( /obj/structure/platform_decoration{ @@ -10836,9 +8789,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "aVk" = ( /obj/structure/sign/safety/maint, @@ -10863,42 +8814,30 @@ "aVo" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aVp" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aVq" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aVr" = ( /mob/living/simple_animal/mouse, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aVs" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aVt" = ( /obj/structure/machinery/gibber, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aVu" = ( /turf/closed/wall/r_wall, @@ -10912,9 +8851,7 @@ "aVx" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet{ - icon_state = "bcarpet02" - }, +/turf/open/floor/carpet/bcarpet02, /area/lv624/ground/caves/north_central_caves) "aVA" = ( /obj/structure/flora/jungle/plantbot1, @@ -10926,9 +8863,7 @@ /area/lv624/lazarus/engineering) "aVC" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aVE" = ( /obj/structure/flora/jungle/planttop1, @@ -10945,9 +8880,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aVG" = ( /obj/item/device/radio/intercom{ @@ -10962,25 +8895,19 @@ }, /obj/structure/platform/stair_cut, /obj/item/clothing/head/hardhat/orange, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aVH" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aVI" = ( /obj/structure/machinery/vending/coffee, /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aVJ" = ( /obj/effect/landmark/lv624/xeno_tunnel, @@ -10999,31 +8926,23 @@ /obj/structure/surface/table/woodentable, /obj/item/device/taperecorder, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aVN" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aVO" = ( /obj/structure/barricade/wooden, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aVP" = ( /obj/item/reagent_container/food/snacks/grown/banana{ pixel_x = -8 }, /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aVS" = ( /turf/closed/wall/mineral/sandstone/runed, @@ -11081,17 +9000,13 @@ /area/lv624/lazarus/secure_storage) "aWd" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/lv624/lazarus/comms) "aWe" = ( /obj/structure/machinery/computer/telecomms/monitor{ pixel_y = 16 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "aWf" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -11099,9 +9014,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "aWg" = ( /obj/structure/lattice{ @@ -11109,10 +9022,7 @@ }, /obj/structure/platform, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/engineering) "aWh" = ( /obj/structure/fence, @@ -11120,15 +9030,11 @@ /area/lv624/ground/colony/north_nexus_road) "aWi" = ( /obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aWj" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aWk" = ( /obj/structure/flora/jungle/vines/heavy{ @@ -11139,28 +9045,19 @@ /area/lv624/ground/jungle/south_west_jungle/ceiling) "aWl" = ( /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aWm" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aWn" = ( /obj/structure/flora/jungle/vines/light_2{ pixel_y = -22 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aWo" = ( /obj/structure/flora/jungle/vines/heavy{ @@ -11169,20 +9066,14 @@ /obj/structure/flora/jungle/vines/light_2{ pixel_y = -22 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aWp" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 }, /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aWq" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -11196,9 +9087,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "aWv" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/secure_storage) "aWw" = ( /obj/effect/decal/remains/xeno, @@ -11215,10 +9104,7 @@ frequency = 1469 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aWz" = ( /obj/structure/window_frame/colony/reinforced, @@ -11231,20 +9117,14 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aWC" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) "aWD" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/engineering) "aWE" = ( /obj/effect/decal/warning_stripes{ @@ -11252,10 +9132,7 @@ pixel_x = 1 }, /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aWF" = ( /obj/effect/spawner/random/toolbox, @@ -11263,9 +9140,7 @@ /obj/item/device/radio, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aWG" = ( /obj/structure/stairs/perspective{ @@ -11276,9 +9151,7 @@ layer = 3.1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aWH" = ( /obj/structure/surface/table/reinforced/prison, @@ -11288,9 +9161,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aWI" = ( /obj/structure/surface/table/reinforced/prison, @@ -11298,9 +9169,7 @@ /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aWJ" = ( /obj/structure/flora/jungle/vines/heavy, @@ -11315,9 +9184,7 @@ name = "\improper Nexus Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aWM" = ( /obj/structure/grille{ @@ -11329,10 +9196,7 @@ /turf/open/floor/plating, /area/lv624/lazarus/main_hall) "aWO" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aWP" = ( /obj/effect/landmark/monkey_spawn, @@ -11386,10 +9250,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aWY" = ( /turf/closed/wall, @@ -11406,25 +9267,17 @@ }, /obj/structure/platform, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aXc" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bluecorner" - }, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "aXd" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aXe" = ( /obj/effect/decal/warning_stripes{ @@ -11432,10 +9285,7 @@ pixel_y = 1 }, /obj/item/tool/crowbar, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aXf" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -11445,9 +9295,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "aXg" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -11456,9 +9304,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "aXh" = ( /turf/open/gm/grass/grass1, @@ -11487,10 +9333,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aXo" = ( /obj/effect/landmark/crap_item, @@ -11501,9 +9344,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "aXt" = ( /obj/structure/surface/rack, @@ -11514,9 +9355,7 @@ phone_id = "Engineering"; pixel_y = 24 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aXu" = ( /obj/structure/machinery/light{ @@ -11524,9 +9363,7 @@ }, /obj/structure/reagent_dispensers/fueltank, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aXv" = ( /obj/effect/landmark/monkey_spawn, @@ -11534,9 +9371,7 @@ /area/lv624/ground/jungle/east_central_jungle) "aXw" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aXx" = ( /obj/structure/flora/jungle/vines/heavy, @@ -11549,10 +9384,7 @@ /area/lv624/ground/jungle/south_west_jungle/ceiling) "aXA" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aXB" = ( /obj/structure/flora/jungle/vines/heavy{ @@ -11610,33 +9442,24 @@ }, /obj/item/weapon/baseballbat/metal, /obj/item/device/lightreplacer, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aXK" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aXL" = ( /obj/structure/closet/secure_closet/security, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/red/east, /area/lv624/lazarus/security) "aXN" = ( /obj/effect/spawner/random/powercell, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aXP" = ( /obj/structure/flora/jungle/planttop1, @@ -11648,10 +9471,7 @@ /area/lv624/ground/jungle/south_west_jungle/ceiling) "aXR" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "aXS" = ( /obj/structure/flora/jungle/vines/heavy{ @@ -11671,9 +9491,7 @@ /obj/structure/foamed_metal{ layer = 3.1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aXX" = ( /turf/open/gm/grass/grass1, @@ -11688,15 +9506,11 @@ /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aYc" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aYd" = ( /obj/structure/grille{ @@ -11706,9 +9520,7 @@ /obj/structure/foamed_metal{ layer = 3.1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aYf" = ( /obj/structure/largecrate/random, @@ -11718,10 +9530,7 @@ "aYh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aYj" = ( /obj/effect/landmark/lv624/xeno_tunnel, @@ -11736,9 +9545,7 @@ /area/lv624/ground/jungle/south_west_jungle) "aYn" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "aYo" = ( /obj/structure/flora/jungle/vines/heavy{ @@ -11799,14 +9606,10 @@ dir = 4 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aYE" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/barrens/west_barrens) "aYF" = ( /obj/structure/girder, @@ -11818,22 +9621,15 @@ /obj/structure/machinery/cell_charger, /obj/item/storage/fancy/cigarettes/wypacket, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aYH" = ( /obj/structure/closet/lawcloset, /obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/red/north, /area/lv624/lazarus/security) "aYI" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/caves/south_west_caves) "aYJ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11843,9 +9639,7 @@ phone_color = "blue"; phone_id = "Director's Office" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aYM" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11853,21 +9647,15 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aYN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/rdconsole, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aYO" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/lv624/ground/caves/north_central_caves) "aYQ" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -11928,9 +9716,7 @@ pixel_x = -30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZe" = ( /obj/structure/bookcase, @@ -11939,9 +9725,7 @@ /obj/item/book/manual/engineering_hacking, /obj/item/book/manual/atmospipes, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZf" = ( /obj/structure/surface/table/reinforced/prison, @@ -11953,9 +9737,7 @@ /obj/item/fuel_cell, /obj/item/fuel_cell, /obj/item/fuel_cell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZg" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11963,9 +9745,7 @@ /obj/structure/machinery/computer/objective{ dir = 1 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aZh" = ( /obj/structure/surface/table, @@ -11973,9 +9753,7 @@ /obj/item/tool/crowbar, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "aZi" = ( /obj/structure/surface/table/woodentable/fancy, @@ -11983,9 +9761,7 @@ pixel_y = 26 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aZj" = ( /obj/structure/closet/cabinet, @@ -11993,9 +9769,7 @@ layer = 2.6 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aZn" = ( /obj/structure/surface/table/woodentable/poor, @@ -12011,23 +9785,17 @@ /obj/structure/surface/table/woodentable/fancy, /obj/item/device/megaphone, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/captain) "aZp" = ( /obj/structure/surface/table/woodentable/poor, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/jungle/west_jungle/ceiling) "aZs" = ( /obj/structure/closet/secure_closet/bar, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aZt" = ( /obj/structure/surface/rack, @@ -12038,10 +9806,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/bronze, /obj/item/storage/donut_box, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/red/west, /area/lv624/lazarus/security) "aZx" = ( /obj/structure/closet/toolcloset, @@ -12049,17 +9814,13 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZy" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZz" = ( /obj/structure/filingcabinet/security{ @@ -12070,19 +9831,14 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/redcorner/north, /area/lv624/lazarus/security) "aZA" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/turf/open/floor/wood/wood_broken4, /area/lv624/lazarus/hop) "aZB" = ( /obj/structure/surface/table/woodentable/fancy, @@ -12093,50 +9849,37 @@ pixel_y = 12 }, /obj/item/tool/wrench, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/hop) "aZC" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "aZD" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "aZE" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aZF" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "aZG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aZI" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -12151,17 +9894,13 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZJ" = ( /obj/structure/bed, /obj/item/clothing/mask/cigarette/pipe, /obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZK" = ( /obj/effect/decal/warning_stripes{ @@ -12169,10 +9908,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "aZL" = ( /obj/item/stack/sheet/metal, @@ -12180,9 +9916,7 @@ /area/lv624/lazarus/secure_storage) "aZM" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "aZO" = ( /obj/effect/landmark/xeno_spawn, @@ -12318,10 +10052,7 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "bei" = ( /obj/structure/flora/jungle/vines/heavy, @@ -12372,10 +10103,7 @@ health = 80 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "bit" = ( /obj/structure/machinery/colony_floodlight, @@ -12406,18 +10134,14 @@ /area/lv624/ground/jungle/south_west_jungle) "blC" = ( /obj/item/stack/sheet/wood, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "bnz" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Corporate Liaison" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "bnE" = ( /obj/structure/flora/bush/ausbushes/pointybush, @@ -12516,10 +10240,7 @@ name = "Weyland-Yutani Automatic Teller Machine"; pixel_x = -30 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "buw" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -12542,10 +10263,7 @@ /area/lv624/ground/caves/east_caves) "bvq" = ( /obj/structure/prop/mech/parts/chassis/gygax, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/robotics) "bvS" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -12589,9 +10307,7 @@ /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) "bzs" = ( -/turf/open/gm/dirtgrassborder{ - dir = 4 - }, +/turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_west_jungle/ceiling) "bzD" = ( /obj/structure/largecrate/random, @@ -12599,10 +10315,7 @@ pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "bAB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -12680,10 +10393,7 @@ /area/lv624/ground/river/west_river) "bGV" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) "bIO" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -12693,10 +10403,7 @@ /area/lv624/ground/caves/sand_temple) "bJe" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "bJz" = ( /obj/effect/decal/cleanable/blood, @@ -12725,9 +10432,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "bMu" = ( /turf/open/gm/dirtgrassborder/west, @@ -12787,9 +10492,7 @@ "bQf" = ( /obj/structure/machinery/power/port_gen/pacman/super, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "bQz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -12816,10 +10519,7 @@ icon_state = "p_stair_full" }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "bSm" = ( /obj/effect/landmark/crap_item, @@ -12834,32 +10534,24 @@ "bUc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "bUs" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet{ - icon_state = "bcarpet07" - }, +/turf/open/floor/carpet/bcarpet07, /area/lv624/ground/caves/north_central_caves) "bUU" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "bXd" = ( /obj/item/device/flashlight/on, /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "bXP" = ( /obj/structure/flora/jungle/vines/light_3, @@ -12877,15 +10569,10 @@ /area/lv624/ground/jungle/central_jungle) "bZX" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/east_barrens/ceiling) "cac" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) "cag" = ( @@ -12893,9 +10580,7 @@ /area/lv624/ground/caves/sand_temple) "caH" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "caX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -12912,9 +10597,7 @@ "cdj" = ( /obj/structure/window_frame/colony, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "cdw" = ( /obj/effect/landmark/objective_landmark/science, @@ -12927,16 +10610,11 @@ /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) "cen" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/lv624/lazarus/corporate_dome) "cfA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/secure_storage) "cfD" = ( /turf/closed/wall/r_wall/unmeltable, @@ -12961,17 +10639,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "cgC" = ( /obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz2) "cgD" = ( /obj/structure/machinery/colony_floodlight, @@ -12980,9 +10652,7 @@ "cgK" = ( /obj/item/stool, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "chf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -13044,10 +10714,7 @@ /area/lv624/lazarus/quartstorage/outdoors) "cmP" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "cng" = ( /obj/structure/stairs/perspective{ @@ -13055,10 +10722,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "cop" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -13095,10 +10759,7 @@ "cqE" = ( /obj/structure/barricade/wooden, /obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz1) "cqH" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, @@ -13148,9 +10809,7 @@ /area/lv624/ground/jungle/north_east_jungle) "cxc" = ( /obj/item/tool/shovel, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/barrens/west_barrens) "cxi" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -13167,10 +10826,7 @@ }, /obj/structure/platform/stair_cut/alt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "czq" = ( /obj/effect/landmark/objective_landmark/science, @@ -13208,24 +10864,17 @@ pixel_x = 6; pixel_y = 12 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "cCe" = ( /obj/effect/decal/remains/xeno, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) "cCr" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) "cCP" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/caves/south_west_caves) "cDr" = ( /obj/structure/girder, @@ -13298,10 +10947,7 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "cJA" = ( /obj/effect/landmark/monkey_spawn, @@ -13312,10 +10958,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "cLD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/corporate_dome) "cMj" = ( /obj/effect/landmark/hunter_primary, @@ -13337,10 +10980,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "cNH" = ( /obj/structure/surface/rack, @@ -13352,10 +10992,7 @@ /area/lv624/lazarus/quartstorage/outdoors) "cOz" = ( /obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/corporate_dome) "cOF" = ( /obj/structure/closet/cabinet, @@ -13378,10 +11015,7 @@ "cQU" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/multitool, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "cQX" = ( /obj/structure/stairs/perspective{ @@ -13446,16 +11080,11 @@ "cYi" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/pie, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "cZs" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/lazarus/landing_zones/lz2) "daz" = ( /obj/structure/prop/brazier/torch, @@ -13472,9 +11101,7 @@ /area/lv624/ground/caves/south_central_caves) "dbA" = ( /obj/structure/xenoautopsy/tank, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "dbY" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -13490,17 +11117,11 @@ /obj/item/circuitboard/airlock{ pixel_x = 12 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/lv624/ground/colony/telecomm/cargo) "dff" = ( /obj/structure/bed/sofa/vert/grey, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "dfJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -13575,9 +11196,7 @@ /area/lv624/ground/jungle/north_west_jungle) "dql" = ( /obj/structure/largecrate, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "dqo" = ( /obj/structure/stairs/perspective{ @@ -13585,16 +11204,10 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "dqz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/lv624/ground/colony/telecomm/cargo) "dqK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -13610,18 +11223,14 @@ /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "drX" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "dsi" = ( /obj/effect/landmark/monkey_spawn, @@ -13630,10 +11239,7 @@ "dsz" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "dtr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -13656,10 +11262,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) "dws" = ( /obj/structure/stairs/perspective{ @@ -13670,10 +11273,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "dwt" = ( /obj/structure/fence, @@ -13681,10 +11281,7 @@ /area/lv624/lazarus/landing_zones/lz2) "dwN" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) "dxb" = ( /obj/structure/surface/rack, @@ -13692,10 +11289,7 @@ /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "dxy" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -13733,9 +11327,7 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = 2 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "dCZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -13800,15 +11392,11 @@ "dHr" = ( /obj/item/weapon/twohanded/fireaxe, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "dId" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "dIj" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -13824,15 +11412,10 @@ /area/lv624/ground/caves/north_east_caves) "dID" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "dIO" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/barrens/central_barrens) "dJG" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -13853,10 +11436,7 @@ /obj/item/book/manual/medical_diagnostics_manual, /obj/item/book/manual/security_space_law, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "dLm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -13932,9 +11512,7 @@ "dOC" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) "dOQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -13942,9 +11520,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "dTm" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "dTY" = ( /obj/effect/landmark/objective_landmark/far, @@ -13960,9 +11536,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "dVQ" = ( /obj/structure/surface/rack, @@ -13973,17 +11547,12 @@ pixel_x = -7 }, /obj/item/reagent_container/food/drinks/cans/souto/classic, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "dWa" = ( /obj/effect/landmark/objective_landmark/science, /obj/structure/barricade/wooden, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "dWM" = ( /obj/effect/landmark/monkey_spawn, @@ -14010,9 +11579,7 @@ "dZH" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "dZY" = ( /obj/structure/flora/jungle/vines/light_3, @@ -14034,10 +11601,7 @@ /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "ebr" = ( /turf/open/gm/dirtgrassborder/east, @@ -14059,10 +11623,7 @@ /area/lv624/lazarus/crashed_ship_containers) "ecK" = ( /obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "ecO" = ( /turf/open/gm/dirtgrassborder/north, @@ -14105,10 +11666,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Hydroponics" }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "eil" = ( /obj/structure/flora/grass/tallgrass/jungle, @@ -14119,10 +11677,7 @@ amount = 2 }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, +/turf/open/floor/warning/northeast, /area/lv624/lazarus/landing_zones/lz2) "eiP" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -14143,9 +11698,7 @@ "ejx" = ( /obj/structure/disposalpipe/segment, /obj/structure/window/framed/colony, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "ekB" = ( /obj/structure/stairs/perspective{ @@ -14166,10 +11719,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "elp" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -14185,10 +11735,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "enn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -14207,15 +11754,10 @@ /area/lv624/ground/colony/south_medbay_road) "eot" = ( /obj/structure/prop/mech/parts/gygax_torso, -/turf/open/floor{ - icon_state = "vault" - }, +/turf/open/floor/vault2, /area/lv624/lazarus/robotics) "eoM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/medbay) "eoW" = ( /obj/structure/flora/bush/ausbushes/pointybush, @@ -14230,10 +11772,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "eqs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -14246,9 +11785,7 @@ /area/lv624/ground/river/central_river) "eqP" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "eqS" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -14264,9 +11801,7 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) "etU" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -14281,17 +11816,12 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "euW" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/tool/candle, -/turf/open/floor/carpet{ - icon_state = "bcarpet03" - }, +/turf/open/floor/carpet/bcarpet03, /area/lv624/ground/caves/north_central_caves) "evT" = ( /obj/structure/flora/jungle/plantbot1, @@ -14315,10 +11845,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/shard, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "eyn" = ( /obj/structure/flora/jungle/vines/light_3, @@ -14337,10 +11864,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "eAr" = ( /obj/structure/showcase{ @@ -14371,10 +11895,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "eCx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -14410,10 +11931,7 @@ "eGx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "eGD" = ( /turf/open/gm/dirt, @@ -14422,9 +11940,7 @@ /obj/structure/bed, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "eHq" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -14444,9 +11960,7 @@ "eLx" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/objective_landmark/medium, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "eMe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -14459,9 +11973,7 @@ /area/lv624/ground/jungle/south_east_jungle) "eNQ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "eOk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -14471,9 +11983,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) "ePp" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "ePu" = ( /obj/effect/landmark/xeno_hive_spawn, @@ -14514,9 +12024,7 @@ /area/lv624/ground/colony/west_tcomms_road) "eVH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) "eYb" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -14525,10 +12033,7 @@ "eYh" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "eYD" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -14550,15 +12055,10 @@ /obj/structure/barricade/metal{ health = 250 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "fau" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "fbb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -14587,19 +12087,14 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "ffb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; name = "Hydroponics" }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "ffC" = ( /obj/effect/landmark/crap_item, @@ -14623,10 +12118,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "fhJ" = ( /turf/open/gm/dirtgrassborder/west, @@ -14639,9 +12131,7 @@ "fij" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "fio" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -14688,10 +12178,7 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "fmV" = ( /obj/structure/flora/bush/ausbushes/ausbush, @@ -14714,10 +12201,7 @@ /area/lv624/ground/caves/south_central_caves) "fqM" = ( /obj/structure/machinery/power/apc/nocharge, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/lv624/ground/colony/telecomm/sw_lz2) "frV" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -14727,10 +12211,7 @@ /area/lv624/ground/caves/north_west_caves) "fsa" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) "fsc" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -14745,10 +12226,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "fur" = ( /turf/open/gm/dirtgrassborder/east, @@ -14769,10 +12247,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "fyA" = ( /obj/structure/flora/jungle/planttop1, @@ -14780,9 +12255,7 @@ /area/lv624/ground/jungle/south_east_jungle) "fzg" = ( /obj/item/storage/firstaid/toxin/empty, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "fzZ" = ( /obj/structure/showcase{ @@ -14800,23 +12273,16 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "fAs" = ( /obj/item/tool/crowbar, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "fAz" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "fAD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -14835,10 +12301,7 @@ dir = 4 }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz1) "fDE" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -14848,9 +12311,7 @@ /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) "fDT" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/caves/south_west_caves) "fEn" = ( /obj/structure/flora/jungle/vines/light_1, @@ -14866,17 +12327,11 @@ /area/lv624/ground/barrens/south_west_barrens) "fFA" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "fFM" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "fFN" = ( /obj/structure/window_frame/colony/reinforced, @@ -14885,10 +12340,7 @@ /area/lv624/lazarus/engineering) "fFZ" = ( /obj/structure/machinery/power/apc/nocharge, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/lv624/ground/colony/telecomm/cargo) "fGn" = ( /obj/effect/decal/grass_overlay/grass1, @@ -14901,9 +12353,7 @@ /area/lv624/ground/jungle/south_west_jungle) "fHi" = ( /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "fHw" = ( /obj/item/device/sentry_computer{ @@ -14949,9 +12399,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "fLh" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, @@ -14959,9 +12407,7 @@ /area/lv624/ground/caves/west_caves) "fMa" = ( /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "fMl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -14969,9 +12415,7 @@ name = "\improper Corporation Office"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "fMv" = ( /obj/item/stack/sheet/metal, @@ -14981,9 +12425,7 @@ /area/lv624/lazarus/secure_storage) "fNA" = ( /obj/structure/barricade/wooden, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "fPi" = ( /turf/open/gm/coast/north, @@ -14997,9 +12439,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "fQL" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -15060,9 +12500,7 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_west_jungle) "gaw" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) "gbl" = ( @@ -15072,10 +12510,7 @@ "gby" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/lazarus/landing_zones/lz2) "gbz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -15101,17 +12536,13 @@ /area/lv624/ground/caves/central_caves) "gcI" = ( /obj/effect/landmark/crap_item, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "gcZ" = ( /obj/structure/barricade/metal/wired{ health = 300 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "gdr" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -15136,10 +12567,7 @@ amount = 2 }, /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz2) "gfc" = ( /obj/structure/surface/table/reinforced{ @@ -15157,9 +12585,7 @@ /area/lv624/ground/jungle/south_west_jungle) "gin" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "git" = ( /obj/structure/flora/jungle/vines/light_1, @@ -15195,9 +12621,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) "gnx" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "god" = ( /obj/structure/fence, @@ -15222,9 +12646,7 @@ /obj/effect/spawner/random/powercell, /obj/item/device/assembly/infra, /obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "grl" = ( /obj/structure/flora/jungle/planttop1, @@ -15247,9 +12669,7 @@ /area/lv624/ground/caves/south_east_caves) "gss" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "gsA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -15266,9 +12686,7 @@ /obj/effect/landmark/nightmare{ insert_tag = "cargospecial2" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "guW" = ( /obj/effect/landmark/nightmare{ @@ -15320,15 +12738,11 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "gzo" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/east_barrens) "gzD" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "gzH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -15345,9 +12759,7 @@ "gAS" = ( /obj/effect/vehicle_spawner/van/decrepit, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "gBG" = ( /obj/structure/fence, @@ -15374,9 +12786,7 @@ /obj/item/ammo_casing/bullet{ icon_state = "casing_9_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "gFm" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -15391,19 +12801,13 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "gKg" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/lazarus/engineering) "gKN" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "gMe" = ( /obj/effect/landmark/nightmare{ @@ -15464,10 +12868,7 @@ }, /obj/effect/landmark/objective_landmark/close, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "gTv" = ( /obj/structure/flora/jungle/vines/light_3, @@ -15505,10 +12906,7 @@ pixel_x = -3; pixel_y = -3 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "gWE" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -15522,16 +12920,11 @@ /area/lv624/ground/jungle/south_east_jungle) "gXu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "gXy" = ( /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, +/turf/open/floor/warning/southeast, /area/lv624/lazarus/landing_zones/lz1) "gYs" = ( /obj/structure/fence, @@ -15565,9 +12958,7 @@ /area/lv624/ground/barrens/south_eastern_jungle_barrens) "hbF" = ( /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "hbK" = ( /obj/structure/flora/jungle/vines/light_2, @@ -15583,9 +12974,7 @@ "hcv" = ( /obj/structure/largecrate/random, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) "hcN" = ( /obj/structure/surface/table/reinforced/prison{ @@ -15594,18 +12983,12 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "hdh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/lv624/ground/colony/telecomm/sw_lz2) "hdA" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/east, /area/lv624/lazarus/landing_zones/lz2) "hen" = ( /obj/item/tool/weldingtool, @@ -15660,10 +13043,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) "hhv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/corporate_dome) "hhU" = ( /obj/vehicle/train/cargo/trolley, @@ -15718,10 +13098,7 @@ /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_central_jungle) "hpG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/caves/north_central_caves) "hpK" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -15737,10 +13114,7 @@ /obj/structure/surface/table, /obj/effect/landmark/good_item, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "hqQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -15757,9 +13131,7 @@ name = "\improper Corporation Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "hrG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -15811,10 +13183,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/lazarus/landing_zones/lz1) "hzR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -15825,9 +13194,7 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "hBL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, @@ -15837,9 +13204,7 @@ "hDe" = ( /obj/structure/bed/stool, /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "hDX" = ( /obj/effect/decal/remains/xeno, @@ -15855,10 +13220,7 @@ /area/lv624/ground/jungle/north_west_jungle) "hEs" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "hEu" = ( /obj/structure/fence, @@ -15909,10 +13271,7 @@ pixel_x = 7; pixel_y = 28 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "hJn" = ( /obj/structure/flora/jungle/vines/light_2, @@ -15936,10 +13295,7 @@ /area/lv624/ground/jungle/south_central_jungle) "hMd" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/jungle/south_west_jungle/ceiling) "hMr" = ( /obj/structure/surface/rack{ @@ -15979,10 +13335,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "hPV" = ( /obj/effect/decal/remains/xeno{ @@ -15995,15 +13348,10 @@ /obj/structure/reagent_dispensers/water_cooler{ pixel_x = -12 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "hRy" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/caves/south_west_caves) "hRB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -16021,10 +13369,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) "hSa" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warningcorner" - }, +/turf/open/floor/warningcorner/west, /area/lv624/lazarus/landing_zones/lz1) "hSn" = ( /turf/open/gm/grass/grass1, @@ -16048,9 +13393,7 @@ /area/lv624/ground/jungle/east_central_jungle) "hTp" = ( /obj/structure/girder/reinforced, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/secure_storage) "hTR" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -16082,9 +13425,7 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "hZn" = ( /obj/item/stack/sheet/metal{ @@ -16095,9 +13436,7 @@ /area/lv624/ground/jungle/north_west_jungle) "hZW" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "iab" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -16123,10 +13462,7 @@ /obj/item/stack/sheet/animalhide/xeno{ name = "Warrior hide" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "ibS" = ( /obj/structure/flora/jungle/vines/light_2, @@ -16153,10 +13489,7 @@ /obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "ieH" = ( /obj/item/stack/sheet/wood{ @@ -16220,9 +13553,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "ikA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, @@ -16248,9 +13579,7 @@ pixel_x = 1; pixel_y = 9 }, -/turf/open/floor/carpet{ - icon_state = "bcarpet09" - }, +/turf/open/floor/carpet/bcarpet09, /area/lv624/ground/caves/north_central_caves) "iml" = ( /obj/structure/surface/rack, @@ -16284,16 +13613,10 @@ /obj/item/device/radio/off{ frequency = 1469 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "itE" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southeast, /area/lv624/lazarus/landing_zones/lz2) "iuf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -16303,9 +13626,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "iuO" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" - }, +/turf/open/gm/dirtgrassborder/desert3, /area/lv624/ground/barrens/south_eastern_barrens) "ivl" = ( /obj/structure/flora/jungle/vines/light_2, @@ -16328,10 +13649,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "iye" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -16351,9 +13669,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "izv" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "izX" = ( /obj/structure/surface/table/reinforced/prison{ @@ -16382,10 +13698,7 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) "iBD" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/medbay) "iCN" = ( /obj/structure/fence, @@ -16401,10 +13714,7 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) "iGf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -16445,9 +13755,7 @@ /area/lv624/ground/barrens/south_eastern_jungle_barrens) "iKp" = ( /obj/structure/surface/rack, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "iLL" = ( /obj/effect/decal/remains/human, @@ -16492,10 +13800,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "iRb" = ( /obj/effect/landmark/monkey_spawn, @@ -16503,10 +13808,7 @@ /area/lv624/ground/barrens/south_eastern_jungle_barrens) "iSa" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "iSg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -16528,9 +13830,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_central_jungle) "iVg" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "iWC" = ( /obj/structure/machinery/colony_floodlight, @@ -16562,10 +13862,7 @@ pixel_y = 26 }, /obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "iZG" = ( /obj/effect/landmark/crap_item, @@ -16577,9 +13874,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "jaa" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/barrens/central_barrens) "jas" = ( /obj/structure/flora/jungle/vines/heavy, @@ -16603,10 +13898,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "jcn" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -16623,9 +13915,7 @@ "jdL" = ( /obj/structure/foamed_metal, /obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) "jeL" = ( /turf/closed/wall/r_wall, @@ -16634,10 +13924,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "jga" = ( /turf/open/gm/river, @@ -16680,10 +13967,7 @@ /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) "jiR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "jlh" = ( /obj/structure/machinery/colony_floodlight, @@ -16714,9 +13998,7 @@ pixel_y = 8 }, /obj/item/tool/pen/clicky, -/turf/open/floor{ - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner, /area/lv624/lazarus/corporate_dome) "jpX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -16735,9 +14017,7 @@ /area/lv624/ground/caves/west_caves) "jrC" = ( /obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "jsd" = ( /obj/structure/flora/jungle/vines/light_2, @@ -16749,9 +14029,7 @@ /area/lv624/lazarus/landing_zones/lz1) "jum" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/river/east_river) "jvl" = ( /obj/structure/cargo_container/lockmart/mid, @@ -16769,10 +14047,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/lazarus/engineering) "jxw" = ( /obj/structure/surface/table/reinforced/prison{ @@ -16805,10 +14080,7 @@ pixel_x = -8; pixel_y = 7 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "jzm" = ( /obj/structure/surface/table/reinforced/prison, @@ -16816,9 +14088,7 @@ dir = 2; layer = 2.9 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "jzZ" = ( /obj/structure/flora/jungle/vines/light_2, @@ -16839,9 +14109,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "jBl" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -16914,9 +14182,7 @@ /obj/structure/prop/mech/parts/gygax_armor{ layer = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) "jJg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -16971,10 +14237,7 @@ dir = 4 }, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/engineering) "jMD" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -16991,9 +14254,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "jMS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -17003,10 +14264,7 @@ "jNR" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "jQj" = ( /obj/structure/flora/jungle/vines/heavy, @@ -17021,10 +14279,7 @@ dir = 8 }, /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, +/turf/open/floor/warning/southeast, /area/lv624/lazarus/landing_zones/lz2) "jQW" = ( /obj/structure/surface/table/reinforced/prison{ @@ -17043,9 +14298,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/lv624/lazarus/hop) "jRm" = ( /turf/open/gm/dirt, @@ -17059,9 +14312,7 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "jRJ" = ( /obj/effect/decal/cleanable/blood/xeno, @@ -17130,10 +14381,7 @@ /obj/item/tool/pen/red/clicky{ pixel_y = 6 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) "jZL" = ( /obj/effect/landmark/monkey_spawn, @@ -17155,10 +14403,7 @@ /area/lv624/ground/barrens/north_east_barrens) "kbn" = ( /obj/structure/machinery/sensortower, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/caves/north_central_caves) "kbr" = ( /obj/structure/showcase{ @@ -17166,10 +14411,7 @@ icon_state = "yaut"; name = "alien sarcophagus" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "kcP" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -17252,9 +14494,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "krs" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/caves/south_west_caves) "ksc" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ @@ -17279,10 +14519,7 @@ /obj/item/storage/toolbox/electrical{ pixel_y = -3 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "ktf" = ( /obj/structure/barricade/handrail/strata{ @@ -17304,10 +14541,7 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "kuZ" = ( /obj/structure/machinery/colony_floodlight, @@ -17317,9 +14551,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_central_jungle) "kvv" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "kvE" = ( /obj/structure/machinery/landinglight/ds2/delaythree, @@ -17330,10 +14562,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"kxo" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) "kxv" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -17359,9 +14587,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "kyN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -17379,10 +14605,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "kzn" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -17393,9 +14616,7 @@ "kzp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "kzu" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -17423,9 +14644,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "kAl" = ( /obj/structure/flora/jungle/vines/heavy, @@ -17435,10 +14654,7 @@ /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_access = list(7,23,27) }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "kBq" = ( /obj/structure/flora/bush/ausbushes/ausbush, @@ -17463,9 +14679,7 @@ /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) "kHB" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/central_barrens) "kHU" = ( /turf/open/gm/grass/grass1, @@ -17501,10 +14715,7 @@ pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "kLl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -17530,10 +14741,7 @@ /area/lv624/ground/jungle/east_jungle) "kPL" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, +/turf/open/floor/warning/east, /area/lv624/ground/barrens/east_barrens) "kPU" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -17545,9 +14753,7 @@ /obj/structure/surface/table, /obj/item/trash/plate, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "kQY" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -17563,18 +14769,14 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ pixel_y = -6 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "kRR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) "kSs" = ( /obj/structure/inflatable, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "kSH" = ( /obj/structure/bed/alien{ @@ -17584,9 +14786,7 @@ /area/lv624/ground/caves/sand_temple) "kSN" = ( /obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/secure_storage) "kSR" = ( /obj/structure/fence, @@ -17611,9 +14811,7 @@ /turf/open/gm/dirt, /area/lv624/lazarus/secure_storage) "kWH" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "kWJ" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ @@ -17628,10 +14826,7 @@ "kWX" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "kXE" = ( /obj/structure/flora/bush/ausbushes/ausbush, @@ -17665,15 +14860,10 @@ "kZS" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/corporate_dome) "lav" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/caves/west_caves) "laY" = ( /obj/structure/flora/jungle/vines/light_1, @@ -17756,10 +14946,7 @@ }, /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz1) "lnr" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -17791,9 +14978,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "lpV" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage) "lqI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -17829,9 +15014,7 @@ "lud" = ( /obj/structure/foamed_metal, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) "lxr" = ( /obj/structure/flora/jungle/vines/light_2, @@ -17869,9 +15052,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "lzE" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/barrens/west_barrens) "lzW" = ( /obj/effect/decal/cleanable/dirt, @@ -17879,9 +15060,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "lAX" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -17898,9 +15077,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "lBr" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -17920,10 +15097,7 @@ /area/lv624/ground/jungle/north_west_jungle) "lDh" = ( /obj/item/clothing/suit/armor/yautja_flavor, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "lEY" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -17943,18 +15117,14 @@ name = "Garage Shutters"; pixel_x = -28 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "lHc" = ( /obj/structure/lattice{ layer = 2.9 }, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) "lHL" = ( /obj/effect/landmark/hunter_primary, @@ -17969,9 +15139,7 @@ amount = 2 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "lIL" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -17998,10 +15166,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "lJo" = ( /obj/structure/flora/jungle/vines/heavy, @@ -18014,10 +15179,7 @@ "lKe" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz2) "lKl" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -18055,10 +15217,7 @@ /area/lv624/ground/caves/north_east_caves) "lNe" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/north, /area/lv624/lazarus/corporate_dome) "lNG" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -18071,9 +15230,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) "lPJ" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" - }, +/turf/open/gm/dirtgrassborder/desert, /area/lv624/ground/barrens/south_eastern_barrens) "lQC" = ( /turf/open/gm/dirt, @@ -18087,10 +15244,7 @@ /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz1) "lRy" = ( /obj/effect/landmark/crap_item, @@ -18107,10 +15261,7 @@ dir = 1 }, /obj/item/clothing/shoes/dress, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "lSA" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -18137,10 +15288,7 @@ /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, +/turf/open/floor/warning/northeast, /area/lv624/lazarus/landing_zones/lz2) "lUc" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -18202,20 +15350,14 @@ /area/lv624/lazarus/landing_zones/lz2) "lZl" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "maE" = ( /obj/item/stack/sheet/wood{ amount = 2 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "mbp" = ( /obj/structure/flora/jungle/alienplant1{ @@ -18291,40 +15433,27 @@ id = "garage_lv"; name = "\improper Garage" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "mhZ" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "miF" = ( /obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "mjm" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/river/east_river) "mjB" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/west, /area/lv624/lazarus/corporate_dome) "mjY" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "mkn" = ( /obj/effect/decal/cleanable/dirt, @@ -18336,9 +15465,7 @@ /area/lv624/ground/colony/south_nexus_road) "mkr" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) "mku" = ( /obj/effect/landmark/monkey_spawn, @@ -18348,9 +15475,7 @@ "mkU" = ( /obj/structure/foamed_metal, /obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "mkW" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -18363,9 +15488,7 @@ dir = 4 }, /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "mmu" = ( /obj/structure/flora/jungle/plantbot1, @@ -18397,9 +15520,7 @@ pixel_x = -4; pixel_y = 9 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "mqf" = ( /obj/item/tool/wrench, @@ -18407,9 +15528,7 @@ /area/lv624/lazarus/secure_storage) "mqw" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "mqJ" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -18435,10 +15554,7 @@ /area/lv624/ground/river/west_river) "mtP" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "mun" = ( /obj/structure/fence, @@ -18457,10 +15573,7 @@ /area/lv624/ground/jungle/north_east_jungle) "mvc" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/lv624/ground/colony/telecomm/cargo) "mvr" = ( /obj/structure/machinery/colony_floodlight, @@ -18471,10 +15584,7 @@ name = "Weyland-Yutani Automatic Teller Machine"; pixel_y = 30 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "mxd" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, @@ -18495,15 +15605,10 @@ layer = 3.1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "mBL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/lv624/ground/colony/telecomm/sw_lz2) "mBN" = ( /obj/structure/window/reinforced{ @@ -18516,10 +15621,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "mEo" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -18560,10 +15662,7 @@ /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) "mJB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/corporate_dome) "mJF" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -18596,10 +15695,7 @@ pixel_x = 6; pixel_y = -2 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "mNl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -18639,30 +15735,21 @@ amount = 2 }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz2) "mRm" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "mSo" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/central_barrens) "mSN" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "mUH" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" - }, +/turf/open/gm/dirtgrassborder/desert0, /area/lv624/ground/barrens/south_eastern_barrens) "mUQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -18698,10 +15785,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "mVn" = ( /obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "mVr" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -18747,9 +15831,7 @@ name = "Garage Shutters"; pixel_y = -28 }, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/lazarus/landing_zones/lz2) "ndk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -18798,10 +15880,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "niV" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/east, /area/lv624/lazarus/landing_zones/lz2) "njl" = ( /obj/effect/decal/cleanable/blood/oil, @@ -18812,10 +15891,7 @@ /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) "njO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/lv624/ground/colony/telecomm/cargo) "nkg" = ( /obj/structure/prop/brazier/torch, @@ -18854,10 +15930,7 @@ /area/lv624/ground/jungle/west_jungle) "nqt" = ( /obj/item/device/analyzer/plant_analyzer, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "nqv" = ( /turf/open/gm/river, @@ -18867,15 +15940,10 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) "nrb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/north, /area/lv624/lazarus/corporate_dome) "nrm" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/west_barrens) "nrK" = ( /obj/structure/stairs/perspective{ @@ -18883,10 +15951,7 @@ icon_state = "p_stair_full" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "nrP" = ( /obj/structure/transmitter/colony_net{ @@ -18923,10 +15988,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "ntr" = ( /turf/closed/wall/strata_ice/jungle, @@ -18987,10 +16049,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/engineering) "nxe" = ( /obj/structure/surface/table/woodentable/poor, @@ -18998,16 +16057,11 @@ pixel_x = 2; pixel_y = 3 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "nxu" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/west, /area/lv624/lazarus/corporate_dome) "nys" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -19024,19 +16078,13 @@ /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "nBh" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) "nBK" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/caves/sand_temple) "nBM" = ( /obj/structure/flora/jungle/vines/heavy, @@ -19046,10 +16094,7 @@ "nDr" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "nEd" = ( /turf/closed/wall/r_wall, @@ -19085,17 +16130,11 @@ /obj/structure/surface/table, /obj/item/device/analyzer/plant_analyzer, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "nHj" = ( /obj/item/tool/extinguisher, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "nHq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, @@ -19110,10 +16149,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) "nHP" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) "nHY" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -19128,15 +16164,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "nIA" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/barrens/east_barrens) "nIH" = ( /obj/structure/stairs/perspective{ @@ -19144,10 +16175,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "nIZ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -19155,9 +16183,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "nJF" = ( /obj/structure/fence, @@ -19179,10 +16205,7 @@ /area/lv624/ground/caves/south_central_caves) "nLH" = ( /obj/structure/prop/tower, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "nLI" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -19190,9 +16213,7 @@ /area/lv624/ground/jungle/east_central_jungle) "nMu" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "nMJ" = ( /obj/structure/flora/jungle/vines/heavy, @@ -19217,9 +16238,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "nOX" = ( /obj/structure/machinery/colony_floodlight, @@ -19234,10 +16253,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "nQH" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -19255,10 +16271,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "nRA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ @@ -19269,9 +16282,7 @@ /area/lv624/ground/caves/west_caves) "nSg" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "nSR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -19281,20 +16292,14 @@ /area/lv624/lazarus/landing_zones/lz1) "nTE" = ( /obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "nUs" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "nUy" = ( /turf/closed/wall/r_wall/unmeltable, @@ -19312,9 +16317,7 @@ icon_state = "cartridge_3_1" }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "nUZ" = ( /obj/effect/decal/grass_overlay/grass1, @@ -19355,10 +16358,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "nWJ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -19374,19 +16374,14 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) "nYZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/west, /area/lv624/lazarus/medbay) "nZz" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "oas" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "oaL" = ( /obj/structure/flora/bush/ausbushes/ausbush, @@ -19411,9 +16406,7 @@ "ocG" = ( /obj/effect/landmark/corpsespawner/security/liaison, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "ocL" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -19450,15 +16443,10 @@ /obj/item/weapon/twohanded/yautja/glaive/damaged{ name = "damaged war glaive" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "ofg" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/caves/west_caves) "ofv" = ( /obj/effect/landmark/crap_item, @@ -19475,10 +16463,7 @@ /area/lv624/ground/river/east_river) "ogR" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/lazarus/engineering) "ogZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -19520,10 +16505,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "omu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -19567,10 +16549,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) "orB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/lv624/ground/colony/telecomm/cargo) "ose" = ( /obj/structure/girder/displaced, @@ -19650,17 +16629,11 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "oyT" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "oAD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -19669,9 +16642,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) "oAJ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) "oAV" = ( @@ -19715,9 +16686,7 @@ /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/grown/banana, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "oEI" = ( /turf/open/gm/coast/west, @@ -19755,9 +16724,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "oGr" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/south_eastern_barrens) "oGs" = ( /obj/structure/fence, @@ -19772,9 +16739,7 @@ /area/lv624/ground/jungle/east_central_jungle) "oHU" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/lv624/ground/caves/north_central_caves) "oIO" = ( /obj/structure/surface/table, @@ -19782,9 +16747,7 @@ /obj/item/device/radio/off{ frequency = 1469 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "oJL" = ( /obj/effect/landmark/crap_item, @@ -19792,10 +16755,7 @@ /area/lv624/ground/colony/west_nexus_road) "oKP" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/lv624/ground/colony/telecomm/sw_lz2) "oLk" = ( /obj/structure/fence, @@ -19818,10 +16778,7 @@ /obj/item/clothing/under/marine/veteran/pmc, /obj/item/storage/fancy/cigar, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) "oOd" = ( /obj/effect/landmark/monkey_spawn, @@ -19829,9 +16786,7 @@ /area/lv624/ground/jungle/south_west_jungle) "oOf" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz2) "oOB" = ( /obj/structure/machinery/landinglight/ds2/delayone, @@ -19840,15 +16795,10 @@ "oOV" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz2) "oPT" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/north, /area/lv624/lazarus/landing_zones/lz1) "oQm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -19861,10 +16811,7 @@ /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "oSh" = ( /obj/item/stack/sheet/wood{ @@ -19895,9 +16842,7 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "oTt" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -19924,15 +16869,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = 29 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "oVM" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "oWN" = ( /obj/structure/flora/jungle/vines/heavy, @@ -19978,10 +16918,7 @@ pixel_y = 6 }, /obj/item/clothing/under/liaison_suit/blue, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) "pba" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -19997,19 +16934,13 @@ /area/lv624/ground/colony/south_nexus_road) "pbG" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "pca" = ( /obj/effect/landmark/nightmare{ insert_tag = "nexuscenter_barricaded" }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/lv624/lazarus/security) "pcd" = ( /turf/open/gm/coast/south, @@ -20023,10 +16954,7 @@ /area/lv624/ground/jungle/east_jungle) "pcz" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/ground/barrens/containers) "pcA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -20052,17 +16980,11 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "pgD" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "phk" = ( /obj/item/stack/rods, @@ -20110,18 +17032,14 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "pmz" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/river/east_river) "pnl" = ( /obj/structure/largecrate/random, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) "por" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) "pox" = ( @@ -20129,9 +17047,7 @@ dir = 8; health = 70 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "poX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -20155,9 +17071,7 @@ /area/lv624/ground/caves/west_caves) "prd" = ( /obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz1) "prQ" = ( /obj/structure/flora/jungle/vines/light_2, @@ -20183,14 +17097,10 @@ /obj/item/ammo_magazine/rifle/nsg23{ current_rounds = 0 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "ptm" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/caves/west_caves) "ptr" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -20200,16 +17110,11 @@ /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) "pwq" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "pws" = ( /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "pxc" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -20220,9 +17125,7 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "pyG" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner, /area/lv624/lazarus/corporate_dome) "pyS" = ( /obj/effect/landmark/crap_item, @@ -20237,15 +17140,11 @@ phone_category = "Lazarus Landing"; phone_id = "Medbay" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "pzP" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "pAE" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -20276,10 +17175,7 @@ desc = "An old hide from a fearsome creature."; name = "hunter hide" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "pDt" = ( /turf/open/gm/dirt, @@ -20289,9 +17185,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) "pDK" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/caves/sand_temple) "pEl" = ( /obj/effect/landmark/hunter_primary, @@ -20304,10 +17198,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "pEV" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "pFe" = ( /turf/open/gm/dirtgrassborder/west, @@ -20340,10 +17231,7 @@ /area/lv624/ground/colony/west_tcomms_road) "pHA" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "pIl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -20376,16 +17264,11 @@ /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) "pKm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/lv624/ground/colony/telecomm/sw_lz2) "pKp" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "pKS" = ( /obj/structure/flora/jungle/vines/heavy, @@ -20414,9 +17297,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) "pNa" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) "pNr" = ( @@ -20433,10 +17314,7 @@ /area/lv624/ground/barrens/central_barrens) "pOW" = ( /obj/item/storage/firstaid/toxin, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/medbay) "pPd" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -20447,9 +17325,7 @@ locked = 1; name = "\improper Corporate Liaison" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "pQV" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -20469,16 +17345,10 @@ phone_id = "Corporate Office"; pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) "pRh" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northeast, /area/lv624/lazarus/landing_zones/lz2) "pRp" = ( /obj/structure/surface/table/reinforced/prison{ @@ -20488,10 +17358,7 @@ dir = 4; health = 80 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "pRx" = ( /obj/structure/stairs/perspective{ @@ -20523,9 +17390,7 @@ "pTk" = ( /obj/item/bedsheet/medical, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "pUm" = ( /turf/closed/wall/rock/brown, @@ -20572,10 +17437,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "qaE" = ( /obj/effect/landmark/hunter_primary, @@ -20606,16 +17468,12 @@ icon_state = "cartridge_6_1" }, /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "qez" = ( /obj/effect/landmark/good_item, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "qeW" = ( /turf/open/gm/coast/beachcorner2/north_west, @@ -20661,10 +17519,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "qiL" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, @@ -20691,10 +17546,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "qqJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -20747,10 +17599,7 @@ anchored = 1; unacidable = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "qvf" = ( /obj/structure/flora/jungle/vines/light_3, @@ -20770,10 +17619,7 @@ }, /obj/item/folder/red, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "qxZ" = ( /obj/structure/surface/table/woodentable/poor, @@ -20833,18 +17679,12 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "qDg" = ( /obj/structure/barricade/wooden, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz2) "qDx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -20878,9 +17718,7 @@ "qGR" = ( /obj/structure/foamed_metal, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "qHC" = ( /obj/structure/largecrate/random/barrel/red, @@ -20900,15 +17738,11 @@ "qJg" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "qJq" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "qJx" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -20924,10 +17758,7 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_nexus_road) "qKC" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/lv624/ground/colony/telecomm/sw_lz2) "qLc" = ( /obj/structure/flora/grass/tallgrass/jungle, @@ -20940,20 +17771,14 @@ "qNl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "qNz" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "qNQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ @@ -20975,10 +17800,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "qPY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -21022,10 +17844,7 @@ "qTM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/corporate_dome) "qUM" = ( /turf/open/gm/dirtgrassborder/north, @@ -21059,16 +17878,11 @@ "qXo" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "qXt" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "qYF" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -21094,15 +17908,10 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/corporate_dome) "rba" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/west_barrens) "rbs" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -21130,9 +17939,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "rcY" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "redyellowfull" - }, +/turf/open/floor/redyellowfull, /area/lv624/ground/barrens/west_barrens/ceiling) "rdS" = ( /obj/structure/surface/table/reinforced/prison, @@ -21143,10 +17950,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/corporate_dome) "rdZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -21160,10 +17964,7 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "rfH" = ( /obj/structure/flora/jungle/vines/light_2, @@ -21195,18 +17996,12 @@ /area/lv624/ground/river/central_river) "rkq" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "rkZ" = ( /obj/item/shard, /obj/item/stack/rods, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "rmg" = ( /obj/structure/machinery/light{ @@ -21214,9 +18009,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "rmt" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -21251,10 +18044,7 @@ /area/lv624/ground/caves/north_east_caves) "rpR" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, +/turf/open/floor/warning/southeast, /area/lv624/lazarus/landing_zones/lz1) "rqf" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -21317,9 +18107,7 @@ /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) "rxV" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirtgrassborder/desert_dug, /area/lv624/ground/barrens/south_eastern_barrens) "ryp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -21329,15 +18117,10 @@ "ryJ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ryY" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "rze" = ( @@ -21351,10 +18134,7 @@ /obj/item/stack/sheet/wood{ amount = 2 }, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, +/turf/open/floor/warning/northeast, /area/lv624/lazarus/landing_zones/lz1) "rAo" = ( /obj/structure/surface/table/reinforced/prison, @@ -21363,10 +18143,7 @@ pixel_x = 4; pixel_y = 13 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "rAU" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -21388,19 +18165,14 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "rCV" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) "rDK" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/secure_storage) "rER" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -21504,17 +18276,13 @@ /obj/item/device/flashlight/lamp/green{ pixel_x = 3 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "rNq" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "rON" = ( /obj/structure/flora/jungle/vines/light_3, @@ -21553,10 +18321,7 @@ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "rSy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -21584,10 +18349,7 @@ phone_id = "Communications"; pixel_y = 24 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "rWs" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -21624,9 +18386,7 @@ /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "sau" = ( /obj/effect/landmark/crap_item, @@ -21637,9 +18397,7 @@ /obj/effect/decal/cleanable/blood, /obj/structure/bed/roller, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "scs" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -21662,10 +18420,7 @@ pixel_x = 10; pixel_y = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "sfg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -21701,9 +18456,7 @@ /area/lv624/lazarus/landing_zones/lz1) "shy" = ( /obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "sic" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -21736,9 +18489,7 @@ /obj/item/ammo_casing/bullet{ icon_state = "cartridge_10_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "snm" = ( /turf/open/gm/grass/grass2, @@ -21749,9 +18500,7 @@ /area/lv624/ground/colony/west_tcomms_road) "snI" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "soz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -21797,10 +18546,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "srn" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -21833,9 +18579,7 @@ pixel_y = 30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "swR" = ( /obj/structure/flora/jungle/vines/light_3, @@ -21893,10 +18637,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "sBC" = ( /obj/structure/fence, @@ -21918,10 +18659,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "sCx" = ( /obj/item/clothing/head/welding, @@ -21930,9 +18668,7 @@ /area/lv624/ground/jungle/south_west_jungle) "sCJ" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz1) "sCX" = ( /obj/structure/flora/jungle/vines/light_1, @@ -21966,10 +18702,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "sGg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -21985,10 +18718,7 @@ /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/south_west_barrens) "sIi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/corporate_dome) "sIr" = ( /obj/effect/landmark/crap_item, @@ -22119,9 +18849,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "sWk" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/secure_storage) "sWy" = ( /obj/effect/landmark/monkey_spawn, @@ -22149,10 +18877,7 @@ anchored = 1; unacidable = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "sXg" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -22178,10 +18903,7 @@ "taa" = ( /obj/structure/barricade/wooden, /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/lazarus/landing_zones/lz1) "taK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -22214,10 +18936,7 @@ dir = 8 }, /obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/engineering) "teJ" = ( /obj/structure/flora/jungle/vines/heavy, @@ -22240,9 +18959,7 @@ /obj/effect/landmark/nightmare{ insert_tag = "lz-containers_swapped" }, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz1) "tgL" = ( /mob/living/simple_animal/bat, @@ -22286,10 +19003,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "thI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -22345,9 +19059,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) "tnY" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/caves/west_caves) "toz" = ( /obj/structure/flora/bush/ausbushes/pointybush, @@ -22438,9 +19150,7 @@ /area/lv624/ground/caves/north_east_caves) "tuX" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "tvC" = ( /obj/structure/flora/bush/ausbushes/palebush, @@ -22469,18 +19179,13 @@ /obj/structure/surface/table, /obj/item/reagent_container/spray, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "tyG" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) "tzo" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/barrens/central_barrens) "tzB" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -22497,10 +19202,7 @@ /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "tBB" = ( /obj/structure/machinery/colony_floodlight, @@ -22531,15 +19233,11 @@ /area/lv624/ground/caves/east_caves) "tEn" = ( /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz2) "tES" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "tHc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, @@ -22548,10 +19246,7 @@ "tIg" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "tIZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -22560,10 +19255,7 @@ "tJb" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "tJh" = ( /obj/structure/showcase{ @@ -22591,6 +19283,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"tLe" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) "tLQ" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -22598,9 +19294,7 @@ "tLS" = ( /obj/structure/bed/chair/office/light, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/corporate_dome) "tLU" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -22623,10 +19317,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "tMP" = ( /obj/structure/window_frame/colony, @@ -22709,9 +19400,7 @@ /area/lv624/ground/caves/north_east_caves) "tWw" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "tWK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -22724,9 +19413,7 @@ /area/lv624/ground/jungle/east_central_jungle) "tXZ" = ( /obj/structure/largecrate, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "tYx" = ( /obj/effect/landmark/objective_landmark/medium, @@ -22757,10 +19444,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "uaL" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -22780,9 +19464,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "ubN" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -22796,9 +19478,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "udM" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "udP" = ( /turf/open/gm/dirt, @@ -22834,10 +19514,7 @@ /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "uin" = ( /obj/structure/surface/table/woodentable/poor, @@ -22846,9 +19523,7 @@ pixel_x = 6; pixel_y = 3 }, -/turf/open/floor/carpet{ - icon_state = "bcarpet08" - }, +/turf/open/floor/carpet/bcarpet08, /area/lv624/ground/caves/north_central_caves) "uiz" = ( /obj/structure/fence, @@ -22886,19 +19561,14 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) "ukE" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/south_eastern_barrens) "ukS" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/device/flashlight{ pixel_y = 5 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "ukY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -22909,20 +19579,14 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "ukZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/lv624/ground/colony/telecomm/cargo) "ulj" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "ulp" = ( /obj/structure/transmitter/colony_net{ @@ -22956,10 +19620,7 @@ /area/lv624/ground/caves/east_caves) "upp" = ( /obj/structure/platform_decoration, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "upM" = ( /obj/effect/landmark/crap_item, @@ -22983,10 +19644,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) "urR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "urY" = ( /obj/structure/barricade/sandbags/wired{ @@ -23054,10 +19712,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "uzH" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/west, /area/lv624/lazarus/landing_zones/lz2) "uAp" = ( /turf/closed/wall/strata_ice/jungle, @@ -23074,10 +19729,7 @@ name = "alien sarcophagus" }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "uDs" = ( /turf/open/gm/grass/grass2, @@ -23105,17 +19757,11 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ pixel_y = 3 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "uFA" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "uFB" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -23123,10 +19769,7 @@ /area/lv624/ground/barrens/east_barrens) "uGM" = ( /obj/item/storage/fancy/cigarettes/emeraldgreen, -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/corporate_dome) "uHc" = ( /obj/effect/decal/grass_overlay/grass1/inner{ @@ -23140,9 +19783,7 @@ /area/lv624/ground/jungle/north_east_jungle) "uIF" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) "uKT" = ( /obj/structure/bed/chair/comfy/black{ @@ -23151,9 +19792,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "uLW" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, +/obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) "uMd" = ( @@ -23193,9 +19832,7 @@ /area/lv624/ground/caves/south_central_caves) "uOK" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) "uRb" = ( /obj/structure/machinery/colony_floodlight, @@ -23224,9 +19861,7 @@ /obj/item/device/flashlight/lantern, /obj/structure/barricade/sandbags/wired, /obj/item/weapon/baseballbat/metal, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "uTe" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -23237,17 +19872,13 @@ "uUi" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/folder/black_random, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/corporate_dome) "uUl" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_west_jungle) "uUJ" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" - }, +/turf/open/gm/dirtgrassborder/desert1, /area/lv624/ground/barrens/south_eastern_barrens) "uVk" = ( /obj/effect/landmark/objective_landmark/far, @@ -23256,9 +19887,7 @@ "uVx" = ( /obj/structure/machinery/floodlight/landing, /obj/effect/decal/warning_stripes, -/turf/open/floor/mech_bay_recharge_floor{ - name = "Shuttle Landing Lights" - }, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, /area/lv624/lazarus/landing_zones/lz1) "uVU" = ( /obj/effect/landmark/lv624/xeno_tunnel, @@ -23267,18 +19896,14 @@ /area/lv624/ground/jungle/east_jungle) "uWr" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "uWJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_west_caves) "uXT" = ( /obj/item/device/assembly/timer, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "uXV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -23286,9 +19911,7 @@ /area/lv624/ground/jungle/south_central_jungle) "uXW" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) "uYj" = ( /turf/open/auto_turf/strata_grass/layer1, @@ -23312,20 +19935,14 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "warningcorner" - }, +/turf/open/floor/warningcorner/north, /area/lv624/lazarus/landing_zones/lz1) "uZz" = ( /obj/structure/surface/table/holotable, /obj/structure/machinery/computer/objective{ dir = 5 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "vam" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -23355,9 +19972,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "vdt" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -23371,9 +19986,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "vef" = ( /obj/effect/landmark/objective_landmark/science, @@ -23383,9 +19996,7 @@ /obj/item/ammo_casing/bullet{ icon_state = "cartridge_3_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "ver" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -23397,9 +20008,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/caves/sand_temple) "vfR" = ( /obj/structure/flora/jungle/plantbot1, @@ -23453,10 +20062,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "vkN" = ( /obj/effect/landmark/objective_landmark/far, @@ -23495,9 +20101,7 @@ /obj/item/ammo_casing/bullet{ icon_state = "cartridge_9_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "vnW" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -23549,10 +20153,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "vxa" = ( /obj/structure/flora/jungle/vines/light_3, @@ -23574,10 +20175,7 @@ /area/lv624/ground/jungle/south_west_jungle) "vyz" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "vAg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -23609,10 +20207,7 @@ /area/lv624/ground/caves/sand_temple) "vBQ" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "vCG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -23629,10 +20224,7 @@ /area/lv624/ground/jungle/east_jungle) "vEj" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "vEp" = ( /obj/structure/flora/jungle/vines/light_1, @@ -23666,23 +20258,16 @@ amount = 10; pixel_y = 3 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "vIt" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/river/east_river) "vIY" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_9_1" }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/lv624/lazarus/corporate_dome) "vJs" = ( /obj/structure/flora/grass/tallgrass/jungle, @@ -23691,9 +20276,7 @@ /area/lv624/ground/jungle/west_jungle) "vJM" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/comms) "vKc" = ( /obj/effect/landmark/crap_item, @@ -23711,10 +20294,7 @@ pixel_y = 30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "vMV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -23775,10 +20355,7 @@ /obj/item/tool/wrench, /obj/item/tool/weldingtool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "vSG" = ( /obj/structure/flora/jungle/vines/light_1, @@ -23809,10 +20386,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_central_jungle) "vVf" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/lv624/ground/colony/telecomm/sw_lz2) "vVC" = ( /turf/closed/wall/strata_ice/jungle, @@ -23823,10 +20397,7 @@ /area/lv624/ground/jungle/west_jungle) "vVN" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "vWs" = ( /obj/structure/flora/jungle/vines/light_3, @@ -23845,9 +20416,7 @@ /area/lv624/ground/jungle/north_west_jungle) "vYL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) "vZT" = ( /obj/effect/landmark/objective_landmark/close, @@ -23881,9 +20450,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "wcj" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -23919,9 +20486,7 @@ /area/lv624/ground/jungle/north_jungle) "weR" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/secure_storage) "wgk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -23946,15 +20511,10 @@ /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "whv" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" - }, +/turf/open/gm/dirtgrassborder/desert2, /area/lv624/ground/barrens/south_eastern_barrens) "whx" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -24030,9 +20590,7 @@ /area/lv624/ground/jungle/north_west_jungle) "woK" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "woM" = ( /obj/structure/showcase{ @@ -24053,10 +20611,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "woT" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -24105,9 +20660,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) "wwI" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/lv624/ground/caves/north_central_caves) "wxP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -24166,9 +20719,7 @@ "wFR" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) "wHh" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -24177,10 +20728,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "wHp" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/landing_zones/lz2) "wHE" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ @@ -24209,22 +20757,16 @@ /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "wLe" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "wLz" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/lazarus/landing_zones/lz2) "wLT" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, @@ -24250,10 +20792,7 @@ /area/lv624/ground/caves/west_caves) "wNB" = ( /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz1) "wOv" = ( /obj/structure/window/reinforced{ @@ -24266,9 +20805,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/corporate_dome) "wPN" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -24320,10 +20857,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "wSR" = ( /obj/effect/landmark/hunter_secondary, @@ -24334,10 +20868,7 @@ /obj/item/storage/firstaid/fire{ pixel_x = -5 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "wSY" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -24345,9 +20876,7 @@ locked = 1; name = "\improper Storage Room" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "wTa" = ( /obj/structure/flora/jungle/vines/light_2, @@ -24384,9 +20913,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) "wWg" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/east_barrens/ceiling) "wWm" = ( /turf/open/gm/dirtgrassborder/west, @@ -24404,10 +20931,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "wWS" = ( /obj/effect/landmark/hunter_secondary, @@ -24466,10 +20990,7 @@ /area/lv624/ground/caves/east_caves) "xbu" = ( /obj/item/shard, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southwest, /area/lv624/lazarus/corporate_dome) "xch" = ( /turf/open/gm/dirt, @@ -24498,10 +21019,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "xeT" = ( /obj/structure/flora/jungle/vines/light_2, @@ -24510,18 +21028,12 @@ "xfa" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "xfP" = ( /obj/item/stack/rods, /obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "xgE" = ( /turf/closed/wall/r_wall, @@ -24542,10 +21054,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "xkU" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "xmK" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -24574,17 +21083,11 @@ "xqV" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "xrI" = ( /obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, +/turf/open/floor/warning/southeast, /area/lv624/lazarus/landing_zones/lz2) "xsN" = ( /obj/structure/flora/jungle/vines/light_1, @@ -24605,10 +21108,7 @@ "xvz" = ( /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) "xvN" = ( /obj/structure/barricade/handrail/strata{ @@ -24617,9 +21117,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "xvV" = ( /obj/effect/landmark/nightmare{ @@ -24640,18 +21138,13 @@ pixel_y = 4 }, /obj/item/restraint/adjustable/cable/white, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/lv624/lazarus/corporate_dome) "xxz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/crowbar, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northwest, /area/lv624/lazarus/corporate_dome) "xyH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -24665,9 +21158,7 @@ /obj/item/ammo_magazine/rifle/nsg23{ current_rounds = 0 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "xze" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -24677,9 +21168,7 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_jungle) "xBi" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/lv624/ground/caves/sand_temple) "xBm" = ( /turf/open/gm/river, @@ -24691,9 +21180,7 @@ "xCF" = ( /obj/item/ammo_magazine/smg/mp5, /obj/item/weapon/gun/smg/mp5, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "xDl" = ( /obj/structure/machinery/colony_floodlight, @@ -24711,9 +21198,7 @@ /area/lv624/ground/jungle/west_central_jungle) "xFf" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bar" - }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "xGd" = ( /obj/structure/flora/jungle/vines/heavy, @@ -24766,9 +21251,7 @@ /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) "xLT" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/secure_storage) "xNi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -24805,10 +21288,7 @@ /area/lv624/ground/jungle/south_east_jungle) "xQy" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "xQI" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -24860,12 +21340,6 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"xVo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_east_jungle) "xVN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/south_central_jungle) @@ -24910,9 +21384,7 @@ "ybQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/weapon/pole/fancy_cane, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "ydp" = ( /obj/structure/flora/bush/ausbushes/pointybush, @@ -24928,9 +21400,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/lv624/lazarus/engineering) "yfe" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -24939,9 +21409,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "yfH" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "yga" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -24962,23 +21430,15 @@ dir = 8 }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, +/turf/open/floor/warning/east, /area/lv624/lazarus/landing_zones/lz2) "yhR" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) "yhT" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/caves/west_caves) "yhY" = ( /obj/structure/inflatable/door, @@ -24989,9 +21449,7 @@ name = "\improper Corporation Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "yiE" = ( /obj/structure/flora/jungle/vines/heavy, @@ -25034,10 +21492,7 @@ "ylI" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southwest, /area/lv624/lazarus/corporate_dome) "ylL" = ( /obj/effect/landmark/crap_item, @@ -30912,7 +27367,7 @@ avo aFQ xTM aAl -aDv +aAl aAp aAp nmO @@ -31140,7 +27595,7 @@ auf aFm aAl wXg -aDv +aAl aAp nmO aXX @@ -31368,7 +27823,7 @@ auf aFm aAl aAl -aDv +aAl aAp aXX aRG @@ -32507,7 +28962,7 @@ tka lCG cDQ oTJ -nuW +aAp aAp cIL nmO @@ -33191,7 +29646,7 @@ oTJ oTJ oTJ oTJ -nuW +aAp aAp nmO aXX @@ -35709,7 +32164,7 @@ aDv aDv aRx aXX -kxo +aXX aXX aXX aXX @@ -38432,7 +34887,7 @@ nuW psh psh psh -psh +tLe psh tLQ ado @@ -53920,7 +50375,7 @@ cwV bit cpY cpY -xVo +tHc kip rck cpY @@ -54148,7 +50603,7 @@ cwV vSG pba cpY -xVo +tHc kip kip ueZ @@ -57788,7 +54243,7 @@ arS als arO oRH -xVo +tHc kip rck cpY diff --git a/maps/map_files/LV624/armory/10.cheese.dmm b/maps/map_files/LV624/armory/10.cheese.dmm index 0864030e130b..127e19a04809 100644 --- a/maps/map_files/LV624/armory/10.cheese.dmm +++ b/maps/map_files/LV624/armory/10.cheese.dmm @@ -1,20 +1,13 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "b" = ( /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "c" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/main_hall) "d" = ( /obj/item/phone{ @@ -31,36 +24,24 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "e" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "f" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) "g" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) "h" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "i" = ( /turf/closed/wall/r_wall, @@ -72,9 +53,7 @@ /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "l" = ( /obj/effect/decal/cleanable/cobweb2, @@ -83,23 +62,16 @@ /obj/item/reagent_container/hypospray/autoinjector/tricord, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "m" = ( /obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "n" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "o" = ( /obj/structure/machinery/light/small{ @@ -110,14 +82,10 @@ /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "p" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "q" = ( /obj/structure/surface/rack, @@ -125,30 +93,20 @@ /obj/effect/landmark/crap_item, /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "r" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "s" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "t" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "u" = ( /obj/structure/surface/rack, @@ -166,9 +124,7 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 8 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "w" = ( /obj/structure/surface/rack, @@ -179,9 +135,7 @@ pixel_x = 8; pixel_y = -4 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "y" = ( /obj/structure/window/reinforced{ @@ -192,28 +146,21 @@ /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "z" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) "A" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "B" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ locked = 1; name = "\improper Nexus Dome Armory" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "C" = ( /obj/structure/machinery/door_control{ @@ -229,15 +176,11 @@ /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ pixel_y = -6 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "M" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "Q" = ( /obj/structure/surface/rack, @@ -250,9 +193,7 @@ pixel_x = -4; pixel_y = -3 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) (1,1,1) = {" diff --git a/maps/map_files/LV624/armory/10.extra.dmm b/maps/map_files/LV624/armory/10.extra.dmm index 3e6fa0c0d68b..7acd81bb8e97 100644 --- a/maps/map_files/LV624/armory/10.extra.dmm +++ b/maps/map_files/LV624/armory/10.extra.dmm @@ -1,20 +1,13 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "b" = ( /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "c" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/main_hall) "d" = ( /obj/item/phone{ @@ -31,36 +24,24 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "e" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "f" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) "g" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) "h" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "i" = ( /turf/closed/wall/r_wall, @@ -76,9 +57,7 @@ /obj/item/ammo_magazine/shotgun/slugs, /obj/item/ammo_magazine/shotgun/flechette, /obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "l" = ( /obj/effect/decal/cleanable/cobweb2, @@ -93,23 +72,16 @@ /obj/item/reagent_container/hypospray/autoinjector/tricord, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "m" = ( /obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "n" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "o" = ( /obj/structure/machinery/light/small{ @@ -125,14 +97,10 @@ /obj/item/explosive/grenade/flashbang, /obj/item/explosive/grenade/flashbang, /obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "p" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "q" = ( /obj/structure/surface/rack{ @@ -142,38 +110,26 @@ /obj/effect/landmark/crap_item, /obj/item/ammo_magazine/smg/m39/extended, /obj/item/weapon/gun/smg/m39, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "r" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "s" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "t" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "u" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 8 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "w" = ( /obj/item/storage/toolbox/syndicate, @@ -184,9 +140,7 @@ /obj/effect/landmark/crap_item, /obj/item/ammo_magazine/smg/m39/extended, /obj/item/weapon/gun/smg/m39, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "y" = ( /obj/structure/window/reinforced{ @@ -197,28 +151,21 @@ /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "z" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) "A" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "B" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ locked = 1; name = "\improper Nexus Dome Armory" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "C" = ( /obj/structure/surface/rack, @@ -234,15 +181,11 @@ pixel_x = -26; range = 200 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "H" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) (1,1,1) = {" diff --git a/maps/map_files/LV624/armory/10.looted.dmm b/maps/map_files/LV624/armory/10.looted.dmm index 1c619fad1678..87fbccfce955 100644 --- a/maps/map_files/LV624/armory/10.looted.dmm +++ b/maps/map_files/LV624/armory/10.looted.dmm @@ -1,21 +1,14 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "b" = ( /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "c" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/main_hall) "d" = ( /obj/item/phone{ @@ -32,38 +25,26 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "e" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "f" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) "g" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) "h" = ( /obj/structure/barricade/wooden{ dir = 8 }, /obj/item/stack/tile/plasteel, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "i" = ( /turf/closed/wall/r_wall, @@ -74,79 +55,52 @@ "k" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "l" = ( -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "m" = ( /obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "n" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "o" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "p" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "q" = ( -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/armory) "r" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "s" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "t" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "u" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 8 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "w" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "y" = ( /obj/structure/window/reinforced{ @@ -157,10 +111,7 @@ /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, /obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "z" = ( /turf/closed/wall/strata_ice/jungle, @@ -170,18 +121,14 @@ dir = 1 }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "B" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ locked = 1; name = "\improper Nexus Dome Armory" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "T" = ( /obj/structure/machinery/door_control{ @@ -190,15 +137,11 @@ pixel_x = -26; range = 200 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "Y" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) (1,1,1) = {" diff --git a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm index 80d478e1ef51..c75595ead93b 100644 --- a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm +++ b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm @@ -1,10 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "f" = ( /obj/structure/surface/rack, @@ -15,9 +12,7 @@ pixel_x = -6 }, /obj/item/tool/shovel/etool, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "i" = ( /obj/structure/surface/rack, @@ -30,18 +25,13 @@ pixel_y = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "A" = ( /obj/structure/surface/rack, /obj/item/clothing/accessory/storage/black_vest/brown_vest, /obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "C" = ( /obj/structure/surface/rack, @@ -56,10 +46,7 @@ }, /obj/item/poster, /obj/item/clothing/glasses/sunglasses, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "E" = ( /turf/open/floor/vault, @@ -68,9 +55,7 @@ /obj/structure/surface/rack, /obj/item/stack/folding_barricade, /obj/item/facepaint/skull, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) "R" = ( /obj/structure/surface/rack, @@ -79,10 +64,7 @@ /obj/effect/landmark/wo_supplies/storage/webbing, /obj/item/poster, /obj/item/clothing/glasses/sunglasses, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) "V" = ( /obj/structure/surface/rack, @@ -92,9 +74,7 @@ /obj/item/explosive/grenade/high_explosive/frag{ pixel_x = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) (1,1,1) = {" diff --git a/maps/map_files/LV624/centralcaves/10.T.dmm b/maps/map_files/LV624/centralcaves/10.T.dmm index 56c54485e09e..09af40a6e0eb 100644 --- a/maps/map_files/LV624/centralcaves/10.T.dmm +++ b/maps/map_files/LV624/centralcaves/10.T.dmm @@ -63,17 +63,11 @@ /area/lv624/ground/caves/south_central_caves) "o" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/ground/barrens/containers) "p" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/ground/barrens/containers) "s" = ( /obj/effect/decal/grass_overlay/grass1/inner{ diff --git a/maps/map_files/LV624/centralcaves/10.qc.dmm b/maps/map_files/LV624/centralcaves/10.qc.dmm index 5f63ae797e02..6245715951fd 100644 --- a/maps/map_files/LV624/centralcaves/10.qc.dmm +++ b/maps/map_files/LV624/centralcaves/10.qc.dmm @@ -38,10 +38,7 @@ /area/lv624/ground/caves/south_central_caves) "hW" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/ground/barrens/containers) "iS" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ @@ -207,10 +204,7 @@ /area/lv624/ground/caves/south_central_caves) "JZ" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/ground/barrens/containers) "KX" = ( /turf/open/gm/dirt, diff --git a/maps/map_files/LV624/crashedship/10.digsite.dmm b/maps/map_files/LV624/crashedship/10.digsite.dmm index 6132b455f14d..13a4b645df03 100644 --- a/maps/map_files/LV624/crashedship/10.digsite.dmm +++ b/maps/map_files/LV624/crashedship/10.digsite.dmm @@ -11,9 +11,7 @@ "bB" = ( /obj/item/clothing/shoes/veteran/pmc, /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "bT" = ( /obj/structure/shuttle/engine/propulsion, @@ -24,15 +22,11 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "cV" = ( /obj/item/storage/toolbox/electrical, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "cZ" = ( /obj/item/storage/toolbox/mechanical, @@ -46,25 +40,18 @@ /area/lv624/lazarus/crashed_ship_containers) "eW" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, +/turf/open/floor/airless/asteroidfloor/northeast, /area/lv624/ground/barrens/north_east_barrens) "gu" = ( /obj/item/stack/cable_coil/random, /obj/item/explosive/grenade/high_explosive, /obj/item/explosive/grenade/high_explosive, /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "ip" = ( /obj/effect/decal/cleanable/blood, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "jo" = ( /obj/item/tool/shovel/spade, @@ -72,15 +59,11 @@ /area/lv624/ground/barrens/north_east_barrens) "jE" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "kp" = ( /obj/effect/landmark/crap_item, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "kP" = ( /obj/structure/girder/displaced, @@ -110,9 +93,7 @@ /area/lv624/lazarus/crashed_ship_containers) "rP" = ( /obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "tf" = ( /obj/structure/machinery/constructable_frame{ @@ -122,9 +103,7 @@ /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) "tv" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/ground/barrens/north_east_barrens) "uw" = ( /obj/structure/bed/chair{ @@ -134,9 +113,7 @@ /area/lv624/lazarus/crashed_ship_containers) "vA" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "vD" = ( /obj/structure/surface/rack, @@ -149,9 +126,7 @@ /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) "xg" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "xt" = ( /obj/item/ammo_magazine/rifle/m16, @@ -166,9 +141,7 @@ /area/lv624/lazarus/crashed_ship_containers) "yj" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "yJ" = ( /obj/structure/machinery/constructable_frame{ @@ -188,9 +161,7 @@ /area/lv624/ground/caves/central_caves) "BQ" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "Cn" = ( /obj/effect/landmark/objective_landmark/science, @@ -207,9 +178,7 @@ /area/lv624/lazarus/crashed_ship_containers) "DT" = ( /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "Fg" = ( /obj/item/tool/warning_cone, @@ -247,16 +216,12 @@ "Kz" = ( /obj/item/tool/crowbar, /obj/effect/landmark/objective_landmark/science, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "KG" = ( /obj/structure/bed/chair/dropship/pilot, /obj/item/clothing/head/helmet/marine/veteran/pmc/leader, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "LQ" = ( /obj/effect/landmark/corpsespawner/security, @@ -281,9 +246,7 @@ "RT" = ( /obj/item/explosive/grenade/high_explosive/pmc, /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "SJ" = ( /turf/template_noop, @@ -318,10 +281,7 @@ /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) "ZH" = ( -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, +/turf/open/floor/airless/asteroidfloor/northeast, /area/lv624/ground/barrens/north_east_barrens) (1,1,1) = {" diff --git a/maps/map_files/LV624/crashedship/10.swapped.dmm b/maps/map_files/LV624/crashedship/10.swapped.dmm index e8257934ce51..363872ddfa9f 100644 --- a/maps/map_files/LV624/crashedship/10.swapped.dmm +++ b/maps/map_files/LV624/crashedship/10.swapped.dmm @@ -17,9 +17,7 @@ /area/lv624/ground/barrens/north_east_barrens) "eC" = ( /obj/item/storage/firstaid/adv, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "fb" = ( /obj/structure/bed/chair{ @@ -34,9 +32,7 @@ "fx" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/rifle/m16/ap, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "fC" = ( /obj/effect/decal/cleanable/blood/oil, @@ -69,24 +65,18 @@ "mG" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "ng" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "pd" = ( /obj/item/ammo_magazine/rifle/m16, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "pg" = ( /obj/effect/alien/weeds/node, @@ -105,9 +95,7 @@ /area/lv624/lazarus/crashed_ship_containers) "qk" = ( /obj/effect/spawner/random/toolbox, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "qS" = ( /obj/effect/landmark/objective_landmark/medium, @@ -155,9 +143,7 @@ /area/lv624/lazarus/crashed_ship_containers) "At" = ( /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "AI" = ( /turf/open/gm/dirt, @@ -165,28 +151,20 @@ "AT" = ( /obj/item/ammo_magazine/rifle/m16, /obj/item/ammo_magazine/rifle/m16, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "BI" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "BW" = ( /obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "CI" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/ground/barrens/north_east_barrens) "Dq" = ( /turf/template_noop, @@ -194,16 +172,12 @@ "Ex" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/m16, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "EH" = ( /obj/item/ammo_magazine/rifle/m16/ap, /obj/item/ammo_magazine/rifle/m16/ap, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "Fb" = ( /turf/closed/shuttle{ @@ -221,9 +195,7 @@ /area/lv624/lazarus/crashed_ship_containers) "Io" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "IT" = ( /obj/structure/girder/displaced, @@ -234,30 +206,21 @@ "Jl" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "KY" = ( /obj/effect/landmark/crap_item, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "My" = ( -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, +/turf/open/floor/airless/asteroidfloor/northeast, /area/lv624/ground/barrens/north_east_barrens) "NQ" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) "Pa" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "Pp" = ( /obj/effect/landmark/crap_item, @@ -267,19 +230,14 @@ /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "QE" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_east_caves) "Sj" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, +/turf/open/floor/airless/asteroidfloor/northeast, /area/lv624/ground/barrens/north_east_barrens) "SS" = ( /obj/structure/foamed_metal, @@ -308,9 +266,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "WE" = ( /obj/item/explosive/grenade/high_explosive, diff --git a/maps/map_files/LV624/gym/20.pool.dmm b/maps/map_files/LV624/gym/20.pool.dmm index ab5a1afe46bb..e0f24e9fdfdd 100644 --- a/maps/map_files/LV624/gym/20.pool.dmm +++ b/maps/map_files/LV624/gym/20.pool.dmm @@ -4,10 +4,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) "bQ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "dw" = ( /obj/item/clothing/under/shorts/red, @@ -21,10 +18,7 @@ pixel_y = -8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "gL" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -33,10 +27,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "hb" = ( /obj/structure/machinery/light{ @@ -45,10 +36,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = 29 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "hX" = ( /obj/structure/filingcabinet/medical, @@ -75,17 +63,11 @@ /obj/item/clothing/under/swimsuit/red{ pixel_x = -7 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "kE" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "kY" = ( /obj/item/device/radio/intercom{ @@ -94,31 +76,19 @@ name = "General Listening Channel"; pixel_y = 30 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "li" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ls" = ( /obj/item/tool/soap, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "lB" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "ma" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -128,25 +98,16 @@ /area/lv624/ground/jungle/central_jungle) "oK" = ( /obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "re" = ( /obj/structure/closet/crate/secure/hydrosec, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "rI" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "sA" = ( /turf/closed/wall, @@ -157,16 +118,10 @@ name = "\improper Leisure Dome"; req_access_txt = "100" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "vq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "wj" = ( /turf/open/gm/dirt, @@ -196,10 +151,7 @@ /area/lv624/lazarus/fitness) "yP" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "yV" = ( /obj/structure/sign/safety/water{ @@ -208,43 +160,28 @@ }, /obj/structure/surface/table, /obj/item/storage/box/cups, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "zq" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "Be" = ( /obj/effect/decal/remains/human, /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ei" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Er" = ( /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "Ez" = ( /turf/open/floor, @@ -261,17 +198,11 @@ /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ga" = ( /obj/structure/prop/static_tank/water, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Gf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -284,17 +215,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "IA" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Jk" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -327,10 +252,7 @@ "Px" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Rf" = ( /obj/structure/closet/athletic_mixed, @@ -338,10 +260,7 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Rl" = ( /obj/item/clothing/under/shorts/red, @@ -349,17 +268,11 @@ /obj/item/clothing/mask/snorkel, /obj/item/clothing/mask/snorkel, /obj/item/clothing/mask/snorkel, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "SW" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Td" = ( /obj/structure/machinery/colony_floodlight, @@ -375,19 +288,13 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "UM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Vb" = ( /turf/open/gm/dirtgrassborder/south, @@ -400,10 +307,7 @@ /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/item/storage/firstaid/regular, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Wj" = ( /turf/open/gm/grass/grass1, diff --git a/maps/map_files/LV624/gym/30.alternate.dmm b/maps/map_files/LV624/gym/30.alternate.dmm index 466c996ef91d..f0e7ac35b806 100644 --- a/maps/map_files/LV624/gym/30.alternate.dmm +++ b/maps/map_files/LV624/gym/30.alternate.dmm @@ -6,10 +6,7 @@ name = "treadmill" }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "aG" = ( /obj/structure/window_frame/colony, @@ -23,10 +20,7 @@ pixel_y = 2 }, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ds" = ( /obj/structure/machinery/conveyor_switch{ @@ -41,18 +35,12 @@ pixel_x = -8; pixel_y = -4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ej" = ( /obj/structure/closet/crate/secure/hydrosec, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ek" = ( /obj/structure/surface/table/almayer, @@ -60,10 +48,7 @@ pixel_x = -5 }, /obj/effect/spawner/random/toy, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ez" = ( /obj/structure/surface/rack, @@ -73,24 +58,16 @@ pixel_x = -5; pixel_y = -9 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "eD" = ( /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "fr" = ( -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/lv624/lazarus/fitness) "fv" = ( /obj/effect/landmark/survivor_spawner, @@ -100,10 +77,7 @@ /turf/closed/wall, /area/lv624/lazarus/fitness) "hd" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "hm" = ( /obj/structure/machinery/conveyor{ @@ -115,17 +89,11 @@ pixel_x = 8; pixel_y = 7 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "hn" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "il" = ( /obj/item/clothing/under/shorts/red, @@ -139,18 +107,13 @@ pixel_y = -8 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "iM" = ( /obj/item/toy/beach_ball/holoball, /obj/effect/decal/warning_stripes, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/fitness) "iN" = ( /obj/structure/barricade/handrail, @@ -167,17 +130,11 @@ "kk" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "kv" = ( /obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "lq" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -191,23 +148,14 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "pV" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "rw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/north, /area/lv624/lazarus/fitness) "sd" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ @@ -216,19 +164,14 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "sx" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/fitness) "tD" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/fitness) "tY" = ( /turf/open/gm/dirt, @@ -249,10 +192,7 @@ "uV" = ( /obj/structure/bed/chair, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "uY" = ( /obj/structure/barricade/handrail{ @@ -268,10 +208,7 @@ id = "lv_gym_2"; name = "treadmill" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "vZ" = ( /obj/structure/flora/grass/tallgrass/jungle, @@ -279,10 +216,7 @@ /area/lv624/ground/jungle/central_jungle) "wA" = ( /obj/structure/bed/chair, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "wL" = ( /turf/open/gm/dirtgrassborder/south, @@ -291,10 +225,7 @@ /obj/structure/closet/boxinggloves, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "xT" = ( /obj/structure/surface/rack, @@ -304,18 +235,12 @@ pixel_y = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ah" = ( /obj/structure/closet/athletic_mixed, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Aq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -324,20 +249,14 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) "AE" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/northwest, /area/lv624/lazarus/fitness) "Bl" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/central_jungle) "Bm" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "BE" = ( /obj/structure/window_frame/colony, @@ -353,10 +272,7 @@ dir = 1 }, /obj/effect/landmark/corpsespawner/colonist/random/burst, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "CO" = ( /obj/structure/machinery/colony_floodlight, @@ -364,18 +280,12 @@ /area/lv624/ground/colony/south_medbay_road) "CZ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "DH" = ( /obj/structure/closet/lasertag/blue, /obj/item/tool/crowbar, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "DM" = ( /turf/open/gm/grass/grass1, @@ -385,16 +295,10 @@ dir = 4 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/west, /area/lv624/lazarus/fitness) "FD" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southeast, /area/lv624/lazarus/fitness) "Ge" = ( /obj/structure/barricade/handrail{ @@ -404,10 +308,7 @@ /area/lv624/lazarus/fitness) "Hn" = ( /obj/item/clothing/suit/redtag, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Hz" = ( /obj/structure/fence, @@ -416,17 +317,11 @@ "HF" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/o2, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ia" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "In" = ( /turf/open/floor, @@ -435,16 +330,10 @@ /obj/structure/holohoop{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/east, /area/lv624/lazarus/fitness) "Ix" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/southwest, /area/lv624/lazarus/fitness) "IL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -453,18 +342,12 @@ req_access_txt = "100" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "Js" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "JF" = ( /obj/structure/surface/rack, @@ -473,10 +356,7 @@ pixel_x = -6; pixel_y = 2 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "JN" = ( /obj/structure/filingcabinet/medical, @@ -485,10 +365,7 @@ /area/lv624/lazarus/fitness) "Kc" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "LB" = ( /obj/structure/fence, @@ -500,9 +377,7 @@ /area/lv624/ground/jungle/east_central_jungle) "Mn" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite, /area/lv624/lazarus/fitness) "Nt" = ( /turf/open/gm/grass/grass1, @@ -519,10 +394,7 @@ "Op" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Pb" = ( /obj/structure/barricade/handrail, @@ -534,10 +406,7 @@ /area/lv624/ground/colony/north_nexus_road) "PC" = ( /obj/item/tool/soap, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Qf" = ( /obj/structure/machinery/atm{ @@ -545,10 +414,7 @@ pixel_x = -30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Qh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -564,28 +430,19 @@ pixel_y = 30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Qw" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) "Sj" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ss" = ( /obj/effect/spawner/gibspawner/robot, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "SD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -594,49 +451,32 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) "To" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warnwhite" - }, +/turf/open/floor/warnwhite/northeast, /area/lv624/lazarus/fitness) "Tq" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Tv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "TS" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ur" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/fitness) "Vk" = ( /obj/structure/closet/lasertag/red, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Vs" = ( /obj/structure/machinery/conveyor{ @@ -644,10 +484,7 @@ id = "lv_gym_1"; name = "treadmill" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Wh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -661,17 +498,11 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Xu" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) (1,1,1) = {" diff --git a/maps/map_files/LV624/hydro/30.destroyed.dmm b/maps/map_files/LV624/hydro/30.destroyed.dmm index c3b3ddce6c63..d26d559b2fc3 100644 --- a/maps/map_files/LV624/hydro/30.destroyed.dmm +++ b/maps/map_files/LV624/hydro/30.destroyed.dmm @@ -2,36 +2,28 @@ "aO" = ( /obj/effect/landmark/crap_item, /obj/item/reagent_container/glass/watertank, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "bd" = ( /obj/item/stack/sheet/metal, /obj/item/explosive/mine/pmc/active{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "bk" = ( /obj/item/tool/extinguisher, /obj/effect/decal/cleanable/blood/tracks/footprints{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "bm" = ( /obj/item/stack/sheet/metal, /obj/effect/spawner/random/claymore/midchance{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "bM" = ( /obj/structure/fence, @@ -43,18 +35,14 @@ /area/lv624/lazarus/hydroponics) "cQ" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "dZ" = ( /obj/item/stack/sheet/metal, /obj/effect/spawner/random/claymore/lowchance{ dir = 8 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "eU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -74,24 +62,17 @@ armor_rad = 10; name = "damaged WY PMC gloves" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "fX" = ( /obj/item/device/analyzer/plant_analyzer, /obj/effect/spawner/random/claymore, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "ih" = ( /obj/item/clothing/gloves/botanic_leather, /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "it" = ( /obj/item/tool/hatchet{ @@ -99,9 +80,7 @@ pixel_y = 4 }, /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "jg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -109,9 +88,7 @@ /area/lv624/ground/jungle/north_jungle) "jy" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "jY" = ( /obj/item/reagent_container/spray/plantbgone{ @@ -123,9 +100,7 @@ /obj/effect/spawner/random/claymore/midchance{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "kg" = ( /obj/structure/window/framed/colony/reinforced, @@ -139,21 +114,15 @@ /obj/effect/decal/cleanable/blood/tracks/footprints{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "kD" = ( /obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "lm" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "lP" = ( /obj/item/stack/sheet/metal, @@ -178,18 +147,12 @@ icon_state = "scandinavian_head_m" }, /obj/item/robot_parts/arm/l_arm, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "np" = ( /obj/item/tool/weldingtool/simple, /obj/item/stack/sheet/wood, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "nJ" = ( /obj/item/stack/sheet/metal, @@ -200,9 +163,7 @@ /area/lv624/ground/colony/south_medbay_road) "ot" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "ou" = ( /turf/open/gm/dirt, @@ -212,9 +173,7 @@ /obj/effect/spawner/random/claymore/lowchance{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "se" = ( /obj/structure/fence, @@ -232,9 +191,7 @@ /obj/item/clothing/under/marine/veteran/pmc/leader{ pixel_x = -7 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "vm" = ( /obj/item/stack/sheet/wood{ @@ -248,9 +205,7 @@ pixel_x = -6; pixel_y = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "xa" = ( /obj/effect/decal/cleanable/blood, @@ -262,9 +217,7 @@ pixel_x = 6; pixel_y = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "xm" = ( /obj/item/stack/sheet/metal, @@ -277,9 +230,7 @@ pixel_x = -7; pixel_y = 9 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "xM" = ( /obj/structure/surface/rack, @@ -288,18 +239,14 @@ pixel_y = -3 }, /obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "ym" = ( /obj/item/tool/crowbar, /obj/effect/spawner/random/claymore/midchance{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "zj" = ( /obj/item/stack/folding_barricade, @@ -312,9 +259,7 @@ /area/lv624/lazarus/hydroponics) "zL" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "zS" = ( /obj/structure/window_frame/colony, @@ -333,9 +278,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "BL" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -346,16 +289,11 @@ /obj/item/clothing/suit/apron, /obj/item/tool/shovel, /obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Cq" = ( /obj/structure/girder, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "CG" = ( /obj/item/reagent_container/glass/fertilizer{ @@ -365,15 +303,11 @@ /obj/item/reagent_container/glass/fertilizer, /obj/item/stack/sheet/metal, /obj/effect/spawner/random/claymore/midchance, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Ed" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Fk" = ( /obj/item/clothing/head/helmet/marine/veteran/pmc{ @@ -384,9 +318,7 @@ /area/lv624/lazarus/hydroponics) "FJ" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Ha" = ( /obj/structure/barricade/deployable{ @@ -407,64 +339,46 @@ name = "scratched VP78 magazine (9mm)"; pixel_x = 6 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "IO" = ( /obj/item/device/analyzer/plant_analyzer, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Jc" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/blood/tracks/footprints{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "JE" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) "JK" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "JO" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "Km" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) "Lk" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "Lu" = ( /obj/structure/window_frame/colony, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "LQ" = ( /obj/item/stack/sheet/metal, /obj/effect/spawner/random/claymore/lowchance, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Mm" = ( /obj/effect/landmark/crap_item, @@ -479,25 +393,18 @@ /obj/item/ammo_magazine/rifle/nsg23, /obj/item/ammo_magazine/rifle/nsg23, /obj/item/ammo_magazine/rifle/nsg23, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "MT" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "MV" = ( /obj/item/stack/sheet/metal, /obj/effect/spawner/random/claymore/midchance{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "NO" = ( /obj/effect/landmark/crap_item, @@ -505,9 +412,7 @@ /area/lv624/lazarus/hydroponics) "On" = ( /obj/structure/window_frame/colony, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "OH" = ( /obj/structure/surface/rack, @@ -523,9 +428,7 @@ /obj/item/tool/minihoe{ pixel_y = -2 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "OI" = ( /obj/item/reagent_container/glass/fertilizer, @@ -535,32 +438,23 @@ "OK" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "OO" = ( /obj/item/ammo_magazine/rifle/nsg23/extended, /obj/effect/landmark/objective_landmark/medium, /obj/item/stack/sheet/wood, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "Pk" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "Px" = ( /obj/effect/decal/cleanable/blood/tracks/footprints{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Qd" = ( /obj/item/stack/folding_barricade, @@ -582,9 +476,7 @@ /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) "QR" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "RT" = ( /obj/item/clothing/shoes/veteran/pmc{ @@ -601,22 +493,15 @@ pixel_y = -10; slowdown = 0.5 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "TC" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "TL" = ( /obj/item/stack/sheet/metal, /obj/effect/spawner/random/claymore/midchance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "Ul" = ( /obj/structure/barricade/deployable{ @@ -627,9 +512,7 @@ }, /obj/item/weapon/gun/rifle/nsg23/no_lock, /obj/item/ammo_magazine/rifle/nsg23, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "UG" = ( /obj/effect/decal/cleanable/blood, @@ -637,18 +520,13 @@ dir = 4 }, /obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "Wg" = ( /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) "Xv" = ( -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "XA" = ( /turf/open/gm/grass/grass1, @@ -662,31 +540,22 @@ /obj/item/explosive/grenade/high_explosive/pmc{ pixel_x = 6 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "YV" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "Zm" = ( /obj/item/stack/sheet/metal, /obj/item/robot_parts/leg/l_leg, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "ZL" = ( /obj/item/tool/minihoe{ pixel_x = 1; pixel_y = -1 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) (1,1,1) = {" diff --git a/maps/map_files/LV624/maintemple/1.intact.dmm b/maps/map_files/LV624/maintemple/1.intact.dmm index ea69a6c4c787..d61a92500b89 100644 --- a/maps/map_files/LV624/maintemple/1.intact.dmm +++ b/maps/map_files/LV624/maintemple/1.intact.dmm @@ -20,10 +20,7 @@ dir = 4; name = "plasma power generator" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple/powered) "aI" = ( /obj/structure/surface/table/reinforced/prison{ @@ -55,10 +52,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple/powered) "aT" = ( /obj/structure/stairs/perspective{ @@ -70,10 +64,7 @@ /area/lv624/ground/caves/sand_temple) "bP" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple/powered) "bZ" = ( /obj/structure/surface/table/reinforced/prison{ @@ -108,10 +99,7 @@ amount = 30; pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple/powered) "dB" = ( /obj/structure/surface/table/reinforced/prison{ @@ -149,9 +137,7 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "dK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -170,10 +156,7 @@ /area/lv624/ground/caves/sand_temple) "dQ" = ( /obj/structure/machinery/autolathe/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple/powered) "dV" = ( /obj/structure/surface/table/reinforced/prison{ @@ -215,10 +198,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "ez" = ( /obj/structure/surface/table/reinforced/prison{ @@ -307,17 +287,11 @@ /obj/item/tool/surgery/bonegel/predatorbonegel, /obj/item/tool/surgery/bonesetter/predatorbonesetter, /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "fQ" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "fV" = ( /obj/structure/prop/brazier/torch, @@ -335,19 +309,14 @@ /obj/item/tank/oxygen/yellow{ pixel_x = -4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "gw" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) "gA" = ( /obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "gI" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ @@ -357,20 +326,14 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) "gL" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "gS" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "gY" = ( /obj/structure/stairs/perspective{ @@ -381,9 +344,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "gZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -421,16 +382,11 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "hD" = ( /obj/item/weapon/yautja/knife, -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" - }, +/turf/open/gm/dirtgrassborder/desert2, /area/lv624/ground/barrens/south_eastern_barrens) "hL" = ( /obj/structure/platform/mineral/sandstone/runed, @@ -457,10 +413,7 @@ /obj/item/weapon/twohanded/yautja/glaive/damaged{ name = "damaged war glaive" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "iw" = ( /obj/structure/stairs/perspective{ @@ -495,10 +448,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "iW" = ( /obj/structure/barricade/handrail/strata{ @@ -507,9 +457,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "ja" = ( /obj/structure/surface/table/reinforced/prison{ @@ -517,10 +465,7 @@ }, /obj/item/xeno_restraints, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "kb" = ( /obj/effect/decal/remains/xeno, @@ -532,10 +477,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "kO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -687,10 +629,7 @@ /obj/item/tool/surgery/hemostat/predatorhemostat, /obj/item/tool/surgery/retractor/predatorretractor, /obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "od" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -717,10 +656,7 @@ color = "#b29082"; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "pu" = ( /obj/structure/stairs/perspective{ @@ -728,9 +664,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "pX" = ( /obj/structure/stairs/perspective{ @@ -787,10 +721,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "rS" = ( /obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "rU" = ( /obj/effect/decal/remains/xeno{ @@ -816,10 +747,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "sM" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, @@ -840,10 +768,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "ts" = ( /obj/structure/stairs/perspective{ @@ -899,10 +824,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "uE" = ( /turf/open/floor/sandstone/runed, @@ -950,10 +872,7 @@ color = "#6b675e"; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "wf" = ( /obj/structure/stairs/perspective{ @@ -993,19 +912,14 @@ icon_state = "yaut"; name = "alien sarcophagus" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "wZ" = ( /obj/effect/decal/cleanable/blood{ basecolor = "#20d450"; color = "#20d450" }, -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" - }, +/turf/open/gm/dirtgrassborder/desert0, /area/lv624/ground/barrens/south_eastern_barrens) "xx" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, @@ -1153,10 +1067,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "BY" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1182,9 +1093,7 @@ basecolor = "#20d450"; color = "#20d450" }, -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" - }, +/turf/open/gm/dirtgrassborder/desert3, /area/lv624/ground/barrens/south_eastern_barrens) "Dd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1196,10 +1105,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "DG" = ( /obj/structure/barricade/handrail/strata{ @@ -1229,10 +1135,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "DX" = ( /obj/structure/stairs/perspective{ @@ -1282,22 +1185,14 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "FS" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "Ge" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Gt" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -1321,10 +1216,7 @@ /area/lv624/ground/caves/sand_temple) "He" = ( /obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "Hl" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1381,9 +1273,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "IR" = ( /obj/structure/prop/brazier/torch, @@ -1397,9 +1287,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) "Jc" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "Je" = ( /obj/item/weapon/harpoon/yautja{ @@ -1436,9 +1324,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "JZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -1468,12 +1354,6 @@ /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = -6 - }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = 4 - }, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) @@ -1531,17 +1411,11 @@ /obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Mx" = ( /obj/structure/prop/brazier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "MB" = ( /obj/structure/bed/chair/comfy/black{ @@ -1564,9 +1438,7 @@ /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "MK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirtgrassborder/desert_dug, /area/lv624/ground/barrens/south_eastern_barrens) "Nt" = ( /obj/structure/stairs/perspective{ @@ -1574,10 +1446,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "ND" = ( /obj/structure/stairs/perspective{ @@ -1588,10 +1457,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "Od" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1603,10 +1469,7 @@ /obj/item/stack/medical/advanced/ointment/predator{ pixel_x = 5 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "OC" = ( /turf/closed/wall/mineral/sandstone/runed, @@ -1616,15 +1479,11 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "OP" = ( /obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "Ps" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -1658,10 +1517,7 @@ /obj/item/clothing/shoes/yautja/hunter{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple/powered) "PO" = ( /obj/item/weapon/harpoon/yautja{ @@ -1701,10 +1557,7 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Rh" = ( /obj/structure/prop/brazier/torch, @@ -1778,22 +1631,14 @@ pixel_y = 7 }, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple/powered) "TY" = ( /obj/structure/machinery/optable, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "UK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" - }, +/turf/open/gm/dirtgrassborder/desert, /area/lv624/ground/barrens/south_eastern_barrens) "UP" = ( /obj/structure/stairs/perspective{ @@ -1803,9 +1648,7 @@ /area/lv624/ground/caves/sand_temple) "UU" = ( /obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "UX" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1828,10 +1671,7 @@ /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "Ws" = ( /obj/structure/barricade/handrail/strata{ @@ -1840,9 +1680,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "Wv" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1894,10 +1732,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "YT" = ( /obj/structure/stairs/perspective{ @@ -1922,9 +1757,7 @@ /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) "ZG" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" - }, +/turf/open/gm/dirtgrassborder/desert1, /area/lv624/ground/barrens/south_eastern_barrens) "ZX" = ( /turf/template_noop, diff --git a/maps/map_files/LV624/maintemple/2.flooded.dmm b/maps/map_files/LV624/maintemple/2.flooded.dmm index 8643676807fc..725a5b22aa13 100644 --- a/maps/map_files/LV624/maintemple/2.flooded.dmm +++ b/maps/map_files/LV624/maintemple/2.flooded.dmm @@ -59,10 +59,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "bP" = ( /obj/structure/flora/jungle/vines/light_3, @@ -87,10 +84,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "dA" = ( /obj/structure/flora/jungle/vines/heavy, @@ -131,9 +125,7 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "dK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -214,9 +206,7 @@ /area/lv624/ground/caves/sand_temple) "gA" = ( /obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "gI" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ @@ -226,10 +216,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) "gL" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "gS" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -246,9 +233,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "gZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -267,9 +252,7 @@ /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/caves/sand_temple) "hD" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" - }, +/turf/open/gm/dirtgrassborder/desert2, /area/lv624/ground/barrens/south_eastern_barrens) "hO" = ( /obj/structure/bed/chair/comfy/black{ @@ -291,10 +274,7 @@ /obj/item/weapon/twohanded/yautja/glaive/damaged{ name = "damaged war glaive" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "iw" = ( /obj/structure/stairs/perspective{ @@ -305,10 +285,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "iM" = ( /obj/structure/flora/jungle/vines/heavy, @@ -325,9 +302,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "ja" = ( /obj/structure/flora/jungle/vines/light_3, @@ -428,10 +403,7 @@ /area/lv624/ground/caves/sand_temple) "mF" = ( /obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "mI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -491,10 +463,7 @@ /area/lv624/ground/caves/sand_temple) "ow" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "oC" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -519,9 +488,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "py" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -544,10 +511,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "qf" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -593,10 +557,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "rL" = ( /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "rU" = ( /obj/effect/decal/remains/xeno{ @@ -610,10 +571,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "sM" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, @@ -631,10 +589,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "tn" = ( /obj/structure/surface/table/reinforced/prison{ @@ -673,10 +628,7 @@ name = "alien sarcophagus" }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "uy" = ( /obj/structure/showcase{ @@ -697,10 +649,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "uE" = ( /turf/open/floor/sandstone/runed, @@ -727,10 +676,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "vl" = ( /obj/item/tool/kitchen/utensil/spoon, @@ -765,10 +711,7 @@ color = "#6b675e"; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "wf" = ( /obj/structure/stairs/perspective{ @@ -838,18 +781,13 @@ icon_state = "yaut"; name = "alien sarcophagus" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "wU" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) "wZ" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" - }, +/turf/open/gm/dirtgrassborder/desert0, /area/lv624/ground/barrens/south_eastern_barrens) "xp" = ( /turf/open/gm/coast/beachcorner/south_west, @@ -1027,10 +965,7 @@ /obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "Ci" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -1050,9 +985,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "Cr" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" - }, +/turf/open/gm/dirtgrassborder/desert3, /area/lv624/ground/barrens/south_eastern_barrens) "Dg" = ( /obj/structure/stairs/perspective{ @@ -1060,10 +993,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Dj" = ( /turf/open/gm/coast/beachcorner2/south_west, @@ -1107,10 +1037,7 @@ /obj/item/clothing/mask/yautja_flavor/map_random{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "DZ" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -1131,10 +1058,7 @@ dir = 4; health = 80 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "Es" = ( /obj/structure/flora/jungle/vines/light_3, @@ -1149,10 +1073,7 @@ /area/lv624/ground/caves/sand_temple) "EL" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "EM" = ( /obj/structure/showcase{ @@ -1183,10 +1104,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Ff" = ( /obj/item/weapon/twohanded/yautja/spear, @@ -1216,10 +1134,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/sand_temple) "Ge" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Gt" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -1252,10 +1167,7 @@ /area/lv624/ground/caves/sand_temple) "He" = ( /obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "Hk" = ( /obj/structure/flora/jungle/vines/heavy, @@ -1331,9 +1243,7 @@ /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "IZ" = ( /obj/structure/barricade/handrail/strata{ @@ -1343,9 +1253,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) "Jc" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "Je" = ( /obj/item/weapon/harpoon/yautja{ @@ -1398,9 +1306,7 @@ /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "JN" = ( /obj/structure/showcase{ @@ -1417,10 +1323,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "JZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -1457,10 +1360,7 @@ desc = "A bizarre alien device used for trapping and killing prey."; name = "Alien Mine" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "KL" = ( /turf/open/gm/dirtgrassborder/east, @@ -1526,10 +1426,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Mq" = ( /obj/structure/prop/brazier/torch, @@ -1542,9 +1439,7 @@ /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) "MK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirtgrassborder/desert_dug, /area/lv624/ground/barrens/south_eastern_barrens) "MX" = ( /obj/structure/flora/jungle/vines/light_3, @@ -1556,10 +1451,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "ND" = ( /obj/structure/stairs/perspective{ @@ -1571,10 +1463,7 @@ /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "OC" = ( /turf/closed/wall/mineral/sandstone/runed, @@ -1584,15 +1473,11 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "OP" = ( /obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "OR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1669,10 +1554,7 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "QX" = ( /obj/structure/bed/chair/comfy/black{ @@ -1710,10 +1592,7 @@ icon_state = "p_stair_full" }, /obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "SK" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -1770,9 +1649,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) "UK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" - }, +/turf/open/gm/dirtgrassborder/desert, /area/lv624/ground/barrens/south_eastern_barrens) "UQ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, @@ -1801,9 +1678,7 @@ /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "Wv" = ( /obj/item/reagent_container/food/snacks/stew, @@ -1824,10 +1699,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "Xr" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "XQ" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1871,10 +1743,7 @@ /obj/item/clothing/mask/yautja_flavor/map_random{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "YT" = ( /obj/structure/stairs/perspective{ @@ -1898,9 +1767,7 @@ /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) "ZG" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" - }, +/turf/open/gm/dirtgrassborder/desert1, /area/lv624/ground/barrens/south_eastern_barrens) "ZX" = ( /turf/template_noop, diff --git a/maps/map_files/LV624/medbay/10.destroyed.dmm b/maps/map_files/LV624/medbay/10.destroyed.dmm index b33c4c28d8c2..a676d0ff68bd 100644 --- a/maps/map_files/LV624/medbay/10.destroyed.dmm +++ b/maps/map_files/LV624/medbay/10.destroyed.dmm @@ -1,59 +1,42 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "am" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "aw" = ( /obj/item/clothing/under/colonist, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "aO" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/medbay) "bk" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "cQ" = ( /obj/structure/machinery/sleep_console, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "fX" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/medbay) "gp" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "hW" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "ih" = ( /obj/structure/machinery/medical_pod/bodyscanner, @@ -63,36 +46,26 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "iq" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = 2 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "it" = ( /obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "jg" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "jW" = ( /obj/item/storage/firstaid/toxin, /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "jY" = ( /obj/structure/flora/jungle/planttop1, @@ -107,9 +80,7 @@ /obj/item/clothing/glasses/hud/health, /obj/effect/landmark/crap_item, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "kD" = ( /obj/structure/flora/jungle/planttop1, @@ -117,9 +88,7 @@ /area/lv624/ground/colony/south_medbay_road) "lk" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "lD" = ( /obj/structure/surface/table, @@ -130,15 +99,11 @@ phone_category = "Lazarus Landing"; phone_id = "Medbay" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "mz" = ( /obj/structure/machinery/light, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "mS" = ( /obj/item/device/radio/intercom{ @@ -147,15 +112,10 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "nz" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/medbay) "nG" = ( /obj/structure/fence, @@ -165,16 +125,11 @@ /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) "ok" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "ot" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/medbay) "pp" = ( /obj/structure/closet/wardrobe, @@ -182,9 +137,7 @@ dir = 8 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "qe" = ( /obj/structure/surface/table, @@ -195,15 +148,11 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "rL" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "rZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -217,22 +166,14 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/medbay) "uV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/medbay) "vm" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "xe" = ( /obj/structure/fence, @@ -245,9 +186,7 @@ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "xM" = ( /turf/open/gm/dirtgrassborder/north, @@ -266,32 +205,23 @@ /area/lv624/ground/colony/south_medbay_road) "zl" = ( /obj/item/reagent_container/hypospray, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "zy" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "zD" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "zL" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/pistol/holdout, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/medbay) "zS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -307,44 +237,30 @@ "BL" = ( /obj/structure/window_frame/colony, /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "Cq" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "Df" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "Dk" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) "Ed" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) "EZ" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "Fk" = ( /turf/closed/wall, @@ -355,16 +271,12 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "Gh" = ( /obj/effect/landmark/crap_item, /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "Ha" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -372,29 +284,20 @@ /area/lv624/ground/jungle/north_jungle) "Il" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "Iy" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "IO" = ( /obj/structure/machinery/iv_drip, /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) "Jc" = ( /obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "JE" = ( /turf/open/gm/grass/grass1, @@ -404,22 +307,15 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "JO" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/medbay) "JY" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) "Km" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -429,15 +325,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "LX" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "MT" = ( /obj/item/device/radio/intercom{ @@ -446,24 +338,18 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "MW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "Ny" = ( /obj/structure/window_frame/colony, /obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "NO" = ( /obj/structure/surface/table, @@ -477,9 +363,7 @@ }, /obj/item/storage/belt/medical/full, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "Os" = ( /obj/structure/surface/table, @@ -487,117 +371,83 @@ pixel_y = 4 }, /obj/item/tool/pen, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "OK" = ( /obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "OO" = ( /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "Pd" = ( /obj/item/trash/cigbutt, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) "Pk" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "Px" = ( /obj/structure/surface/table, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "PE" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) "Qd" = ( /turf/open/floor, /area/lv624/lazarus/medbay) "QR" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "RO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; name = "\improper Medical Bay" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "RT" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) "Sz" = ( /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "TC" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "Ul" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "Uq" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "UG" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "UH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "Xv" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "XA" = ( /turf/open/gm/grass/grass1, @@ -606,14 +456,10 @@ /turf/closed/wall/r_wall, /area/lv624/lazarus/medbay) "YJ" = ( -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "YV" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) (1,1,1) = {" diff --git a/maps/map_files/LV624/medbay/30.larvasurgery.dmm b/maps/map_files/LV624/medbay/30.larvasurgery.dmm index 4f0bf7a041ec..f03f922bf828 100644 --- a/maps/map_files/LV624/medbay/30.larvasurgery.dmm +++ b/maps/map_files/LV624/medbay/30.larvasurgery.dmm @@ -14,18 +14,14 @@ /area/lv624/ground/jungle/north_jungle) "ai" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aj" = ( /obj/structure/machinery/sleep_console, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "al" = ( /obj/structure/flora/jungle/planttop1, @@ -36,9 +32,7 @@ /obj/item/clothing/glasses/hud/health, /obj/effect/landmark/crap_item, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "ao" = ( /obj/structure/surface/table, @@ -52,10 +46,7 @@ }, /obj/item/storage/belt/medical/full, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "ap" = ( /obj/structure/machinery/medical_pod/bodyscanner, @@ -65,20 +56,13 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aq" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "ar" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "as" = ( /obj/structure/machinery/light{ @@ -86,83 +70,58 @@ }, /obj/effect/decal/cleanable/blood, /obj/item/storage/surgical_tray, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/medbay) "at" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "au" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) "av" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "aw" = ( /obj/item/reagent_container/hypospray, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "az" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "aA" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "aB" = ( /obj/item/reagent_container/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/medbay) "aC" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aI" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aJ" = ( /obj/structure/machinery/bioprinter, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aO" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "aP" = ( /obj/item/device/radio/intercom{ @@ -171,97 +130,65 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "aU" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "aX" = ( /turf/open/floor, /area/lv624/lazarus/medbay) "aY" = ( /obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "bb" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "bc" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; name = "\improper Medical Bay" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "bg" = ( -/turf/open/floor{ - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner, /area/lv624/lazarus/medbay) "bi" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/north, /area/lv624/lazarus/medbay) "bk" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "bo" = ( /obj/structure/window_frame/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "bp" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "bq" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "bs" = ( /obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "bu" = ( /obj/item/tool/crowbar, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "bw" = ( /obj/structure/fence, @@ -269,16 +196,12 @@ /area/lv624/ground/colony/south_medbay_road) "bx" = ( /obj/item/trash/plate, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "by" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "bA" = ( /obj/structure/surface/table, @@ -286,16 +209,11 @@ pixel_y = 4 }, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "bB" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/west, /area/lv624/lazarus/medbay) "bE" = ( /obj/structure/fence, @@ -314,49 +232,33 @@ /area/lv624/ground/colony/south_medbay_road) "bN" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/medbay) "io" = ( /obj/item/stack/medical/ointment, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "mA" = ( /obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "pc" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "qr" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "qC" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/medbay) "qK" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -368,38 +270,26 @@ /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "tr" = ( /obj/item/storage/firstaid/toxin, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/medbay) "us" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "uD" = ( /obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "vC" = ( /obj/item/frame/table, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "we" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -410,19 +300,14 @@ /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) "yd" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) "zE" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) "zF" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "zL" = ( /obj/structure/flora/jungle/planttop1, @@ -430,16 +315,12 @@ /area/lv624/ground/colony/south_medbay_road) "AO" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "CZ" = ( /obj/item/bedsheet/medical, /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "DR" = ( /obj/structure/surface/table, @@ -447,10 +328,7 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/medbay) "En" = ( /obj/structure/surface/table, @@ -461,9 +339,7 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "Es" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -477,10 +353,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "JK" = ( /obj/structure/surface/table, @@ -489,16 +362,11 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "Le" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) "LQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -520,58 +388,40 @@ phone_category = "Lazarus Landing"; phone_id = "Medbay" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "Qu" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "QG" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = 2 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "QQ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) "TK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "Vq" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) "VI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "YV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/west, /area/lv624/lazarus/medbay) (1,1,1) = {" diff --git a/maps/map_files/LV624/science/10.yautja.dmm b/maps/map_files/LV624/science/10.yautja.dmm index 3d70df608c1f..8b44093643e7 100644 --- a/maps/map_files/LV624/science/10.yautja.dmm +++ b/maps/map_files/LV624/science/10.yautja.dmm @@ -25,9 +25,7 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "ae" = ( /turf/open/gm/dirt, @@ -52,21 +50,13 @@ /obj/structure/surface/table, /obj/effect/landmark/crap_item, /obj/item/weapon/yautja/combistick, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ak" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "al" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "an" = ( /obj/structure/fence, @@ -86,10 +76,7 @@ /obj/structure/surface/table, /obj/item/reagent_container/hypospray/autoinjector/yautja, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aq" = ( /obj/structure/surface/table, @@ -99,10 +86,7 @@ /obj/item/tool/surgery/retractor/predatorretractor, /obj/item/tool/surgery/scalpel/predatorscalpel, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ar" = ( /turf/closed/wall, @@ -111,26 +95,17 @@ /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "at" = ( /obj/structure/surface/table, /obj/item/clipboard, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "au" = ( /obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "av" = ( /turf/open/gm/grass/grass1, @@ -138,45 +113,30 @@ "aw" = ( /obj/structure/machinery/optable, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ax" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ay" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "az" = ( /obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aA" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aC" = ( /obj/structure/machinery/light{ @@ -188,34 +148,22 @@ phone_id = "Research Dome"; pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aD" = ( /obj/structure/surface/rack{ layer = 2.5 }, /obj/item/clothing/glasses/regular, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aE" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aF" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aG" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -223,10 +171,7 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aH" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -234,9 +179,7 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aJ" = ( /obj/structure/machinery/light{ @@ -251,9 +194,7 @@ /obj/item/paper/research_notes, /obj/item/prop/alien/hugger, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aK" = ( /obj/structure/machinery/door_control{ @@ -261,9 +202,7 @@ name = "Science Wing Lockdown"; pixel_x = 25 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aL" = ( /obj/structure/machinery/light/small{ @@ -271,20 +210,14 @@ }, /obj/structure/surface/table, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aM" = ( /obj/structure/surface/table, /obj/structure/machinery/cell_charger, /obj/item/tool/crowbar, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aN" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -297,32 +230,24 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aO" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aP" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aQ" = ( /obj/item/clothing/glasses/regular, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aS" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -331,31 +256,22 @@ layer = 3.3; name = "\improper Science Wing Blast Door" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aT" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aW" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "aX" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "aY" = ( /obj/structure/machinery/shower{ @@ -364,41 +280,27 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "aZ" = ( /obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ba" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bb" = ( /obj/structure/surface/table, /obj/item/weapon/yautja/scythe, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bd" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "be" = ( /obj/structure/sink{ @@ -407,19 +309,14 @@ pixel_x = 11 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "bf" = ( /obj/item/storage/box/beakers, /obj/structure/surface/table, /obj/structure/sign/safety/biohazard, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bg" = ( /turf/open/gm/grass/grass1, @@ -431,124 +328,82 @@ /obj/structure/surface/table, /obj/item/weapon/yautja/knife, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bj" = ( /obj/structure/surface/table, /obj/item/reagent_container/hypospray/autoinjector/yautja, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bk" = ( /obj/structure/surface/table, /obj/item/explosive/grenade/spawnergrenade/smartdisc, /obj/item/explosive/grenade/spawnergrenade/smartdisc, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ec" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "gd" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "gM" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "rg" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "vn" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "zm" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "CC" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "FO" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "Hj" = ( /obj/effect/landmark/crap_item, /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "Lo" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "LE" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "Np" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "Zw" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) (1,1,1) = {" diff --git a/maps/map_files/LV624/science/40.fullylocked.dmm b/maps/map_files/LV624/science/40.fullylocked.dmm index ae7fffe8efd9..9dbf737c1b11 100644 --- a/maps/map_files/LV624/science/40.fullylocked.dmm +++ b/maps/map_files/LV624/science/40.fullylocked.dmm @@ -25,9 +25,7 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "ae" = ( /turf/open/gm/dirt, @@ -50,22 +48,14 @@ /area/lv624/lazarus/research) "aj" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ak" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "al" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "an" = ( /obj/structure/fence, @@ -83,41 +73,26 @@ /area/lv624/lazarus/research) "ap" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aq" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ar" = ( /obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "as" = ( /obj/structure/machinery/optable, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "at" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "au" = ( /turf/closed/wall, @@ -126,26 +101,17 @@ /obj/structure/surface/table, /obj/item/clipboard, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aw" = ( /obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "ax" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) "ay" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "az" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -153,9 +119,7 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aA" = ( /obj/structure/machinery/door_control{ @@ -163,37 +127,27 @@ name = "Science Wing Lockdown"; pixel_x = 25 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aB" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aC" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aD" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aF" = ( /obj/structure/surface/table, @@ -202,20 +156,14 @@ }, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aG" = ( /obj/structure/surface/rack{ layer = 2.5 }, /obj/item/clothing/glasses/regular, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aI" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ @@ -224,24 +172,15 @@ layer = 3.3; name = "\improper Science Wing Blast Door" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aJ" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aK" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aL" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -249,18 +188,13 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aM" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aO" = ( /obj/structure/machinery/shower{ @@ -269,19 +203,14 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "aP" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/xenoautopsy/jar_shelf, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aQ" = ( /obj/structure/machinery/light{ @@ -295,9 +224,7 @@ }, /obj/item/storage/fancy/vials/random, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aR" = ( /obj/structure/sink{ @@ -305,28 +232,20 @@ icon_state = "sink"; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "aS" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aT" = ( /obj/structure/surface/table, /obj/structure/machinery/cell_charger, /obj/item/tool/crowbar, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "aU" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ @@ -339,71 +258,48 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "aV" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "bb" = ( /obj/item/clothing/glasses/regular, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "bm" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "bn" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bp" = ( /obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bq" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bx" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bz" = ( /obj/item/storage/box/beakers, /obj/structure/surface/table, /obj/structure/sign/safety/biohazard, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "bE" = ( /turf/open/gm/grass/grass1, @@ -413,9 +309,7 @@ /area/lv624/ground/jungle/central_jungle) "ky" = ( /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "oe" = ( /obj/structure/transmitter/colony_net{ @@ -423,70 +317,46 @@ phone_id = "Research Dome"; pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "qs" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "wY" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) "DC" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "Fm" = ( /obj/structure/machinery/power/apc/nocharge{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "Jv" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "Kl" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) "Mu" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) "Tz" = ( /obj/structure/surface/table, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) (1,1,1) = {" diff --git a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm index 834d594eff5e..aa5e4df27f59 100644 --- a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm +++ b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm @@ -1,15 +1,9 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) "c" = ( -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) "d" = ( /turf/open/floor, @@ -20,10 +14,7 @@ /area/lv624/lazarus/landing_zones/lz1) "g" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) "j" = ( /obj/effect/decal/cleanable/blood/tracks/footprints{ @@ -32,10 +23,7 @@ /obj/effect/decal/cleanable/blood/tracks/footprints{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) "k" = ( /obj/structure/machinery/bot/mulebot{ @@ -44,17 +32,11 @@ health = 1; on = 0 }, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) "m" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "o" = ( /obj/item/device/radio/intercom{ @@ -63,29 +45,18 @@ name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz1) "p" = ( -/turf/open/floor{ - icon_state = "warning" - }, +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz1) "t" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "C" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "F" = ( /obj/vehicle/train/cargo/trolley, @@ -93,22 +64,13 @@ /area/lv624/lazarus/landing_zones/lz1) "K" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "L" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "O" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, +/turf/open/floor/loadingarea/north, /area/lv624/lazarus/landing_zones/lz1) "P" = ( /obj/vehicle/train/cargo/engine, @@ -116,24 +78,15 @@ /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) "R" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warningcorner" - }, +/turf/open/floor/warningcorner/east, /area/lv624/lazarus/landing_zones/lz1) "T" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "U" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) "X" = ( /obj/structure/machinery/bot/mulebot{ @@ -143,10 +96,7 @@ on = 0 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) (1,1,1) = {" diff --git a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm index 8b09597980a6..ab33751f89e9 100644 --- a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm +++ b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm @@ -1,21 +1,15 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "ab" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "ac" = ( -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "ad" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -24,17 +18,13 @@ /turf/open/floor/grass, /area/lv624/lazarus/main_hall) "ae" = ( -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) "af" = ( /obj/item/stack/sheet/metal, /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "ag" = ( /obj/structure/flora/pottedplant, @@ -44,9 +34,7 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "ah" = ( /obj/structure/machinery/vending/snack, @@ -55,37 +43,26 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/main_hall) "ai" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "aj" = ( /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "ak" = ( /obj/item/frame/table, /obj/item/ammo_magazine/smg/mp27, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "al" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "am" = ( /obj/effect/landmark/good_item, @@ -93,57 +70,43 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "an" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "ap" = ( /obj/item/weapon/twohanded/fireaxe, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aq" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) "ar" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged3" - }, +/turf/open/floor/damaged3, /area/lv624/lazarus/main_hall) "as" = ( /obj/item/limb/arm/l_arm, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "at" = ( /obj/effect/decal/cleanable/vomit, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "au" = ( /obj/structure/surface/table{ @@ -151,17 +114,13 @@ flipped = 1 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "av" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "aw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -169,31 +128,23 @@ /obj/item/ammo_casing, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "ax" = ( /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "ay" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "az" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "aA" = ( /obj/structure/barricade/wooden{ @@ -201,17 +152,13 @@ }, /obj/structure/barricade/wooden, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aB" = ( /obj/structure/flora/pottedplant, /obj/structure/barricade/wooden, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aC" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -219,9 +166,7 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "aD" = ( /obj/effect/landmark/corpsespawner/engineer, @@ -231,9 +176,7 @@ /obj/item/trash/chips, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aF" = ( /obj/item/limb/foot/r_foot, @@ -243,9 +186,7 @@ }, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aG" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -254,26 +195,20 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aH" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/frame/table, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) "aI" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/frame/table, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aJ" = ( /obj/item/limb/hand/r_hand, @@ -283,68 +218,50 @@ }, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aK" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aL" = ( -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "aM" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "aN" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "aO" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aP" = ( /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aQ" = ( /obj/item/weapon/gun/smg/mp27, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged3" - }, +/turf/open/floor/damaged3, /area/lv624/lazarus/main_hall) "aR" = ( /obj/item/limb/foot/r_foot, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) "aS" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -357,38 +274,28 @@ /obj/item/ammo_magazine/smg/mp27, /obj/item/ammo_magazine/smg/mp27, /obj/item/ammo_magazine/smg/mp27, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/lv624/lazarus/main_hall) "aU" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) "aV" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aW" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "aX" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/gibs, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "aY" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -412,50 +319,37 @@ /obj/structure/barricade/metal{ dir = 4 }, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "bb" = ( /obj/item/frame/table, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "bc" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/surface/table{ flipped = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bd" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "be" = ( /obj/item/stack/barbed_wire, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "bf" = ( /obj/structure/barricade/metal{ dir = 4 }, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "bg" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -470,25 +364,18 @@ /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bi" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "bj" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/lv624/lazarus/main_hall) "bk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -498,15 +385,10 @@ /area/lv624/lazarus/main_hall) "bl" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/lv624/lazarus/main_hall) "bm" = ( -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "bn" = ( /obj/structure/pipes/standard/simple/hidden/cyan, @@ -515,9 +397,7 @@ /area/lv624/lazarus/main_hall) "bo" = ( /obj/item/stack/barbed_wire, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "bp" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -525,16 +405,11 @@ /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bq" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) "br" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -547,44 +422,32 @@ /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bs" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "bt" = ( /obj/item/weapon/gun/smg/mp27, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bu" = ( /obj/item/stack/barbed_wire, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "bv" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "bw" = ( /obj/structure/barricade/metal{ @@ -592,27 +455,18 @@ }, /obj/effect/decal/cleanable/blood/gibs, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "bx" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/lv624/lazarus/main_hall) "by" = ( /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/main_hall) "bz" = ( /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "bA" = ( /obj/item/tool/crowbar, @@ -622,10 +476,7 @@ flipped = 1 }, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bB" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -633,9 +484,7 @@ /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "bC" = ( /obj/effect/decal/cleanable/blood{ @@ -645,9 +494,7 @@ /obj/item/limb/hand/l_hand, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "bD" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -655,9 +502,7 @@ /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "bE" = ( /obj/effect/landmark/corpsespawner/chef, @@ -666,33 +511,23 @@ flipped = 1 }, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bF" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "bG" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) "bH" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) "bI" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -700,9 +535,7 @@ /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) "bJ" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -711,15 +544,10 @@ }, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "bK" = ( -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) "bL" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -744,17 +572,12 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/main_hall) "bO" = ( /obj/effect/landmark/good_item, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "bP" = ( /obj/effect/decal/cleanable/blood/splatter, @@ -764,40 +587,30 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "bQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "bR" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_magazine/smg/mp27, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "bS" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "bT" = ( /obj/item/weapon/gun/smg/mp27, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) "bU" = ( /obj/item/trash/raisins, @@ -805,61 +618,42 @@ dir = 8 }, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "bV" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/lv624/lazarus/main_hall) "bW" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) "bX" = ( /obj/effect/landmark/good_item, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "zt" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "zv" = ( /obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "BB" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "Cw" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/lv624/lazarus/main_hall) "Cy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/lv624/lazarus/main_hall) "DY" = ( /turf/closed/wall, @@ -874,10 +668,7 @@ icon_state = "door_open"; name = "\improper Nexus Cargo Storage" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) "Fz" = ( /obj/structure/window/framed/colony/reinforced, @@ -893,60 +684,43 @@ /area/lv624/lazarus/chapel) "He" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/main_hall) "Hf" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light/spot{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "HH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Nexus Dome Chapel" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/chapel) "HI" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/chapel) "HJ" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "Ie" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "Ii" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "Il" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "Ir" = ( /obj/structure/machinery/atm{ @@ -956,34 +730,20 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "IY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/west, /area/lv624/lazarus/main_hall) "Jf" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) "JH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/lv624/lazarus/main_hall) "JK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/main_hall) "KQ" = ( /obj/structure/window/framed/colony/reinforced, @@ -996,39 +756,27 @@ /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, /obj/item/tool/mop, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "Lp" = ( /turf/closed/wall, /area/lv624/lazarus/canteen) "Lq" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/canteen) "Me" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/main_hall) "Mf" = ( /obj/structure/flora/pottedplant, /obj/structure/machinery/light/spot, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "Mi" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/main_hall) "Nk" = ( /turf/closed/wall, @@ -1042,9 +790,7 @@ /area/lv624/lazarus/security) "NU" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/kitchen) "OK" = ( /turf/template_noop, @@ -1058,10 +804,7 @@ /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Nexus Dome Canteen" }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +/turf/open/floor/barber/west, /area/lv624/lazarus/kitchen) (1,1,1) = {" diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm index 090ad40084f7..177ecbd6e450 100644 --- a/maps/map_files/LV624/standalone/clfship.dmm +++ b/maps/map_files/LV624/standalone/clfship.dmm @@ -26,10 +26,7 @@ id = "clf_umbilical_1"; name = "\improper Umbillical Airlock" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "aO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -44,10 +41,7 @@ /area/lv624/ground/caves/south_west_caves) "bc" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/lv624/lazarus/crashed_ship) "bf" = ( /obj/structure/surface/rack, @@ -55,10 +49,7 @@ /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/lv624/lazarus/crashed_ship) "by" = ( /turf/closed/wall/rock/brown, @@ -68,15 +59,10 @@ /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) "bL" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "bP" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/crashed_ship) "bQ" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ @@ -86,10 +72,6 @@ /obj/item/ammo_casing/shell{ icon_state = "casing_7_1" }, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 1; - faction_group = list("CLF") - }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "ca" = ( @@ -103,18 +85,14 @@ pixel_x = 3; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/lv624/lazarus/crashed_ship) "dt" = ( /obj/structure/barricade/metal/wired{ dir = 4; icon_state = "metal_3" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "dN" = ( /turf/open/floor/plating, @@ -148,9 +126,7 @@ /area/lv624/lazarus/crashed_ship) "eY" = ( /obj/item/tool/shovel/spade, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/ground/caves/south_west_caves) "fe" = ( /obj/item/weapon/gun/rifle/m16, @@ -159,16 +135,11 @@ pixel_y = 6 }, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/lv624/lazarus/crashed_ship) "ft" = ( /obj/item/stool, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "fA" = ( /obj/structure/transmitter/clf_net{ @@ -176,17 +147,12 @@ phone_id = "Armoury"; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/lv624/lazarus/crashed_ship) "fX" = ( /obj/item/stool, /obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "gg" = ( /obj/structure/surface/rack, @@ -197,10 +163,7 @@ /obj/item/device/radio{ pixel_x = -3 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/lv624/lazarus/crashed_ship) "gj" = ( /obj/item/stack/sheet/metal{ @@ -212,10 +175,7 @@ dir = 8; icon_state = "metal_1" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/crashed_ship) "gn" = ( /obj/structure/girder/displaced, @@ -227,9 +187,7 @@ /area/lv624/ground/caves/south_west_caves) "gv" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/ground/caves/south_west_caves) "gD" = ( /obj/structure/surface/table/reinforced/prison, @@ -255,15 +213,10 @@ /obj/item/ammo_magazine/rifle/m16{ pixel_x = -4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "gF" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner, /area/lv624/lazarus/crashed_ship) "gQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -273,17 +226,11 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/lv624/lazarus/crashed_ship) "gW" = ( /obj/structure/girder/displaced, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "gX" = ( /obj/effect/decal/cleanable/blood/oil, @@ -308,16 +255,10 @@ /obj/item/ammo_magazine/pistol/heavy, /obj/item/clothing/accessory/storage/webbing, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/lv624/lazarus/crashed_ship) "id" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/lazarus/crashed_ship) "iq" = ( /turf/closed/shuttle/ert{ @@ -326,10 +267,7 @@ /area/lv624/lazarus/crashed_ship) "iF" = ( /obj/effect/landmark/corpsespawner/wysec, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "jb" = ( /obj/structure/largecrate/random/barrel/red, @@ -343,16 +281,11 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "jr" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/lv624/lazarus/crashed_ship) "jx" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/lazarus/crashed_ship) "jz" = ( /obj/structure/barricade/sandbags/wired{ @@ -375,19 +308,13 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "jO" = ( /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/crashed_ship) "jR" = ( /obj/item/stack/rods, @@ -406,10 +333,7 @@ "kp" = ( /obj/item/stack/rods, /obj/structure/girder, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "kw" = ( /obj/item/ammo_casing/shell{ @@ -418,18 +342,14 @@ /obj/structure/barricade/metal/wired{ icon_state = "metal_1" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "ky" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; name = "\improper Bridge" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "kO" = ( /obj/structure/bed, @@ -439,16 +359,11 @@ pixel_y = 20 }, /obj/item/toy/plush/farwa, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/lv624/lazarus/crashed_ship) "kY" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) "lf" = ( /obj/structure/barricade/sandbags/wired{ @@ -460,10 +375,7 @@ "lh" = ( /obj/item/stack/rods, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "lj" = ( /obj/item/tool/shovel/spade, @@ -479,9 +391,7 @@ pixel_x = -2; pixel_y = 3 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "ln" = ( /obj/structure/bed/chair, @@ -497,15 +407,11 @@ /area/lv624/lazarus/crashed_ship) "lD" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "lU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "mq" = ( /obj/structure/largecrate/supply/supplies/water, @@ -523,14 +429,10 @@ /area/lv624/ground/caves/south_west_caves) "mK" = ( /obj/structure/girder/displaced, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/ground/caves/south_west_caves) "mS" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "nj" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, @@ -546,10 +448,7 @@ /obj/item/ammo_magazine/shotgun/slugs, /obj/item/ammo_magazine/shotgun/slugs, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/lv624/lazarus/crashed_ship) "nO" = ( /obj/item/tool/wet_sign, @@ -560,10 +459,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/lv624/lazarus/crashed_ship) "ok" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, @@ -571,34 +467,25 @@ /area/lv624/lazarus/crashed_ship) "ou" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "oI" = ( /obj/item/stack/rods, /obj/effect/landmark/corpsespawner/clf, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "oO" = ( /obj/structure/barricade/plasteel/wired{ icon_state = "plasteel_3" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "oW" = ( /obj/structure/barricade/metal/wired{ dir = 4; icon_state = "metal_1" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "pq" = ( /turf/closed/shuttle/ert{ @@ -610,25 +497,17 @@ /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) "pS" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/crashed_ship) "pY" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/ground/caves/south_west_caves) "qu" = ( /obj/item/ammo_casing/shell{ icon_state = "casing_2_1" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "qT" = ( /obj/structure/barricade/sandbags/wired{ @@ -642,9 +521,7 @@ "qU" = ( /obj/item/ammo_magazine/smg/fp9000, /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "rf" = ( /obj/item/ammo_casing/shell{ @@ -675,10 +552,7 @@ /obj/item/device/flashlight/lamp{ pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/lv624/lazarus/crashed_ship) "sO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -716,10 +590,7 @@ /area/lv624/lazarus/crashed_ship) "ug" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "uq" = ( /obj/item/tool/warning_cone, @@ -727,16 +598,12 @@ /area/lv624/ground/caves/south_west_caves) "ur" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/ground/caves/south_west_caves) "uz" = ( /obj/structure/girder/displaced, /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/ground/caves/south_west_caves) "uX" = ( /obj/structure/bed/chair{ @@ -746,19 +613,14 @@ /area/lv624/lazarus/crashed_ship) "vb" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/lv624/lazarus/crashed_ship) "vf" = ( /obj/structure/machinery/door/poddoor/almayer{ id = "clf_umbilical_1"; name = "\improper Umbillical Airlock" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "vo" = ( /turf/closed/shuttle/ert{ @@ -768,26 +630,18 @@ "vp" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "vw" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) "vO" = ( /obj/structure/girder/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "wh" = ( /obj/item/weapon/gun/rifle/sniper/svd, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "wo" = ( /obj/structure/machinery/floodlight, @@ -795,10 +649,7 @@ /area/lv624/lazarus/crashed_ship) "wr" = ( /obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "wx" = ( /obj/effect/decal/cleanable/blood/oil, @@ -813,29 +664,19 @@ /area/lv624/lazarus/crashed_ship) "wR" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "wV" = ( /obj/structure/machinery/power/smes/buildable/charged, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/lv624/lazarus/crashed_ship) "xh" = ( /obj/structure/girder, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "xj" = ( /obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "xk" = ( /obj/item/ammo_casing/shell{ @@ -845,9 +686,7 @@ dir = 8; faction_group = list("CLF") }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "xl" = ( /obj/structure/largecrate/random/barrel/yellow, @@ -876,22 +715,14 @@ id = "clf_umbilical_1"; name = "\improper Umbillical Airlock" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "xI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/lv624/lazarus/crashed_ship) "xK" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/lv624/lazarus/crashed_ship) "xX" = ( /obj/structure/machinery/light/small{ @@ -903,10 +734,7 @@ "yK" = ( /obj/item/stack/rods, /obj/item/ammo_magazine/sniper/svd, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "yT" = ( /obj/structure/barricade/metal/wired{ @@ -915,9 +743,7 @@ /obj/structure/machinery/m56d_hmg{ rounds = 700 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "yX" = ( /obj/structure/surface/table/reinforced/prison, @@ -929,9 +755,7 @@ /area/lv624/lazarus/crashed_ship) "zb" = ( /obj/structure/girder/reinforced, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "zl" = ( /obj/structure/barricade/metal/wired{ @@ -947,9 +771,7 @@ /obj/structure/barricade/metal/wired{ icon_state = "metal_1" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "zD" = ( /obj/structure/sink{ @@ -959,16 +781,12 @@ pixel_x = 2; pixel_y = -4 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) "zJ" = ( /obj/item/stack/rods, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Aa" = ( /obj/effect/vehicle_spawner/van/fixed{ @@ -976,10 +794,7 @@ desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; name = "CLF Van" }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/crashed_ship) "Ab" = ( /turf/open/gm/dirt, @@ -999,16 +814,11 @@ /obj/item/ammo_magazine/pistol/heavy, /obj/item/ammo_magazine/pistol/heavy, /obj/item/ammo_magazine/pistol/heavy, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/lv624/lazarus/crashed_ship) "AP" = ( /obj/structure/cargo_container/arious/right, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "AQ" = ( /obj/structure/machinery/door_control/brbutton{ @@ -1026,10 +836,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "Bc" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Bg" = ( /obj/structure/surface/table/woodentable, @@ -1053,10 +860,7 @@ /area/lv624/ground/caves/south_west_caves) "BY" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Cq" = ( /obj/item/circuitboard/apc{ @@ -1078,9 +882,7 @@ "Cw" = ( /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/crashed_ship) "CO" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -1090,10 +892,7 @@ /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) "CZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/lv624/lazarus/crashed_ship) "Dm" = ( /turf/closed/shuttle/ert{ @@ -1109,38 +908,26 @@ /obj/structure/machinery/optable, /obj/item/tank/anesthetic, /obj/item/clothing/mask/breath/medical, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/lv624/lazarus/crashed_ship) "Dv" = ( /obj/structure/bed, /obj/item/bedsheet/yellow, /obj/item/toy/katana, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/lv624/lazarus/crashed_ship) "Dw" = ( /obj/structure/bed, /obj/item/bedsheet/rd, /obj/effect/landmark/corpsespawner/colonist, /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/lv624/lazarus/crashed_ship) "DO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/regular, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "DS" = ( /obj/structure/surface/table/woodentable, @@ -1162,9 +949,7 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/lv624/lazarus/crashed_ship) "DZ" = ( /turf/closed/shuttle/ert{ @@ -1178,19 +963,13 @@ /obj/structure/barricade/metal/wired{ icon_state = "metal_1" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/crashed_ship) "Em" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "Ev" = ( /turf/closed/shuttle/ert{ @@ -1205,9 +984,7 @@ /obj/structure/machinery/m56d_hmg{ rounds = 700 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "EB" = ( /obj/structure/surface/table/reinforced/prison, @@ -1217,29 +994,21 @@ /obj/item/attachable/attached_gun/flamer, /obj/item/attachable/bayonet, /obj/item/attachable/bayonet, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/lv624/lazarus/crashed_ship) "EO" = ( /obj/structure/machinery/light/small{ dir = 8; pixel_x = -10 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/lv624/lazarus/crashed_ship) "Gf" = ( /obj/structure/barricade/metal/wired{ dir = 8; icon_state = "metal_1" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Gm" = ( /obj/structure/surface/rack, @@ -1252,10 +1021,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "GQ" = ( /obj/effect/landmark/corpsespawner/engineer, @@ -1267,24 +1033,17 @@ stat = 1 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Hg" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Hj" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) "HN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/lv624/lazarus/crashed_ship) "HR" = ( /obj/structure/surface/table/reinforced/prison, @@ -1302,22 +1061,13 @@ pixel_y = 11 }, /obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/lv624/lazarus/crashed_ship) "Ik" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/lv624/lazarus/crashed_ship) "IG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/north, /area/lv624/lazarus/crashed_ship) "IH" = ( /obj/item/ammo_casing/shell{ @@ -1333,10 +1083,7 @@ pixel_y = 4 }, /obj/item/restraint/handcuffs, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/lv624/lazarus/crashed_ship) "JC" = ( /obj/item/stack/rods, @@ -1348,9 +1095,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "JO" = ( /obj/structure/machinery/light/small{ @@ -1358,10 +1103,7 @@ pixel_y = 20 }, /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "JW" = ( /obj/item/toy/beach_ball{ @@ -1396,28 +1138,19 @@ /obj/item/storage/backpack/general_belt{ pixel_y = 3 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "LD" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/crashed_ship) "LG" = ( /obj/structure/girder/reinforced, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "LK" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "LV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1442,36 +1175,24 @@ /area/lv624/lazarus/crashed_ship) "Mw" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northeast, /area/lv624/lazarus/crashed_ship) "Mz" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "MO" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/lv624/lazarus/crashed_ship) "Nk" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/lv624/lazarus/crashed_ship) "Ns" = ( /turf/closed/shuttle/ert{ @@ -1486,9 +1207,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) "NC" = ( /obj/structure/machinery/light/small{ @@ -1496,10 +1215,7 @@ pixel_x = 3; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/lv624/lazarus/crashed_ship) "NI" = ( /obj/structure/surface/table/reinforced/prison, @@ -1524,18 +1240,12 @@ pixel_x = 18; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/north, /area/lv624/lazarus/crashed_ship) "Oc" = ( /obj/effect/landmark/corpsespawner/colonist/random, /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/lv624/lazarus/crashed_ship) "Op" = ( /obj/structure/surface/rack, @@ -1543,17 +1253,11 @@ pixel_y = 7 }, /obj/item/storage/backpack/general_belt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "Ot" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/east, /area/lv624/lazarus/crashed_ship) "OB" = ( /obj/item/ammo_casing/shell{ @@ -1563,19 +1267,14 @@ dir = 4; faction_group = list("CLF") }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "OL" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) "OS" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/lv624/lazarus/crashed_ship) "OU" = ( /obj/structure/machinery/floodlight, @@ -1590,35 +1289,25 @@ phone_id = "Engineering" }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/lv624/lazarus/crashed_ship) "Pu" = ( /obj/effect/landmark/corpsespawner/clf, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Px" = ( /obj/structure/machinery/autolathe, /obj/structure/machinery/power/apc{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/lv624/lazarus/crashed_ship) "PA" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /obj/item/storage/firstaid/regular/empty, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/lv624/lazarus/crashed_ship) "PR" = ( /obj/structure/surface/table/reinforced/prison, @@ -1628,24 +1317,15 @@ pixel_y = 4 }, /obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/lv624/lazarus/crashed_ship) "PY" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "Qc" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/lv624/lazarus/crashed_ship) "Qd" = ( /turf/closed/shuttle/ert{ @@ -1653,9 +1333,7 @@ }, /area/lv624/lazarus/crashed_ship) "Qf" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Qj" = ( /obj/structure/machinery/body_scanconsole, @@ -1665,10 +1343,7 @@ phone_id = "Medical Bay"; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "Qp" = ( /obj/item/stack/rods, @@ -1678,15 +1353,11 @@ /obj/structure/barricade/metal/wired{ icon_state = "metal_1" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "Qu" = ( /obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "QE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -1696,16 +1367,10 @@ /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) "QQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/lv624/lazarus/crashed_ship) "Ro" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/ground/caves/south_west_caves) "RS" = ( /turf/open/floor/almayer, @@ -1726,9 +1391,7 @@ /obj/item/attachable/bayonet, /obj/item/attachable/bayonet, /obj/item/attachable/attached_gun/flamer, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/lv624/lazarus/crashed_ship) "Sx" = ( /obj/structure/largecrate/random/barrel/blue, @@ -1744,19 +1407,14 @@ /area/lv624/lazarus/crashed_ship) "SW" = ( /obj/item/weapon/gun/smg/fp9000, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Tx" = ( /obj/structure/largecrate/supply/supplies/mre{ desc = "A supply crate containing fifty reposessed USCM MRE packets."; name = "\improper CLF Supply MRE crate (x50)" }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/lazarus/crashed_ship) "Tz" = ( /turf/closed/shuttle/ert{ @@ -1768,9 +1426,7 @@ dir = 8; icon_state = "plasteel_closed_1" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "TK" = ( /obj/item/stack/rods, @@ -1800,10 +1456,7 @@ /obj/item/weapon/gun/rifle/mar40{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/lv624/lazarus/crashed_ship) "TQ" = ( /turf/closed/shuttle/ert{ @@ -1811,10 +1464,7 @@ }, /area/lv624/lazarus/crashed_ship) "Ud" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/lv624/lazarus/crashed_ship) "Up" = ( /obj/structure/surface/table/almayer, @@ -1822,15 +1472,11 @@ /obj/item/storage/bag/trash, /obj/item/tool/screwdriver, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Uv" = ( /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "Uw" = ( /obj/structure/largecrate/random/barrel/blue, @@ -1840,14 +1486,10 @@ /obj/structure/barricade/plasteel/wired{ icon_state = "plasteel_2" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "UV" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/ground/caves/south_west_caves) "Vb" = ( /obj/item/stack/rods, @@ -1857,10 +1499,7 @@ /area/lv624/lazarus/crashed_ship) "Ve" = ( /obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/ground/caves/south_west_caves) "Vh" = ( /obj/structure/surface/rack, @@ -1871,17 +1510,12 @@ /obj/item/device/radio{ pixel_x = 3 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/lv624/lazarus/crashed_ship) "Vj" = ( /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/crashed_ship) "Vs" = ( /obj/item/ammo_casing/shell{ @@ -1917,10 +1551,7 @@ pixel_x = -3; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/lv624/lazarus/crashed_ship) "VX" = ( /turf/closed/shuttle/ert{ @@ -1929,9 +1560,7 @@ /area/lv624/lazarus/crashed_ship) "Wa" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/lv624/lazarus/crashed_ship) "Wg" = ( /obj/structure/surface/table/almayer, @@ -1947,9 +1576,7 @@ /area/lv624/lazarus/crashed_ship) "Wt" = ( /obj/structure/largecrate/supply/ammo/m56d, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "WH" = ( /turf/closed/shuttle/ert{ @@ -1958,15 +1585,10 @@ /area/lv624/lazarus/crashed_ship) "WJ" = ( /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/crashed_ship) "Xm" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/ground/caves/south_west_caves) "Xq" = ( /turf/closed/shuttle/ert{ @@ -1975,20 +1597,14 @@ /area/lv624/lazarus/crashed_ship) "Xx" = ( /obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "XG" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/crashed_ship) "XM" = ( /obj/structure/transmitter/clf_net{ @@ -1996,10 +1612,7 @@ phone_id = "Cargo Bay"; pixel_y = 32 }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "XX" = ( /turf/closed/shuttle/ert{ @@ -2008,26 +1621,19 @@ /area/lv624/lazarus/crashed_ship) "Ya" = ( /obj/item/ammo_magazine/sniper/svd, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "Yh" = ( /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "Yj" = ( /turf/template_noop, /area/template_noop) "Ys" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/crashed_ship) "Yx" = ( /obj/structure/reagent_dispensers/fueltank, @@ -2039,9 +1645,7 @@ department = "CLF - Cell 42" }, /obj/item/paper/prison_station/pirate_note/clfship, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/lv624/lazarus/crashed_ship) "YF" = ( /turf/closed/shuttle/ert{ @@ -2050,10 +1654,7 @@ }, /area/lv624/lazarus/crashed_ship) "YX" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/lazarus/crashed_ship) "Zu" = ( /obj/structure/surface/rack, @@ -2063,10 +1664,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "ZN" = ( /obj/item/stack/sheet/metal{ @@ -2074,10 +1672,7 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/lazarus/crashed_ship) "ZS" = ( /turf/closed/shuttle/ert{ @@ -2085,9 +1680,7 @@ }, /area/lv624/lazarus/crashed_ship) "ZV" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner, /area/lv624/lazarus/crashed_ship) (1,1,1) = {" diff --git a/maps/map_files/LV624/standalone/corporatedome.dmm b/maps/map_files/LV624/standalone/corporatedome.dmm index 9c3eddbac441..e4fb2114f273 100644 --- a/maps/map_files/LV624/standalone/corporatedome.dmm +++ b/maps/map_files/LV624/standalone/corporatedome.dmm @@ -4,25 +4,18 @@ name = "\improper Corporation Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "bm" = ( /obj/structure/surface/rack, /obj/item/spacecash/c1000/counterfeit, /obj/item/spacecash/c1000/counterfeit, /obj/item/spacecash/c1000/counterfeit, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/corporate_dome) "bA" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "bD" = ( /obj/effect/decal/cleanable/blood/drip, @@ -31,41 +24,30 @@ "bE" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "cm" = ( /obj/structure/largecrate/random/case/small, /obj/structure/barricade/sandbags{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "cn" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "cA" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "cB" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "cR" = ( /obj/structure/flora/jungle/vines/light_2, @@ -77,10 +59,7 @@ pixel_y = 20 }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/landing_zones/lz2) "dq" = ( /obj/structure/surface/table/woodentable/fancy, @@ -92,10 +71,7 @@ }, /obj/item/folder/red, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "dH" = ( /obj/structure/machinery/blackbox_recorder, @@ -114,22 +90,15 @@ "dO" = ( /obj/item/weapon/pole/fancy_cane, /obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "dY" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/lazarus/landing_zones/lz2) "ev" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "eF" = ( /obj/structure/barricade/deployable{ @@ -137,17 +106,12 @@ health = 245; icon_state = "folding_1" }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "fm" = ( /obj/effect/vehicle_spawner/van/decrepit, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "fq" = ( /obj/effect/acid_hole, @@ -155,23 +119,16 @@ /area/lv624/lazarus/corporate_dome) "ft" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "fF" = ( /obj/item/ammo_casing/bullet{ icon_state = "casing_9_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "fH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/corporate_dome) "gx" = ( /obj/structure/window/framed/colony/reinforced, @@ -187,15 +144,10 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "ha" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southwest, /area/lv624/lazarus/corporate_dome) "hc" = ( /obj/structure/window/reinforced{ @@ -214,32 +166,22 @@ /obj/item/clothing/under/marine/veteran/pmc/corporate{ pixel_y = -2 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "he" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "hf" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "is" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "iF" = ( /obj/structure/closet/crate/secure/weyland, @@ -249,44 +191,29 @@ /obj/item/reagent_container/food/snacks/packaged_burrito, /obj/item/reagent_container/food/snacks/packaged_burger, /obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/west, /area/lv624/lazarus/corporate_dome) "iT" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southwest, /area/lv624/lazarus/corporate_dome) "jH" = ( /obj/structure/bookcase/manuals/medical, /obj/item/book/manual/security_space_law, /obj/item/book/manual/medical_diagnostics_manual, /obj/item/book/manual/research_and_development, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/corporate_dome) "jJ" = ( /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/west, /area/lv624/lazarus/corporate_dome) "kl" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/corporate_dome) "kU" = ( /obj/structure/machinery/door_control{ @@ -296,18 +223,13 @@ }, /obj/effect/landmark/corpsespawner/colonist, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/lazarus/landing_zones/lz2) "ln" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "lG" = ( /obj/item/storage/firstaid/adv/empty, @@ -317,48 +239,33 @@ phone_id = "Corporate Office"; pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) "lX" = ( /obj/structure/window_frame/colony/reinforced, /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/corporate_dome) "mg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "mi" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/corporate_dome) "mp" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/rods, /obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "ms" = ( -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/corporate_dome) "mw" = ( /obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "mK" = ( /obj/effect/spawner/gibspawner/human, @@ -368,9 +275,7 @@ /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, /obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "oj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -378,9 +283,7 @@ name = "\improper Corporation Office"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "oq" = ( /obj/structure/window_frame/colony/reinforced, @@ -406,17 +309,12 @@ /obj/item/clothing/head/manager{ pixel_y = 13 }, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/corporate_dome) "pR" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) "qn" = ( /obj/structure/machinery/light/small{ @@ -424,9 +322,7 @@ }, /obj/structure/closet/bodybag, /obj/effect/landmark/corpsespawner/clf, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "qH" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -435,9 +331,7 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "qI" = ( /obj/structure/surface/table/reinforced/prison, @@ -449,19 +343,14 @@ pixel_x = -7; pixel_y = 15 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "qJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Storage Room" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "qM" = ( /obj/effect/decal/cleanable/blood/oil/streak, @@ -470,9 +359,7 @@ name = "Garage Shutters"; pixel_x = -28 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "sc" = ( /obj/effect/decal/cleanable/blood, @@ -480,29 +367,20 @@ dir = 1 }, /obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl, -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/north, /area/lv624/lazarus/corporate_dome) "sm" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "sH" = ( /obj/structure/window_frame/colony/reinforced, /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/corporate_dome) "sX" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2, /area/lv624/lazarus/corporate_dome) "vf" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -510,9 +388,7 @@ name = "\improper Corporate Liaison"; locked = 1 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "vC" = ( /obj/structure/prop/server_equipment/yutani_server/off, @@ -520,9 +396,7 @@ /area/lv624/lazarus/corporate_dome) "vW" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/lv624/lazarus/corporate_dome) "wy" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -530,17 +404,12 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "wW" = ( /obj/structure/closet/bodybag, /obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "xk" = ( /obj/structure/machinery/light{ @@ -552,28 +421,18 @@ pixel_y = 16 }, /obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/corporate_dome) "xG" = ( /obj/structure/machinery/photocopier, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "yc" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/lazarus/landing_zones/lz2) "yJ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2, /area/lv624/lazarus/corporate_dome) "zm" = ( /obj/structure/safe{ @@ -583,10 +442,7 @@ dir = 1 }, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) "zs" = ( /obj/structure/window_frame/colony/reinforced, @@ -604,16 +460,11 @@ pixel_x = -9; pixel_y = 7 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "zx" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "zz" = ( /obj/structure/window_frame/colony/reinforced, @@ -634,20 +485,14 @@ /area/lv624/lazarus/corporate_dome) "AG" = ( /obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "AT" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Bh" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "BL" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -655,23 +500,17 @@ id = "garage_lv"; name = "\improper Garage" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "BZ" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_6_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Ct" = ( /obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/corporate_dome) "CF" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -679,16 +518,11 @@ name = "\improper Corporate Liaison" }, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Df" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/west, /area/lv624/lazarus/corporate_dome) "Dn" = ( /obj/item/ammo_magazine/smg/mp5, @@ -703,10 +537,7 @@ /obj/structure/closet/crate/secure/weyland, /obj/item/weapon/gun/smg/mp5, /obj/item/weapon/gun/smg/mp5, -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/corporate_dome) "Dp" = ( /obj/effect/decal/cleanable/blood, @@ -717,9 +548,7 @@ pixel_x = 5; pixel_y = 15 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "DU" = ( /obj/structure/surface/table/reinforced/prison, @@ -727,20 +556,14 @@ pixel_y = 6 }, /obj/item/storage/toolbox/electrical, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "Ez" = ( /obj/structure/machinery/light_construct{ dir = 4 }, /obj/item/stack/cable_coil, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) "EM" = ( /obj/structure/flora/jungle/vines/light_3, @@ -753,22 +576,14 @@ pixel_x = 5; pixel_y = 6 }, -/turf/open/floor{ - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner, /area/lv624/lazarus/corporate_dome) "Fk" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/lazarus/landing_zones/lz2) "Fl" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, +/turf/open/floor/whitebluecorner/north, /area/lv624/lazarus/corporate_dome) "Fu" = ( /obj/structure/surface/table/reinforced/prison, @@ -783,18 +598,12 @@ "FP" = ( /obj/item/shard, /obj/item/stack/sheet/wood, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) "FZ" = ( /obj/structure/machinery/faxmachine/corporate/liaison, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "Gi" = ( /obj/structure/prop/server_equipment/yutani_server/broken, @@ -804,54 +613,37 @@ /obj/item/ammo_casing/bullet{ icon_state = "cartridge_10_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Gt" = ( /obj/structure/machinery/light_construct/small{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg1, /area/lv624/lazarus/corporate_dome) "GM" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/corporate_dome) "GV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/corporate_dome) "Hn" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_9_1" }, /obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Ho" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner, /area/lv624/lazarus/corporate_dome) "Hv" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigar, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northwest, /area/lv624/lazarus/corporate_dome) "HK" = ( /obj/structure/machinery/power/apc{ @@ -864,10 +656,7 @@ }, /obj/item/tool/screwdriver, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "Ii" = ( /turf/open/gm/dirt, @@ -878,9 +667,7 @@ /obj/item/stack/rods{ amount = 15 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Jg" = ( /obj/structure/machinery/light, @@ -892,34 +679,25 @@ name = "\improper Corporation Dome"; req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "JL" = ( /obj/effect/decal/cleanable/blood, /obj/item/prop/colony/usedbandage{ dir = 10 }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow, /area/lv624/lazarus/corporate_dome) "Kv" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) "KC" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/corporate_dome) "KG" = ( /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Le" = ( /obj/effect/acid_hole{ @@ -932,9 +710,7 @@ /obj/effect/decal/cleanable/blood/oil/streak, /obj/item/shard, /obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "Li" = ( /obj/structure/window_frame/colony/reinforced, @@ -946,30 +722,20 @@ /obj/structure/barricade/plasteel/metal{ health = 250 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "LZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/corporate_dome) "Me" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/landing_zones/lz2) "Ml" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; pixel_y = 30 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "OH" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -980,9 +746,7 @@ /obj/item/stack/sheet/plasteel/med_small_stack, /obj/item/stack/sandbags/small_stack, /obj/item/device/motiondetector/hacked/pmc, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "Pa" = ( /obj/structure/closet/toolcloset, @@ -992,10 +756,7 @@ /obj/item/ammo_casing/bullet{ icon_state = "casing_9_1" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/corporate_dome) "Qi" = ( /obj/structure/flora/jungle/vines/light_1, @@ -1022,26 +783,19 @@ /obj/item/clothing/under/marine/veteran/pmc{ pixel_y = -2 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "RD" = ( /obj/item/ammo_casing/bullet{ icon_state = "casing_1_1" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "RF" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "RN" = ( /obj/structure/machinery/light{ @@ -1049,16 +803,11 @@ }, /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/northwest, /area/lv624/lazarus/corporate_dome) "Sb" = ( /obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) "SO" = ( /obj/structure/flora/jungle/vines/heavy, @@ -1072,42 +821,28 @@ pixel_y = 8 }, /obj/item/frame/table/wood/fancy, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/northeast, /area/lv624/lazarus/corporate_dome) "TF" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/largecrate/supply/medicine, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) "Uo" = ( /obj/item/shard, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) "Uz" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) "UF" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "Vj" = ( /obj/structure/surface/table/reinforced/prison, @@ -1116,31 +851,